This is not possible with InfluxDB - see Ticket 3210 .
You can overwrite a point with some other values by inserting a point with the same timestamp and set of tags into the dimension:
A point is uniquely identified by the dimension name, tag set, and time stamp. If you send a new point with the same dimensions, a set of tags and a timestamp as an existing point, the set of fields becomes the union of the old set of fields and a new set of fields, where any links go into a new set of fields. This is the intended behavior.
Since you should not insert zeros , you probably want to repeat the values from the previous paragraphs.
You might consider inserting a point with the same timestamp and setting a unique value for one of the tags, and then doing the deletion for that tag:
DELETE FROM measurement WHERE some_existing_tag='deleteme'
This will not work though. You will get two points with the same time stamp, and one of them will have a deleteme tag.
source share