mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 10:50:37 -06:00
26 lines
597 B
Go
26 lines
597 B
Go
package plugins
|
|
|
|
import "encoding/json"
|
|
|
|
type DataSourcePlugin struct {
|
|
FrontendPluginBase
|
|
DefaultMatchFormat string `json:"defaultMatchFormat"`
|
|
Annotations bool `json:"annotations"`
|
|
Metrics bool `json:"metrics"`
|
|
BuiltIn bool `json:"builtIn"`
|
|
Mixed bool `json:"mixed"`
|
|
App string `json:"app"`
|
|
}
|
|
|
|
func (p *DataSourcePlugin) Load(decoder *json.Decoder, pluginDir string) error {
|
|
if err := decoder.Decode(&p); err != nil {
|
|
return err
|
|
}
|
|
|
|
p.PluginDir = pluginDir
|
|
p.initFrontendPlugin()
|
|
DataSources[p.Id] = p
|
|
|
|
return nil
|
|
}
|