Skip to content

Telegraf, InfluxDB, Grafana Docker Monitoring

License

Notifications You must be signed in to change notification settings

Sokharev/tig-stack

 
 

Repository files navigation

Telegraf InfluxDB Grafana Stack

What is inside TIG Stack

  • Telegraf+Statsd - Gathers cpu,mem,net,docker data and sends it to InfluxDB,statsd installed and 8125 udp port exposed
  • InfluxDB + volume data - Stores data from Telegraf
  • Grafana + volume data - Includes one Dashboard (there will be more!) for docker monitoring.

How to use it?

TIG stack is created for Rancher. If you are not fammiliar with rancher, please read some docs, because it is really great Docker Orchestration Tool.
To use it add custom rancher-catalog to the Rancher configuration, and within only one click, you are able to monitor your Docker Instance automatically!

What if I don't want to use Rancher?

You can obviously use this stack without Rancher. Just grab docker-compose.yml file amd start your stack as usual.

$ mkdir tig-stack
$ cd tig-stack
$ curl -OL https://raw.githubusercontent.com/matisku/tig-stack/master/docker-compose.yml
$ docker-compose up -d

Environment

Grafana

GF_INSTALL_PLUGINS - In default all plugins are installed
GF_SECURITY_ADMIN_USER - Admin Username. Default: admin
GF_SECURITY_ADMIN_PASSWORD- Admin User Password. Default:admin
GF_SECURITY_SECRET_KEY - Secret key. Default: grafana
GF_USERS_ALLOW_SIGN_UP - Allow singup to Grafana. Default: "true"
GF_USERS_ALLOW_ORG_CREATE - Allow user create new Orgs. Default: "true"
GF_AUTH_ANONYMOUS_ENABLED - Anonymus autthorization enabled. Default: "true"
GF_AUTH_ANONYMOUS_ORG_NAME - Anonymus defaul Org Name. Default: grafana
GF_DASHBOARDS_JSON_ENABLED - Dashboards as JSON enabled. Default: "true"
GF_DASHBOARDS_JSON_PATH - Path where JSON Dashboards are stored. Default: /opt/grafana

InfluxDB

INFLUX_DATABASE - IndluxDB Database Name. Default: "telegraf"
INLFUX_ADMIN_USER - IndluxDB Admin Username. Default: "grafana"
INFLUX_ADMIN_PASS - InfluxDB Admin Password. Default: "grafana"

Telegraf

HOST_NAME - Telegraf Default Hostane. Default: "telegraf"
INFLUXDB_HOST - IndluxDB Database Host. Default: "influxdb"
INFLUXDB_PORT - InfluxDB Default Port. Default: "8086"
DATABASE - InfluxDB Database where telegraf stores data. Default: "telegraf"

Sokharev : Telegraf using docker prebuilt image but telegraf.conf used from this checkout thus we can configure telegraf without rebuilding image

How to use 2:

  1. git checkout and cd to tig-stack folder
  2. change telegraf/telegraf.template.conf whatever you want ( or just leave unchanged )
  3. do git pull
  4. docker-compose down
  5. docker-compose up -d
  6. live.die.repeat

some help here https://github.com/influxdata/telegraf/tree/master/plugins/inputs/statsd

test it with : echo "deploys.test.myservice:1|c" | nc -w 1 -u graphite.example.com 8125

Ports

Grafana: 3000 InfluxDB: 8083, 8086

License

Copyright © 2016 Mateusz Trojak. See LICENSE for details.

TODO

  • Add more Grafs

Metadata

About

Telegraf, InfluxDB, Grafana Docker Monitoring

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 57.6%
  • JavaScript 42.4%