Skip to content
This repository has been archived by the owner on Oct 20, 2024. It is now read-only.

Use correct func name in comment. #9

Merged
merged 1 commit into from
Aug 17, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion influxdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func InfluxDB(r metrics.Registry, d time.Duration, url, database, username, pass
InfluxDBWithTags(r, d, url, database, username, password, nil)
}

// InfluxDB starts a InfluxDB reporter which will post the metrics from the given registry at each d interval with the specified tags
// InfluxDBWithTags starts a InfluxDB reporter which will post the metrics from the given registry at each d interval with the specified tags
func InfluxDBWithTags(r metrics.Registry, d time.Duration, url, database, username, password string, tags map[string]string) {
u, err := uurl.Parse(url)
if err != nil {
Expand Down