This pull request migrates testdata to coreplugin streaming capabilities, this is mostly a working concept of streaming plugins at the moment, the work will continue in the following pull requests.
11 lines
261 B
Go
11 lines
261 B
Go
package live
|
|
|
|
const (
|
|
// ScopeGrafana contains builtin features of Grafana Core.
|
|
ScopeGrafana = "grafana"
|
|
// ScopePlugin passes control to a plugin.
|
|
ScopePlugin = "plugin"
|
|
// ScopeDatasource passes control to a datasource plugin.
|
|
ScopeDatasource = "ds"
|
|
)
|