Linux/InfluxDB: Difference between revisions

From Wiki
mNo edit summary
Line 24: Line 24:


== Settings in Grafana ==
== Settings in Grafana ==
<pre>
Name:            InfluxDB
Default:        true
Query Language:  InfluxQL
URL:            http://{containername}:8086
Allowed cookies:
Timeout:


 
Database:        mybucket
User:            {newuser}
Password:        {newpassword}
HTTP Method:    GET
</pre>


== Links ==
== Links ==

Revision as of 20:29, 5 December 2023


Preparing v1 access via InfluxDB 2.x

  • Create token in gui
    • "Load Data" -> "API Tokens"
  • Get Bucket ID
    • "Load Data" -> "Buckets"
  • Get Organization Name
    • "User" -> "About" -> "Organization Profile" -> "Name"


  • Access influx command line (docker exec -it influxdb sh)
  • Create v1 user
influx v1 auth create -o {orgName} --username {newuser} --password {newpass} -t {token} --read-bucket {bucketID} --write-bucket {bucketID}

Settings in Node-RED

version = 1.x
database = from previous step (e.g. mybucket)
username = from previous step
password = from previous step

Settings in Grafana

Name:            InfluxDB
Default:         true
Query Language:  InfluxQL
URL:             http://{containername}:8086
Allowed cookies: 
Timeout:

Database:        mybucket
User:            {newuser}
Password:        {newpassword}
HTTP Method:     GET

Links