Using InfluxDB (v1.1), I have the requirement where I want to get the last entry timestamp for a specific key. Regardless of which measurement this is stored and regardless of which value this was.
The setup is simple, where I have three…
Are there tutorials online that teaches you how to create tables and input values in InfluxDB? How would you create a table and insert values into them?
Is there any shortform syntax in influxdb to query for membership in a list? I'm thinking of something along the lines of
SELECT * FROM some_measurement WHERE some_tag IN ('a', 'b', 'c')
For now I can string this together using ORed =s, but that…
docker stop has a standard timeout of 10s (Reference - Docker Stop). This time window may be to short for the shutdown of mysql or influxdb to reach a consistent state on file system. If I stopped the container by hand, I would shut it down with…
I have recently set up Grafana with InfluxDB. I'd like to show a panel that indicates how long it has been since an event took place.
Examples:
Server last reported in: 33 minutes ago
Last user sign up: 17 minutes ago
I can get a single metric…
I'm new to Prometheus but familiar with Influx (currently running 1.6).
My understanding is it's possible to configure Prometheus to remotely read data from influx with the following configuration in prometheus.yml:
remote_read:
url:…
I have a an InfluxDB measurement named kpi. I want to get the size of that single measurement in MB.
So far I have tried:
du -sh /var/lib/influxdb/data/demo/
27M /var/lib/influxdb/data/demo/
But this command gives me the size of the whole…
I am using influxDB instead of MySQL for time series analysis. In my database data, I have a series which is called /HFT/Data_HFT/OrderBook/DCIX_OB. That name is irrelevant and it was created by error. That series has 89 million lines, so it would…
I have a Influx database that is getting filled with values. These values are presented by Grafana. What I need is to get the actual values depending on the selected time interval.
Currently I have the following query for a single metric:
SELECT…
I have data being inserted that uses host names. Annoyingly I'm about to change a domain from .lan to .mydomain.com
Obviously I'd like to be able to search my historical data of a machine as it crosses this change.
Can I update a tag definition…
I'm trying to get Telegraf to work with InfluxDB and I've just hit a wall. I've added the following block to my Telegraf configuration file:
[[inputs.win_perf_counters.object]]
# Process metrics, in this case for IIS only
ObjectName = "Process"
…
I have series of values that specify the status of jobs, either success or failure.
Each item in the series has a type, and also a grouping ID. It's a dependent sequence so job bar for ID A will run if job foo was successful.
idx time …
Can you please tell me, which data structure has an InfluxDB und which data model InfluxDB use? Is this key-value model. I read the full documentation and I didn't catch that.
Thank you in advance!
According to the docs, we can...
Use a regular expression to specify a tag with a value in the WHERE clause.
When I query my influxdb like this, I get the desired results.
> SELECT "field" FROM "measurement" WHERE tag = 19
When replacing the…
I am a beginner with InfluxDB and I've read the intro documentation, but cannot find any details on how to create a new measurement. Am I missing something ?