diff options
Diffstat (limited to 'system/influxdb/README')
-rw-r--r-- | system/influxdb/README | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/system/influxdb/README b/system/influxdb/README new file mode 100644 index 0000000000..9200de4e15 --- /dev/null +++ b/system/influxdb/README @@ -0,0 +1,17 @@ +influxdb (An Open-Source Time Series Database) + +InfluxDB is an open source time series database with no external dependencies. +It's useful for recording metrics, events, and performing analytics. + +It supports high write loads, large data set storage, and conserves space thru +downsampling, automatically expiring and deleting unwanted data as well as +backup and restore. InfluxDB also makes it easy to analyze data by providing an +easy-to-use SQL-like query language. + + +Groupname and Username + +You must have the "influxdb" group and user to run this script, for example: + + groupadd -g 348 influxdb + useradd -u 348 -s /bin/false -d /var/lib/influxdb influxdb |