[ InfluxCLI ] CLI to interact with and manage your InfluxDB instance

Discussion on apps, protocols, APIs, specifications, and more. You are welcome to join us as a TOS app developer!
Post Reply
User avatar
outkastm
Posts: 1185
Joined: 29 Dec 2020, 23:52

[ InfluxCLI ] CLI to interact with and manage your InfluxDB instance

Post by outkastm »

Image

About : https://docs.influxdata.com/influxdb/v2 ... i/?t=Linux

Category: Tools
Applicable models: x.64 series, ARMv8 series
Applicable TOS4: 4.1.27 or later versions
Applicable TOS5: 5.0.170 or later versions
App download: https://tmnascommunity.eu/download/influxcli/

Module WebUI for additional settings can be accesses at

http(s)://yournasip:port/modules/InfluxCLI/www

How to manully install this app on TerraMaster application store?

About:

Provide required authentication credentials
To avoid having to pass your InfluxDB host, API token, and organization with each command, store them in an influx CLI configuration (config). influx commands that require these credentials automatically retrieve these credentials from the active config.

Use the influx config create command to create an influx CLI config and set it as active:

Code: Select all

influx config create --config-name <config-name> \
  --host-url http://localhost:8086 \
  --org <your-org> \
  --token <your-auth-token> \
  --active
  
Post Reply