NewsBlur/config/munin/nginx_requests
2016-11-11 11:09:13 -08:00

27 lines
608 B
Python
Executable file

#!/srv/newsblur/venv/newsblur/bin/python
import os
import re
import urllib
from vendor.munin.nginx import MuninNginxPlugin
class MuninNginxRequestsPlugin(MuninNginxPlugin):
title = "Nginx Requests"
args = "--base 1000"
vlabel = "Requests per second"
fields = (
('request', dict(
label = "Requests",
type = "DERIVE",
min = "0",
draw = "LINE2",
)),
)
def execute(self):
return dict(
request = self.get_status()['requests'],
)
if __name__ == "__main__":
MuninNginxRequestsPlugin().run()