Questions tagged [influxdb]

InfluxDB is an open-source time series, events, and metrics database written in Go, with no external dependencies.

Links

2990 questions
0
votes
0 answers

how not to disturb the data being reflected while changing from table-old Vizualization to Just Table.. ?(Table migration)

How not to disturb data while migrating to table panel data is getting disturbed while migrating i tried migrating but the data which was being visible gets disturbed and it gets difficult to rearrange or get back the old data
0
votes
0 answers

In influxdb, how to use top after groupby then use the result for where

For example: There are 3 students, they have a few (each student can have different number of course) courses to test, now need to: 1.Group students by their average courses score. 2.Find the top 1 student with above Rank then list the student's all…
0
votes
0 answers

Issue with selectively deleting jenkins data in tables in InfluxDB 1.8

I am using the jenkins influxdb plugin (v3.7) to log jenkins job results to an instance of InfluxDB (1.8). I want to delete the rows of jenkins data where the project_name (job) has been deleted from jenkins itself. Currently, the project_name is…
somebody
  • 11
  • 4
0
votes
0 answers

"Unauthozied acceess" error when I access influxDB from my python code with token

I am facing an issue. I did a tutorial of influxDB The tutorial provides python code with token for accessing influxDB. However, It's failed and show "Unauthoried access" error message. Please help me. import influxdb_client, os, time from…
KC Lee
  • 7
  • 2
0
votes
1 answer

Exception has occurred: ModuleNotFoundError No module named 'influxdb'

I'm maintaining a python file, which contains the following code. It worked fine before, but when I modify the code and debug, it occurs an error, which says "Exception has occurred: ModuleNotFoundError No module named 'influxdb'". from influxdb…
0
votes
1 answer

How to hide InfluxDB measurement Tags in a Grafana Panel

I have a Grafana dashboard reading data from an InfluxDB OSS 2.7 instance. I am using the Telegraf Docker input plugin to measure the memory usage of a number of docker containers. When writing my query, I get the measurement I want (container…
Sam Coulter
  • 708
  • 1
  • 6
  • 27
0
votes
0 answers

InfluxDB - Specific data missing from bucket every single time

I've been following a very basic tutorial for reading data from a sensor and writing it to a bucket in influxdb. The tutorial is out of date, so I've updated my code to use the new apis and query protocols. However, I'm noticing that everytime I…
0
votes
0 answers

Manipulate/change one dataset in influxdb

I would like to change a single record in my influxdb database. When I log in via the console, InfluxDB shell version: 1.8.3 appears. the record looks like this: time savings power solar consumption 1683816226058395321 320 power 2080 -1754 i want to…
0
votes
1 answer

How to add variable bucket name in query InfluxDB?

In Line 6 query = 'from(bucket: "my-bucket")\ how do we pass bucket as variable instead of hard-coding it ? Code Source -> https://www.influxdata.com/blog/getting-started-with-python-and-influxdb-v2-0/ Script for writing and querying points to…
Sinchu
  • 1
  • 1
0
votes
1 answer

How to disable some Influx queries in Grafana based on variable value?

I have a Dashboard graph in Grafana, where I need to select data from Influx. However, I want to use variable to change which queries are active and which are not. Currently Grafana does not support variables in transformations, thus I am trying to…
rojikada
  • 347
  • 1
  • 3
  • 9
0
votes
1 answer

Get tag values for a specific time and measurement in InfluxQL

I have an Influx DB with a database database1 containing a measurement positions that looks like this: time serie machine position ------------- ----------- ----------- ---------- 1645494054000000000 0 …
Kins
  • 547
  • 1
  • 5
  • 22
0
votes
0 answers

InfluxDB - Get sum of distinct values per day

I have entries coming in every day and sometimes twice a day with same value. The same value can come in next day or next week too. I need to sum these values so they are distinct only for that day and still count towards the sum even if it same…
0
votes
0 answers

Calculation on InfluxDB

I have an InfluxDB. The IoT device sends the data. The IoT device sends the time value to the database. I would like to calculate and store and visualize in Grafana the next send time from the time stamp + time value (sleeptimenow). SHOW FIELD KEYS…
Tony
  • 1
0
votes
0 answers

How do I delete data on InfluxDB2 deployed with Kubernetes?

I have a web platform hosted on Azure which uses, among other things, an influxdb2 database which is deployed with Kubernetes. I can't manage to implement a feature allowing me to delete data between two dates on the platform. However, I can read…
0
votes
1 answer

How to check that tag exists in InfluxDB bucket?

I am using bitcoin sample data, for example, and do the query in InfluxDB notebook UI like this: import "influxdata/influxdb/schema" schema.tagKeys(bucket: "bitcoin") This works good. But then I want to find specific tag by its name. I suppose…
kio21
  • 639
  • 1
  • 6
  • 23
1 2 3
99
100