Query data from a remote host using influxdb python client

977 views Asked by At

I just started using Influxdb and I'm kind of lost on how to access a remote host in order to query some data from the data base and put the imported data in a data frame.

I found in the documentation, the following lines to access influxdb of a remote host and to query the data:

 client = InfluxDBClient(host='mydomain.com', port=8086, username='myuser', password='mypass' ssl=True, verify_ssl=True)
 client.query('SELECT "duration" FROM "pyexample"."autogen"."brushEvents" WHERE time > now() - 4d GROUP BY "user"')
  

My problem:

1- I don't know how to get the 'host' and 'port' values for the remote host.

2-If you can provide a small example on how to query the data from the data base and store it in a data frame, that would be nice.

0

There are 0 answers