feat: port influx write from influxdb (#47)

This commit is contained in:
Daniel Moran
2021-04-26 12:32:54 -04:00
committed by GitHub
parent bd97d2c7f3
commit 0e1db1e782
12 changed files with 1417 additions and 1 deletions

View File

@ -35,3 +35,11 @@ func (o *HealthCheck) Error() string {
}
return fmt.Sprintf("health check failed: %s", message)
}
func (o *LineProtocolError) Error() string {
return o.Message
}
func (o *LineProtocolLengthError) Error() string {
return o.Message
}