NewsBlur-viq/archive/munin/pgbouncer_stats_avg_req_
2022-02-01 14:59:05 -05:00

26 lines
690 B
Python
Executable file

#!/srv/newsblur/venv/newsblur3/bin/python
# -*- coding: utf-8 -*-
from vendor.munin.pgbouncer import MuninPgBouncerPlugin
class MuninPgBouncerStatsRequestsServerPlugin(MuninPgBouncerPlugin):
command = "SHOW STATS"
vlabel = "Requests"
info = "Shows average requests per second"
fields = (
('avg_req', dict(
label = "requests per second",
info = "average requests per second",
type = "GAUGE",
min = "0",
)),
)
@property
def title(self):
return "PgBouncer average requests per second on %s" % self.dbwatched
if __name__ == "__main__":
MuninPgBouncerStatsRequestsServerPlugin().run()