You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I'm missing support to count connections to the database per-user. It's nice to see connections per database but when you have multiple users accessing to the database, you can't decide which one is the most consuming one.
You can count by datname, like this:
But you can't count by usename and datname, like this:
Proposal
Hello, I'm missing support to count connections to the database per-user. It's nice to see connections per database but when you have multiple users accessing to the database, you can't decide which one is the most consuming one.
You can count by

datname
, like this:But you can't count by
usename
anddatname
, like this:Yes, I can do it via custom queries, but I think the right approach is via core
pg_stat_activity_.*
metric stuff.Maybe the easiest way is to add
usename
label topg_stat_activity_count
and addusename
togroup by
.Thank you
The text was updated successfully, but these errors were encountered: