Inspired by Mistborn Seekers, seeker can sense power. This is a collection of tools to help track metrics, logs, and other data in a distributed system.
Prerequisites:
- Docker
- Telegram account
This setup uses a standalone docker network.
To create the Docker network, run:
docker network create gs_network_dev
Change the name to reflect your landing zone and environment.
Add the loki driver. This is required for the docker logs to be sent to Loki.
docker plugin install grafana/loki-docker-driver:3.3.2-arm64 --alias loki --grant-all-permissions
Watchtower automatically updates running Docker containers whenever a new image is available. It also sends notifications about the updates.
Warning: Pinning all of your containers to "latest" should be done with caution. Consider if this is within your risk appetite for your environment.
Watchtower is configured using the config.json
file and environment variables in the docker-compose.yml
file.
config.json
: Contains authentication details for Docker registry.docker-compose.yml
: Contains environment variables for Watchtower notifications and scheduling.
Steps: https://containrrr.dev/watchtower/private-registries/
To base64 encode your Docker registry authentication, run:
echo -n 'username:password' | base64
Replace username
and password
with your Docker registry credentials.
Warning: Base64 encoding is very easily reversed. Do not commit the encoded credentials to GitHub.
TZ
: Time zone for the container (e.g.,US/Central
).WATCHTOWER_NOTIFICATION_REPORT
: Enables detailed notifications about updates (set to"true"
).WATCHTOWER_SCHEDULE
: Cron expression to schedule updates (e.g.,"0 9 15-23 * * *"
runs at minute 9 of hours 15-23).WATCHTOWER_CLEANUP
: Removes old images after updates (set totrue
).WATCHTOWER_NOTIFICATIONS
: Notification service to use (e.g.,shoutrrr
).WATCHTOWER_NOTIFICATION_URL
: URL for the notification service (e.g.,telegram://${BOT_TOKEN}@telegram/?channels=${CHAT_ID}
).WATCHTOWER_NOTIFICATION_TEMPLATE
: Template for the notification message.
Below are the steps to set up Telegram notifications for Watchtower updates:
-
Create a Telegram Bot
- Open Telegram and search for BotFather. Start a chat with BotFather and send the
/newbot
command. Follow the prompts to choose a name and username for your bot. Once completed, BotFather will provide you with a bot token. This token (BOT_TOKEN) is needed to allow Watchtower to send messages.
- Open Telegram and search for BotFather. Start a chat with BotFather and send the
-
Create a Telegram Channel or Group
- Create a channel (or a group) where you want to receive the update messages. If you use a channel, make sure that it is set up to receive messages from bots.
-
Invite the Bot to Your Channel/Group
- Add your new bot to the channel or group as an administrator. This is required for the bot to post messages. For channels, simply use the “Add Admin” process; for groups, send the
/add
command or use the group settings to add the bot.
- Add your new bot to the channel or group as an administrator. This is required for the bot to post messages. For channels, simply use the “Add Admin” process; for groups, send the
-
Obtain the Channel or Group Identifier
- The WATCHTOWER_NOTIFICATION_URL requires a channel identifier (CHAT_ID). For public channels, you can often use the channel’s username (prefixed with @), but if you need a numeric chat id, you might use:
- A dedicated Telegram ID bot, such as
userinfobot
, to get your channel or group id. - Forward a message from your channel to the bot and check the details. Take note of this identifier (CHAT_ID).
- A dedicated Telegram ID bot, such as
- The WATCHTOWER_NOTIFICATION_URL requires a channel identifier (CHAT_ID). For public channels, you can often use the channel’s username (prefixed with @), but if you need a numeric chat id, you might use:
-
Update Your environment variables
- Replace TELEGRAM_BOT_TOKEN and TELEGRAM_CHAT_ID in the Watchtower environment variable with the values you obtained.
For more details on obtaining the channel ID, you can refer to this gist.
Loki is a log aggregation system designed to store and query logs from various sources.
Loki is configured using the loki-config.yml
file.
loki-config.yml
: Contains settings for server ports, storage paths, and schema configurations.
Promtail is an agent that ships logs from the filesystem to Loki. It is usually deployed alongside your services for log collection.
Promtail configuration is defined in the promtail-config.yml
file.
promtail-config.yml
: Contains settings for scraping logs from specified paths and sending them to Loki.
Add the following to daemon.json. On MacOS, this is located at ~/.docker/daemon.json
.
{
"log-driver": "loki",
"log-opts": {
"loki-url": "http://localhost:3100/loki/api/v1/push",
"loki-batch-size": "400"
}
}
Grafana is a multi-platform open-source analytics and interactive visualization web application. It provides charts, graphs, and alerts for the web when connected to supported data sources.
Grafana is configured using the docker-compose.yml
file.
docker-compose.yml
: Contains volume mappings and network settings for Grafana.
The environment variables are defined in the prod.env
file.
LZ
: Logical zone (e.g.,gs
).ENV
: Environment (e.g.,prod
).COMPOSE_PROJECT_NAME
: Docker Compose project name.BOT_TOKEN
: Telegram bot token for notifications.CHAT_ID
: Telegram chat ID for notifications.
To run the stack, use Docker Compose:
docker-compose up -d
This command will start Loki, Grafana, and Watchtower services as defined in the docker-compose.yml
file.