2018-05-21 16:28:52 +02:00
|
|
|
# InfluxDB writer
|
|
|
|
|
|
|
|
InfluxDB writer provides message repository implementation for InfluxDB.
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
|
|
The service is configured using the environment variables presented in the
|
|
|
|
following table. Note that any unset variables will be replaced with their
|
|
|
|
default values.
|
|
|
|
|
2018-09-23 01:53:03 +02:00
|
|
|
| Variable | Description | Default |
|
|
|
|
|--------------------------------|---------------------------------------------|-----------------------|
|
|
|
|
| MF_NATS_URL | NATS instance URL | nats://localhost:4222 |
|
|
|
|
| MF_INFLUX_WRITER_PORT | Service HTTP port | 8180 |
|
|
|
|
| MF_INFLUX_WRITER_BATCH_SIZE | Size of the writer points batch | 5000 |
|
|
|
|
| MF_INFLUX_WRITER_BATCH_TIMEOUT | Time interval in seconds to flush the batch | 1 second |
|
|
|
|
| MF_INFLUX_WRITER_DB_NAME | InfluxDB database name | mainflux |
|
|
|
|
| MF_INFLUX_WRITER_DB_HOST | InfluxDB host | localhost |
|
|
|
|
| MF_INFLUX_WRITER_DB_PORT | Default port of InfluxDB database | 8086 |
|
|
|
|
| MF_INFLUX_WRITER_DB_USER | Default user of InfluxDB database | mainflux |
|
|
|
|
| MF_INFLUX_WRITER_DB_PASS | Default password of InfluxDB user | mainflux |
|
2018-05-21 16:28:52 +02:00
|
|
|
|
|
|
|
## Deployment
|
|
|
|
|
2018-05-31 12:28:00 +02:00
|
|
|
```yaml
|
|
|
|
version: "2"
|
|
|
|
influxdb-writer:
|
|
|
|
image: mainflux/influxdb:[version]
|
|
|
|
container_name: [instance name]
|
|
|
|
expose:
|
|
|
|
- [Service HTTP port]
|
|
|
|
restart: on-failure
|
|
|
|
environment:
|
|
|
|
MF_NATS_URL: [NATS instance URL]
|
|
|
|
MF_INFLUX_WRITER_PORT: [Service HTTP port]
|
2018-09-23 01:53:03 +02:00
|
|
|
MF_INFLUX_WRITER_BATCH_SIZE: [Size of the writer points batch]
|
|
|
|
MF_INFLUX_WRITER_BATCH_TIMEOUT: [Time interval in seconds to flush the batch]
|
2018-06-01 15:50:23 +02:00
|
|
|
MF_INFLUX_WRITER_DB_NAME: [InfluxDB name]
|
|
|
|
MF_INFLUX_WRITER_DB_HOST: [InfluxDB host]
|
2018-05-31 12:28:00 +02:00
|
|
|
MF_INFLUX_WRITER_DB_PORT: [InfluxDB port]
|
|
|
|
MF_INFLUX_WRITER_DB_USER: [InfluxDB admin user]
|
|
|
|
MF_INFLUX_WRITER_DB_PASS: [InfluxDB admin password]
|
|
|
|
ports:
|
|
|
|
- [host machine port]:[configured HTTP port]
|
|
|
|
```
|
|
|
|
|
2018-05-21 16:28:52 +02:00
|
|
|
To start the service, execute the following shell script:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# download the latest version of the service
|
|
|
|
go get github.com/mainflux/mainflux
|
|
|
|
|
|
|
|
|
|
|
|
cd $GOPATH/src/github.com/mainflux/mainflux
|
|
|
|
|
|
|
|
# compile the influxdb
|
|
|
|
make influxdb
|
|
|
|
|
|
|
|
# copy binary to bin
|
|
|
|
make install
|
|
|
|
|
2018-05-31 12:28:00 +02:00
|
|
|
# Set the environment variables and run the service
|
2018-09-23 01:53:03 +02:00
|
|
|
MF_NATS_URL=[NATS instance URL] MF_INFLUX_WRITER_PORT=[Service HTTP port] MF_INFLUX_WRITER_BATCH_SIZE=[Size of the writer points batch] MF_INFLUX_WRITER_BATCH_TIMEOUT=[Time interval in seconds to flush the batch] MF_INFLUX_WRITER_DB_NAME=[InfluxDB database name] MF_INFLUX_WRITER_DB_HOST=[InfluxDB database host] MF_INFLUX_WRITER_DB_PORT=[InfluxDB database port] MF_INFLUX_WRITER_DB_USER=[InfluxDB admin user] MF_INFLUX_WRITER_DB_PASS=[InfluxDB admin password] $GOBIN/mainflux-influxdb
|
2018-05-31 12:28:00 +02:00
|
|
|
|
|
|
|
```
|
2018-05-21 16:28:52 +02:00
|
|
|
|
2018-06-01 11:20:44 +02:00
|
|
|
### Using docker-compose
|
|
|
|
|
|
|
|
This service can be deployed using docker containers.
|
2018-09-20 15:32:50 +02:00
|
|
|
Docker compose file is available in `<project_root>/docker/addons/influxdb-writer/docker-compose.yml`. Besides database
|
2018-06-01 11:20:44 +02:00
|
|
|
and writer service, it contains [Grafana platform](https://grafana.com/) which can be used for database
|
2018-09-23 01:53:03 +02:00
|
|
|
exploration and data visualization and analytics. In order to run Mainflux InfluxDB writer, execute the following command:
|
2018-06-01 11:20:44 +02:00
|
|
|
|
|
|
|
```bash
|
2018-09-23 01:53:03 +02:00
|
|
|
docker-compose -f docker/addons/influxdb-writer/docker-compose.yml up -d
|
2018-06-01 11:20:44 +02:00
|
|
|
```
|
|
|
|
|
2018-09-23 01:53:03 +02:00
|
|
|
_Please note that you need to start core services before the additional ones._
|
2018-06-01 11:20:44 +02:00
|
|
|
|
2018-05-21 16:28:52 +02:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
Starting service will start consuming normalized messages in SenML format.
|
2018-05-31 12:28:00 +02:00
|
|
|
|
|
|
|
[doc]: http://mainflux.readthedocs.io
|