Created
August 1, 2012 18:40
-
-
Save curlup/3229682 to your computer and use it in GitHub Desktop.
monik http agent config ex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def status_conf(port): | |
return { | |
'name': 'frontikd_{0}'.format(port), | |
'response_processor': 'regexp', | |
'url': 'http://127.0.0.1:{0}/status/'.format(port), | |
'metrics': { | |
'served': (r'pages served: (\d+)', 'COUNTER'), | |
'http-calls': (r'http reqs made: (\d+)', 'COUNTER'), | |
} | |
} | |
plugin_conf['Http'] = { | |
'interval': 5, | |
'worker': 'async', | |
'instances': [status_conf(port) for port in range(8000,8003)], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment