Remove metric.Point from metric interface

This commit is contained in:
Cameron Sparr
2017-02-03 16:41:45 +00:00
parent b1945c0493
commit 694955c87b
4 changed files with 0 additions and 36 deletions

View File

@@ -2,9 +2,6 @@ package telegraf
import (
"time"
// TODO remove
"github.com/influxdata/influxdb/client/v2"
)
// ValueType is an enumeration of metric types that represent a simple value.
@@ -62,8 +59,4 @@ type Metric interface {
// aggregator things:
SetAggregate(bool)
IsAggregate() bool
// Point returns a influxdb client.Point object
// TODO remove this function
Point() *client.Point
}