Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
f0f6d0e9
Commit
f0f6d0e9
authored
Jun 29, 2018
by
bergquist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
registry: adds comments to interfaces
parent
cb706bd0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletions
+12
-1
pkg/registry/registry.go
+12
-1
No files found.
pkg/registry/registry.go
View file @
f0f6d0e9
...
...
@@ -34,12 +34,23 @@ func GetServices() []*Descriptor {
return
services
}
// Service interface is the lowest common shape that services
// are expected to forfill to be started within Grafana.
type
Service
interface
{
// Init is called by Grafana main process which gives the service
// the possibility do some initial work before its started. Things
// like adding routes, bus handlers should be done in the Init function
Init
()
error
}
// Useful for alerting service
// CanBeDisabled allows the services to decide if it should
// be started or not by itself. This is useful for services
// that might not always be started, ex alerting.
// This will be called after `Init()`.
type
CanBeDisabled
interface
{
// IsDisabled should return a bool saying if it can be started or not.
IsDisabled
()
bool
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment