NewsBlur/config/munin/redis_commands

20 lines
459 B
Text
Raw Normal View History

2011-12-02 16:22:38 -08:00
#!/usr/bin/env python
from 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()