I am gathering time series data from the game "Patrician 3" (inventory of each town and trading office), which takes place in the middle ages (1300+). Since transforming time series data into graphs is a solved problem, I'd like to use an…
I am converting reports from InfluxQL to Flux I cant seem to be able to do this correctly for a difference query.
This is my difference query I need to convert
SELECT difference(last("value")) / ($__interval_ms/1000) FROM "sqlserver_performance"…
I want to create an read only influx API token when initializing my influx DB using this command. I want to have the resulting API key of this call available as a docker secret so other containers can use it. My problem is that this command seems…
I'm using telegraf to receive data via MQTT and output it to an InfluxDB. In my case its data from several Shelly PowerPlugs (for example). I only process specific topics but they include both float and string values. I currently have 2 inputs…
We store live data in influxDb, I want to get live data from influxdb at certain intervals and show it in React graphics.
For this, I think I need to open a web socket connection to influxDb. But is there such a thing? Can I open a web socket…
I have a script that print a result like that:
somename,bps,running_time
AAA,1886,01:35
BBB,6235,01:35
CCC,2532,01:35
Here is my telegraf config :
[[inputs.exec]]
commands = [ "bash /opt/latency/test.sh" ]
timeout = "5s"
name_override =…
I've installed influxdb and created a bucket "test" via UI and I selected 1 hour when asked, "Delete data older than?"
As in the above image, I added a sample data row.
But when I checked after 1 hour, the row still exists.
Can someone explain to…
how to delete data in influxdb2.0, how to delete in springboot project?
I use influxDBClient, it has a api calls getDeleteApi(), but I don't know
how to use it , DeleteApi.delete(@Nonnull final DeletePredicateRequest predicate,
@Nonnull final String…
I am currently building a Monitoring Application with the help of InfluxDB and Grafana and have come to an issue I couldn't find any solution to. Specifically, I am monitoring the Network Traffic of my Server in rate/s but since my the data source…
I'm writing about 500k samples per second into influxdb using telegraf and MQTT.
Although CPU and memory are in low utilization, influx cannot store the data at this speed.
Data is generated locally, so I don't have network problems.
HD doesn't have…
I'm new to InfluxDB and encountering an "unauthorized access" issue when trying to connect to my InfluxDB instance using the Python influxdb library. I'm receiving the following error message:
Reason: Unauthorized
HTTP response headers:…
Good afternoon. So I am creating a grafana dashboard and I am having a problem with counting a unique number in a list until the number changes. I am counting the number of times a service is unavailable, when the ping rate is 100% loss. The…
I'm super new to time series database and I've just approached the use of InfluxDB with Python.
I'm trying to understand what's the best way to organize data.
The system I need to monitor is basically a cluster of sensors. The data acquisition will…
I have a metric in my app which at different times throughout the day pushes a non-negative integer (0,1,2,3,4,5...) to my influxdb database.
I can't work out the InfluxQL or Flux query to display a rolling figure for 'the % of time the value is >…
I have an InfluxDB measurement table, which stores the state of a system over time. Each data point has a tag that represents the state and a duration indicating the time it was in that state.
For example:
| Time | State |…