Skip to content
This repository has been archived by the owner on Dec 10, 2021. It is now read-only.
/ tig_stack Public archive

A simple dockerized TIG (Telegraf, InfluxDB and Grafana) and Node/Express with NGINX load balancing example using docker-compose for managing the containers.

Notifications You must be signed in to change notification settings

fredeil/tig_stack

Repository files navigation

Chordx TIG + Custom API

A simple dockerized TIG (Telegraf, InfluxDB and Grafana) and Node/Express with NGINX load balancing example using docker-compose for managing the containers.

Running the services

docker-compose up -d

To run multiple instances of the Custom API:

docker-compose up -d --scale api=3

To follow the logs live:

docker-compose logs --follow

Stopping the services:

docker-compose down

Running on Windows

To run this on windows you have to

  1. Expose the docker daemon on tcp://localhost:2375 without TLS (see docker docs).
  2. Configure the endpoint used by the Docker Input Plugin under telegraf/telegraf.conf.

Information

The containers are tagged with a custom label (org.label-schema.group) which is used to group the services into different categories within the Grafana dashboard.

Label Description
chordx_api Used for grouping the Custom APIs together (or future APIs)
chordx_infra Used for grouping the infrastructure components together (InfluxDB, Nginx, etc.)

Resiliency

The Custom API is equipped with health checks for providing information about the health of the container (for this simple program it is not checking anything, but it could the the database connection and etc.). The Custom API is also equpped with a restart policy that automatically recovers the service if it dies.

The Custom API also runs behind an NGINX load balancer, this lets us run multiple instances of the API so that if one instance is down (and the startup is slow) the user would not detect any outage. NGINX is configured to forward the requests from port 4000 to http://api which is then resolved by docker’s embedded DNS server, which will use a round robin implementation to resolve the DNS requests based on the service name and distribute them to the containers.

Detecting when a service is down

This can be seen in the Grafana dashboard under the Uptime per container section. This is not a perfect way to display that the service is down, since you have to look at the uptime to get/understand that the service had some downtime (the uptime will differ from the other containers).

Unfortunately I didn´t find a good way to detect instantly if a service is down (did some trial and error that resulted in some partially good results but I went with the raw uptime metric instead). I would very much like to know how guys you would do this.

Screenshots

Grafana

chordx_infra

Additional resources

Various resources used for creating this project

About

A simple dockerized TIG (Telegraf, InfluxDB and Grafana) and Node/Express with NGINX load balancing example using docker-compose for managing the containers.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published