コード例 #1
0
ファイル: helpers_test.go プロジェクト: influxdata/kapacitor
func (m *MockInfluxDBService) NewNamedClient(name string) (influxdb.Client, error) {
	return influxdb.NewHTTPClient(influxdb.Config{
		URLs: []string{m.ts.URL},
	})
}
コード例 #2
0
ファイル: helpers_test.go プロジェクト: wutaizeng/kapacitor
func (m *MockInfluxDBService) NewDefaultClient() (influxdb.Client, error) {
	return influxdb.NewHTTPClient(influxdb.HTTPConfig{
		URL: m.ts.URL,
	})
}