Questions tagged [influx-line-protocol]
27 questions
0
votes
0 answers
All metrics are not show in influxdb from Telegraf
I have followed multiple documentation but I couldn't receive all the metrics from my JSON file to Influxdb.
My Input json file
{
"apBuildNumber": "04.04.01.0003.1f7fd3ce8896",
"version": "1.0.0",
"sentTimeMs": "1661678671000",
…

Prajyod Kumar
- 395
- 2
- 4
- 15
0
votes
1 answer
Dates getting modified to1970-01-01T00:00:01.659452061Z when writing it to InfluxDb using the InfluxDb php client
I am using PHP Client for InfluxDB - https://github.com/influxdata/influxdb-client-php
I am inserting points in my measurement along with current timestamp. For the timestamp, I am using as follows -
$time = new…

Shubham khetan
- 1
- 1
0
votes
2 answers
Adding quotes to variating characters in bash
I am trying to use the sed function in order to add double quotes for anything in between a matched pattern and a comma to break of the pattern. At the moment I am extracting the following data from cloudflare and I am trying to modify it to line…

Deyan Farrugia
- 17
- 4
0
votes
2 answers
Split a text file into multiple files based on filename given on each line
I have a large (>10GB) file which is an InfluxDB line protocol export. Line protocol format is roughly
measurement,tag1=value1,tag2=value2,... value=XXX timestamp
for example
deconz.0.Sensors.10.pressure value=998…

Jens
- 1,386
- 14
- 31
0
votes
1 answer
InfluxDb query to return the no of records in a given timespan
Im using time series analysis and I'm using influx db to plot interesting graphs.
So here's the use case
I'm building an IOT project to monitor my desk plant. every time the moisture goes down to 10%, I trigger to turn on the pump and register that…

Divyansh Khandelwal
- 29
- 4
0
votes
1 answer
Add Tag with multiple values in influxline/influxdb
Is it possible to send multiple values in a single tag in influxdb using the influxdb line protocol?
Something like this
application-metric, application=test-app,API=get,put cpu=15 1465839830100400200
Essentially measurement and timestamp are the…

Vipin Menon
- 2,892
- 4
- 20
- 35
0
votes
1 answer
Please correct flux query for grafa to calculate and display of a result for two columns AAA+BBB
// I'm using sequences for insreting in FluxDB:
'sever1,submeas=XXX AAA=899265',
'sever1,submeas=XXX BBB=2281289',
'sever2,submeas=XXX BBB=2672',
'sever2,submeas=XXX AAA=0',
'sever3,submeas=XXX AAA=947439',
'sever3,submeas=XXX BBB=897226'
// …

Ferrum3000
- 73
- 5
0
votes
1 answer
max-series-per-database limit exceeded clarification needed / how to calculate number of series in use
We recently started to encounter this error:
{"error":"partial write: max-series-per-database limit exceeded: (1000000) dropped=1"}
When writing metric data like…

Keith Palmer Jr.
- 27,666
- 16
- 68
- 105
0
votes
1 answer
Quest DB failed to run tutorial data insertion using Java with line protocol
OS: Ubuntu 20.04.3 LTS
Java: openjdk version "17" 2021-09-14 | OpenJDK Runtime Environment (build 17+35-2724)
Library: implementation group: 'org.questdb', name: 'questdb', version: '6.0.9'
Whenever I am trying to run the sample it produces this…

RB_
- 1,195
- 15
- 35
0
votes
1 answer
Advantages of writing to InfluxDB via Line Protocol over Json Protocol
I am using Python InfluxDBClient for writing to an InfluxDB server. I can either send data via a JSON or this so-called "line protocol."
What are the advantages of using Line Protocol over Json Protocol?
Is there an improvement in writing…

Tommaso Bendinelli
- 531
- 7
- 19
0
votes
1 answer
InfluxDB lineprotocol C# write using double-quoted string gives "bad timestamp" error
I'm using the latest C# client and attempting to write data to InfluxDB using the lineprotocol.
This works:
'RobotStarted,instr=GBPUSD,timeframe=12H index=0i 1623046961909067000'
But I receive a parse error when I add in a string field using…

ultra909
- 1,740
- 1
- 23
- 25
-1
votes
1 answer
Why is this inner join returning noting, while it should return many lines items
This code executes an innerjoin operation on an influx.db
My expectation is that a new table should be returned with entries that are common for booth input tables. But is does not return is nothing.
Can somebody assist to tell me what i doing…

H Doucet
- 77
- 7