예제 #1
0
파일: graphite.go 프로젝트: wk66/grafana
func init() {
	glog = log.New("tsdb.graphite")
	tsdb.RegisterExecutor("graphite", NewGraphiteExecutor)

	HttpClient = tsdb.GetDefaultClient()
}
예제 #2
0
func init() {
	glog = log.New("tsdb.influxdb")
	tsdb.RegisterExecutor("influxdb", NewInfluxDBExecutor)

	HttpClient = tsdb.GetDefaultClient()
}
예제 #3
0
파일: opentsdb.go 프로젝트: wk66/grafana
func init() {
	plog = log.New("tsdb.opentsdb")
	tsdb.RegisterExecutor("opentsdb", NewOpenTsdbExecutor)

	HttpClient = tsdb.GetDefaultClient()
}