Skip to content

Multi-container Docker app with InfluxDB, Chronograf, and Grafana

License

Notifications You must be signed in to change notification settings

klissda/docker-compose-influxdb-grafana

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-compose-influxdb-grafana for K6 load testing result

This project is a fork from @jkehres and add a Grafana dashboard to display K6 load testing result

You can run k6 with --out influxdb and point influxdb endpoint to exposed port and db as below,

k6 run --vus 100 --duration 5m --out influxdb=http://localhost:8086/k6 script.js

You have to stick with InfluxDB v1 because upstream K6 not support InfluxDB v2 yet.

docker-compose-influxdb-grafana

Multi-container Docker app built from the following services:

Quick Start

To start the app:

  1. Install docker-compose on the docker host.
  2. Clone this repo on the docker host.
  3. Optionally, change default credentials or Grafana provisioning.
  4. Run the following command from the root of the cloned repo:
docker-compose up -d

To stop the app:

  1. Run the following command from the root of the cloned repo:
docker-compose down

Ports

The services in the app run on the following ports:

Host Port Service
443 Grafana
3000 Grafana
8086 InfluxDB

Volumes

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

Users

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

Database

The app creates a default InfluxDB database called k6.

Data Sources

The app creates a Grafana data source called InfluxDB that's connected to the default IndfluxDB database (e.g. k6).

To provision additional data sources, see the Grafana documentation and add a config file to ./grafana-provisioning/datasources/ before starting the app.

Dashboards

By default, the app does create K6 Load Testing Result Grafana dashboard.

To provision additional dashboards, see the Grafana documentation and add a config file to ./grafana-provisioning/dashboards/ before starting the app.

About

Multi-container Docker app with InfluxDB, Chronograf, and Grafana

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%