diff options
author | Christopher Baines <mail@cbaines.net> | 2016-02-27 17:51:00 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2016-02-27 17:51:00 +0000 |
commit | 01b0377f5b0cc6d44e45e9bd249d0d8c632279b3 (patch) | |
tree | b44f6477728cfba87d1669d5512f0026ea9e23b1 /prometheus_pgbouncer_exporter | |
parent | 18b37c74c5138e0ddb9e520771e747f5121c66ab (diff) | |
download | prometheus-pgbouncer-exporter-01b0377f5b0cc6d44e45e9bd249d0d8c632279b3.tar prometheus-pgbouncer-exporter-01b0377f5b0cc6d44e45e9bd249d0d8c632279b3.tar.gz |
Correct help strings
Diffstat (limited to 'prometheus_pgbouncer_exporter')
-rw-r--r-- | prometheus_pgbouncer_exporter/cli.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/prometheus_pgbouncer_exporter/cli.py b/prometheus_pgbouncer_exporter/cli.py index c6f4d24..6e4b5a0 100644 --- a/prometheus_pgbouncer_exporter/cli.py +++ b/prometheus_pgbouncer_exporter/cli.py @@ -50,14 +50,14 @@ def main(): p.add( '--port', default='9127', - help="Port to connect to pgbouncer", + help="Port on which to expose metrics", type=int, env_var='PORT', ) p.add( '--host', default='0.0.0.0', - help="Port to connect to pgbouncer", + help="Host on which to expose metrics", env_var='HOST', ) |