mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-04-13 09:42:01 +00:00
19 lines
485 B
Python
Executable file
19 lines
485 B
Python
Executable file
#!/srv/newsblur/venv/newsblur/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()
|