No description
Find a file
2026-01-22 16:16:35 +01:00
docker Added async with tokio (but still single threaded) 2026-01-21 16:54:19 +01:00
src Add README and host 2026-01-22 15:38:05 +01:00
static/linux/amd64 Added async with tokio (but still single threaded) 2026-01-21 16:54:19 +01:00
.gitignore Switch to prometheus metrics 2026-01-22 12:41:17 +01:00
Cargo.lock Add README and host 2026-01-22 15:38:05 +01:00
Cargo.toml Add README and host 2026-01-22 15:38:05 +01:00
flake.lock First commit 2026-01-21 15:20:44 +01:00
flake.nix Add multi-arch 2026-01-22 16:16:35 +01:00
README.md Add README and host 2026-01-22 15:38:05 +01:00

container-divination

Container-divination is a spell that you can find in my GRIMOIRE (Good ResIlience MOnItoRing Exercise). It creates metrics for docker each container write and read bytes by querying docker's API. In other words it's a lightweight and very specialized alternative to Cadvisor.

To deploy you can use this docker compose :

services:
    container-divination:
        image: git.shenanigans.cc/zuma/container-divination:latest
        container_name: container-divination
        volumes:
            - /var/run/docker.sock:/var/run/docker.sock
        ports:
            - 3000:3000
        restart: unless-stopped