InfluxDB: Flux - Query remote InfluxDB: Unterschied zwischen den Versionen

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche
K
 
Zeile 1: Zeile 1:
 
'''InfluxDB 2.x can query remote InfluxDB sources''' with the Flux function ''from()''. <br>
 
'''InfluxDB 2.x can query remote InfluxDB sources''' with the Flux function ''from()''. <br>
From() cannot retrieve data from remote InfluxDB OSS 1.x or InfluxDB Enterprise 1.x data sources
+
From() can retrieve data from remote InfluxDB OSS 1.7+ or InfluxDB Enterprise 1.9+ data sources but not the opposite way.
  
 
To query remote InfluxDB sources, include the '''host''', '''token''', and '''org''' (or orgID) parameters.
 
To query remote InfluxDB sources, include the '''host''', '''token''', and '''org''' (or orgID) parameters.
Zeile 19: Zeile 19:
 
</pre>
 
</pre>
  
 +
 +
 +
''More information's: https://docs.influxdata.com/flux/v0.x/stdlib/influxdata/influxdb/from/''
  
  

Aktuelle Version vom 3. Februar 2022, 09:49 Uhr

InfluxDB 2.x can query remote InfluxDB sources with the Flux function from().
From() can retrieve data from remote InfluxDB OSS 1.7+ or InfluxDB Enterprise 1.9+ data sources but not the opposite way.

To query remote InfluxDB sources, include the host, token, and org (or orgID) parameters.

Example

token = "<YOUR_TOKEN>"

from(
  bucket: "<YOUR_BUCKET>",
  host: "https://<YOUR_INFLUXDB-INSTANCE>:8086",
  org: "<YOUR_ORGANISATION>",
  token: token
)
  |> range(start: v.timeRangeStart, stop: v.timeRangeStop)
  |> filter(fn: (r) => r._measurement == "<YOUR_MEASUREMENT>")
  ..


More information's: https://docs.influxdata.com/flux/v0.x/stdlib/influxdata/influxdb/from/