Fix graphite.SeriesWriter signature.

pull/1317/head
Ben Johnson 2015-01-13 07:57:13 -07:00
parent d651deb0ab
commit 30de3704c0
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ var (
// SeriesWriter defines the interface for the destination of the data.
type SeriesWriter interface {
WriteSeries(database, retentionPolicy, name string, tags map[string]string, timestamp time.Time, values map[string]interface{}) error
WriteSeries(database, retentionPolicy, name string, tags map[string]string, timestamp time.Time, values map[string]interface{}) (uint64, error)
}
// Metric represents a metric as processed by the Graphite parser.