ABC 2026

<aside> 🚨 DISCLAIMER: This material has been produced using various openly available online resources to enhance its quality and comprehensiveness. In creating this document, we have attempted to acknowledge the original authors and primary contributors of the sourced materials. However, due to the extensive range of resources consulted, there may be instances where some contributors should be explicitly mentioned. Should there be any concerns or complaints regarding the attribution or content of this material, please do not hesitate to contact [email protected] for resolution and clarification.

</aside>

Introduction to the TIG Stack

The TIG Stack is an acronym for a platform of open-source tools built to make collection, storage, graphing, and alerting on time-series data easy.

A time series is simply any set of values with a timestamp where time is a meaningful data component. A classic real-world example of a time series is currency exchange rate data.

Untitled

Some widely used tools are:

In this Lab, we will use the Docker container platform. We will use the following images:

Getting started with InfluxDB

InfluxDB is a time-series database compatible with SQL, making it easy to set up a database and a user. In a terminal, execute the following: docker run -d -p 8086:8086 --name=influxdb influxdb:1.8

Now we connect to the CLI (Command Line Interface):
docker exec -it influxdb influx

You will get something like: