Multi-container Docker app built from the following services:
To start the app:
- Install docker-compose on the docker host.
- Clone this repo on the docker host.
- Optionally, change default credentials or Grafana provisioning.
- Run the following command from the root of the cloned repo:
docker compose up -d
To stop the app:
- Run the following command from the root of the cloned repo:
docker compose down
The services in the app run on the following ports:
Host Port | Service |
---|---|
3000 | Grafana |
8086 | InfluxDB |
The app creates the following named volumes (one for each service) so data is not lost when the app is stopped:
- influxdb-storage
- grafana-storage
The app creates two admin users - one for InfluxDB and one for Grafana. By default, the username and password of both accounts is admin
. To override the default credentials, set the following environment variables before starting the app:
INFLUXDB_USERNAME
INFLUXDB_PASSWORD
GRAFANA_USERNAME
GRAFANA_PASSWORD
The app creates a default InfluxDB database called db0
.
The app creates a Grafana data source called InfluxDB
that's connected to the default IndfluxDB database (e.g. db0
).
To provision additional data sources, see the Grafana documentation and add a config file to ./grafana-provisioning/datasources/
before starting the app.
By default, the app does not create any Grafana dashboards. An example dashboard that's configured to work with artillery-plugin-influxdb is located at ./grafana-provisioning/dashboards/artillery.json.example
. To use this dashboard, rename it to artillery.json
.
To provision additional dashboards, see the Grafana documentation and add a config file to ./grafana-provisioning/dashboards/
before starting the app.