Skip to content

Instantly share code, notes, and snippets.

@curlup
Created August 1, 2012 18:40
Show Gist options
  • Save curlup/3229682 to your computer and use it in GitHub Desktop.
Save curlup/3229682 to your computer and use it in GitHub Desktop.
monik http agent config ex
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