Questions tagged [influxdb-go]
6 questions
2
votes
0 answers
Is there any query builder for InfluxDB in Golang?
I am new to InfluxDB and trying to do query in my local InfluxDB using Go client.
The parameterised version of this doesn't seem to work as intended and they mention it is only for the "cloud". Is there any way to have a proper query builder for Go…

Satyajit Das
- 2,740
- 5
- 16
- 30
1
vote
0 answers
How to parse influx query in Go?
I am trying to convert influx query result into a simple array of structs
type CandlesticksHistoricalData struct {
OpenTime time.Time
Open decimal.Decimal
High decimal.Decimal
Low …

Lev Siemens
- 11
- 1
1
vote
1 answer
Deleting every point older than the most recent one of each unique ID
What I'm trying to achieve is to only keep the latest of any given point identified by an ID, delete everything else.
The ID is a tag.
So let's say we have:
time ID ...
2022-06-28 18:29:00 id1 ...
2022-06-28 18:28:00 id1 …

William Chretien
- 21
- 3
0
votes
0 answers
How to use bind params for influx in Group by clause
This is the curl:
curl -G 'http://localhost:8086/query?' --data-urlencode 'q=SELECT * FROM MemoryUtilizationStats GROUP BY time($interval)' --data-urlencode 'db=XCC_METRICS' --data-urlencode…

Raghav
- 89
- 10
0
votes
0 answers
How to change "engine-path" in 'InfluxDB' version 2.X and higher?
I want to know how to change "engine-path" in 'InfluxDB' version 2.X or later.
How to change "engine-path" in 'InfluxDB' version 2.X and higher?
The OS is Windows.
I read the document of "InfluxDB".
"engine-path" modification method "influxd…

박종범
- 1
- 1
0
votes
1 answer
Getting invalid RFC3339Nano error while deleting from InfluxDB
i am new in influxDB, i want to delete some data from influxDB from postman. I am using below query from postman
"data":{
"start": "2021-01-09T12:00:00Z",
"stop": "2021-01-09T12:00:00Z",
"predicate": "_measurement=\"mymesurement\""
…

Sumit Paul
- 189
- 1
- 2
- 10