func (m *MockInfluxDBService) NewNamedClient(name string) (influxdb.Client, error) { return influxdb.NewHTTPClient(influxdb.Config{ URLs: []string{m.ts.URL}, }) }
func (m *MockInfluxDBService) NewDefaultClient() (influxdb.Client, error) { return influxdb.NewHTTPClient(influxdb.HTTPConfig{ URL: m.ts.URL, }) }