nwaku-monitor/pg-exporter-queries: add new panel to show num msgs per shard (#43)

This commit is contained in:
Ivan FB 2024-02-02 15:12:39 +01:00 committed by GitHub
parent 424283483a
commit 7fca44b7ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 733 additions and 794 deletions

File diff suppressed because it is too large Load Diff

View File

@ -261,3 +261,14 @@ pg_process_idle:
- seconds: - seconds:
usage: "HISTOGRAM" usage: "HISTOGRAM"
description: "Idle time of server processes" description: "Idle time of server processes"
pg_tb_stats:
query: |
select pubsubtopic, count(*) AS messages FROM (SELECT id, array_agg(pubsubtopic ORDER BY pubsubtopic) AS pubsubtopic FROM messages GROUP BY id) sub GROUP BY pubsubtopic ORDER BY pubsubtopic;
metrics:
- pubsubtopic:
usage: "LABEL"
description: "pubsubtopic"
- messages:
usage: "GAUGE"
description: "Number of messages for the given pubsub topic"