influxdb

Convert two dictionary to influx writing measurement fields in python

Convert two dictionary to influx writing measurement fields in python Question: I have a dictionary like {‘BTC’: {‘030323’: 562.7, ‘170323’: 9.900000000000002, ‘250223’: 64.60000000000004, ‘290923’: 17.6, ‘100323’: 53.90000000000002, ‘310323’: 27.4, ‘260223’: 15.499999999999996, ‘300623’: 33.7, ‘280423’: 30.0, ‘291223’: 28.6, ‘260523’: 1.0999999999999999}, ‘ETH’: {‘030323’: 562.7, ‘170323’: 9.900000000000002, ‘250223’: 64.60000000000004, ‘290923’: 17.6, ‘100323’: 53.90000000000002, ‘310323’: 27.4, ‘260223’: 15.499999999999996, ‘300623’: …

Total answers: 1

InfluxDB: How to deal with missing data?

InfluxDB: How to deal with missing data? Question: Question Description We are performing a lot of timeseries queries, these queries sometimes result in issues, they are usually performed through an API (Python) and sometimes result in complete failure due to data missing. Due to this situation we are not sure where to educate ourselves and …

Total answers: 1

How connect to locallhost influxdb from python and without token?

How connect to locallhost influxdb from python and without token? Question: I am trying just simple connect to influxdb which started on localhost. When I try just client: influx –host 192.168.0.2 –port 8086 It works. But when I try python: import os import json from influxdb_client import InfluxDBClient, Point, WritePrecision influxdb_url = os.environ[‘INFLUXDB_URL’] influxdb_host = …

Total answers: 2