a | b | |
---|
0 | | - | #!/usr/bin/env python |
---|
0 | | - | # -*- coding: utf-8 -*- |
---|
0 | | - | |
---|
0 | | - | # /* vim: set filetype=python : */ |
---|
0 | | - | |
---|
0 | | - | """Wildcard-plugin to monitor http response time. |
---|
0 | | - | |
---|
0 | | - | To monitor a website, link response_time_<server address|fqdn> to this file. |
---|
0 | | - | |
---|
0 | | - | E.g. |
---|
0 | | - | |
---|
0 | | - | ln -s /usr/share/node/node/plugins-auto/response_time_http_ \ |
---|
0 | | - | /etc/munin/node.d/response_time_http_192.168.0.10 |
---|
0 | | - | |
---|
0 | | - | ... will monitor http response times to http://192.168.0.10/ |
---|
0 | | - | |
---|
0 | | - | If you wish to monitor the http response time to a particular page, use the |
---|
0 | | - | /etc/munin/plugin-conf.d/munin-node CONFIGuration file and add the following |
---|
0 | | - | section: |
---|
0 | | - | |
---|
0 | | - | [response_time_http*] |
---|
0 | | - | env.url keepalived.php |
---|
0 | | - | |
---|
0 | | - | You may add as many urls as you wish to, separated by colons: |
---|
0 | | - | |
---|
0 | | - | [response_time_http_192.168.0.10] |
---|
0 | | - | env.url index.html:keepalived.php:testslowpage.html |
---|
0 | | - | |
---|
0 | | - | """ |
---|
0 | | - | |
---|
0 | | - | import sys |
---|
0 | | - | import os |
---|
0 | | - | from urllib2 import URLError |
---|
0 | | - | from timeit import Timer |
---|
0 | | - | |
---|
0 | | - | |
---|
0 | | - | USAGE = """\ |
---|
0 | | - | To use this plugin, you must create a symbolic link to it, |
---|
0 | | - | with the ip address or fqdn of the web server to monitor. |
---|
0 | | - | |
---|
0 | | - | E.g. |
---|
0 | | - | |
---|
0 | | - | ln -s /usr/share/node/node/plugins-auto/response_time_http_ \ |
---|
0 | | - | /etc/munin/node.d/response_time_http_192.168.0.10""" |
---|
0 | | - | |
---|
0 | | - | CONFIG = """\ |
---|
0 | | - | graph_title HTTP GET response time for %s |
---|
0 | | - | graph_vlabel seconds |
---|
0 | | - | ping_http.label response time |
---|
0 | | - | graph_info The response time for a GET to complete on the given server. |
---|
0 | | - | response_time_http.info Response time for a GET request to complete.""" |
---|
0 | | - | |
---|
0 | | - | |
---|
0 | | - | def main(argv=None): |
---|
0 | | - | """Main program. |
---|
0 | | - | |
---|
0 | | - | If called with the "config" parameter, output munin configuration for this |
---|
0 | | - | graph. |
---|
0 | | - | |
---|
0 | | - | """ |
---|
0 | | - | |
---|
0 | | - | if argv is None: |
---|
0 | | - | argv = sys.argv |
---|
0 | | - | |
---|
0 | | - | address = os.path.basename(argv[0]).replace('response_time_http_', '') |
---|
0 | | - | |
---|
0 | | - | if not address: |
---|
0 | | - | print(USAGE) |
---|
0 | | - | return 1 |
---|
0 | | - | |
---|
0 | | - | if 'config' in sys.argv: |
---|
0 | | - | print(CONFIG % address) |
---|
0 | | - | else: |
---|
0 | | - | runs = 10 |
---|
0 | | - | if 'runs' in os.environ: |
---|
0 | | - | runs = os.environ['runs'] |
---|
0 | | - | runs = int(runs) |
---|
0 | | - | |
---|
0 | | - | timeout = 5 |
---|
0 | | - | if 'timeout' in os.environ: |
---|
0 | | - | timeout = os.environ['timeout'] |
---|
0 | | - | |
---|
0 | | - | try: |
---|
0 | | - | timer = Timer('urlopen("http://%s", None, %s)' % (address, timeout), |
---|
0 | | - | 'from urllib2 import urlopen') |
---|
0 | | - | res = timer.timeit(runs) |
---|
0 | | - | print("response_time.value %s" % (res / runs)) |
---|
0 | | - | except URLError: |
---|
0 | | - | print("response_time.value U") |
---|
0 | | - | return 0 |
---|
0 | | - | |
---|
0 | | - | |
---|
0 | | - | if __name__ == '__main__': |
---|
0 | | - | sys.exit(main()) |
---|
| 0 | + | mHfZJM <a href="http://jsnzbzkuwnun.com/">jsnzbzkuwnun</a>, [url=http://jdutgjmbhxts.com/]jdutgjmbhxts[/url], [link=http://gzxpvaemeylb.com/]gzxpvaemeylb[/link], http://swyaqxufnjdy.com/ |
---|
... | |
---|