NewsBlur/archive/munin/redis_commands
2022-02-16 21:16:24 -08:00

19 lines
486 B
Python
Executable file

#!/srv/newsblur/venv/newsblur3/bin/python
from vendor.munin.redis import MuninRedisPlugin
class MuninRedisCommandsPlugin(MuninRedisPlugin):
title = "Redis commands"
args = "--base 1000"
vlabel = "commands/sec"
info = "total commands"
fields = (
('total_commands_processed', dict(
label = "commands",
info = "commands",
type = "COUNTER",
)),
)
if __name__ == "__main__":
MuninRedisCommandsPlugin().run()