mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
27 lines
1.1 KiB
Go
27 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/grafana/grafana-plugin-sdk-go/backend"
|
|
"github.com/grafana/grafana-plugin-sdk-go/backend/datasource"
|
|
"github.com/grafana/grafana-plugin-sdk-go/backend/log"
|
|
"github.com/grafana/grafana/pkg/tsdb/mysql"
|
|
)
|
|
|
|
func main() {
|
|
// Start listening to requests sent from Grafana. This call is blocking so
|
|
// it won't finish until Grafana shuts down the process or the plugin choose
|
|
// to exit by itself using os.Exit. Manage automatically manages life cycle
|
|
// of datasource instances. It accepts datasource instance factory as first
|
|
// argument. This factory will be automatically called on incoming request
|
|
// from Grafana to create different instances of SampleDatasource (per datasource
|
|
// ID). When datasource configuration changed Dispose method will be called and
|
|
// new datasource instance created using NewSampleDatasource factory.
|
|
logger := backend.NewLoggerWith("logger", "tsdb.mysql")
|
|
if err := datasource.Manage("mysql", mysql.NewInstanceSettings(logger), datasource.ManageOpts{}); err != nil {
|
|
log.DefaultLogger.Error(err.Error())
|
|
os.Exit(1)
|
|
}
|
|
}
|