From 30de3704c0a2d24505db13e0200b5d9775e5f70c Mon Sep 17 00:00:00 2001 From: Ben Johnson Date: Tue, 13 Jan 2015 07:57:13 -0700 Subject: [PATCH] Fix graphite.SeriesWriter signature. --- graphite/graphite.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphite/graphite.go b/graphite/graphite.go index b078b2f1ea..b8bff7086c 100644 --- a/graphite/graphite.go +++ b/graphite/graphite.go @@ -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.