Changing AddValues to AddFields and temp disabling adding w time
Currently adding with time is broken, because InfluxDB does not support using precision for timestamp truncation both with and without timestamps. This will be re-enabled once we fix InfluxDB to use the precision argument for truncation in all cases, and a "unit" argument in the line-protocol for adding points with non-nanosecond stamps Fixes #175
This commit is contained in:
@@ -34,8 +34,8 @@ func (a *Accumulator) Add(measurement string, value interface{}, tags map[string
|
||||
)
|
||||
}
|
||||
|
||||
// AddValuesWithTime adds a measurement point with a specified timestamp.
|
||||
func (a *Accumulator) AddValuesWithTime(
|
||||
// AddFieldsWithTime adds a measurement point with a specified timestamp.
|
||||
func (a *Accumulator) AddFieldsWithTime(
|
||||
measurement string,
|
||||
values map[string]interface{},
|
||||
tags map[string]string,
|
||||
|
||||
Reference in New Issue
Block a user