Skip to content
AstorisTheBrave edited this page Jun 20, 2026 · 7 revisions

Argus wiki

Operational Prometheus / OpenTelemetry metrics for discord.py bots, in one line.

from argus import Argus
Argus(bot)

This wiki is the in-depth reference. The README is the quick start; everything below assumes you know discord.py and Prometheus and want the specifics.

Pages

Mental model

core observes the bot and maintains a backend-neutral metric registry. adapters (Prometheus, OTLP) translate that registry into a backend. exposition serves /metrics and the dashboard on the bot's own aiohttp loop. history is a separate, optional path that drains per-guild events to an OLAP store. Data flows one way: bot -> core -> adapters/exposition; core never imports an adapter.

Clone this wiki locally