diff options
author | Christopher Baines <mail@cbaines.net> | 2016-02-27 13:35:37 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2016-02-27 13:58:34 +0000 |
commit | 54224bdbb3c4c4dff9c6f45a8a6cd19c67718627 (patch) | |
tree | 06103d3b3a0242376a69e05d438372080d15f438 /prometheus_pgbouncer_exporter | |
parent | e1f286edcd2999e8990279da97de90e78e569ef6 (diff) | |
download | prometheus-pgbouncer-exporter-54224bdbb3c4c4dff9c6f45a8a6cd19c67718627.tar prometheus-pgbouncer-exporter-54224bdbb3c4c4dff9c6f45a8a6cd19c67718627.tar.gz |
Don't specify a default configuration directory
This is a very OS specific property, and such is better left undefined.
Diffstat (limited to 'prometheus_pgbouncer_exporter')
-rw-r--r-- | prometheus_pgbouncer_exporter/cli.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/prometheus_pgbouncer_exporter/cli.py b/prometheus_pgbouncer_exporter/cli.py index 2da21c1..c6f4d24 100644 --- a/prometheus_pgbouncer_exporter/cli.py +++ b/prometheus_pgbouncer_exporter/cli.py @@ -32,9 +32,6 @@ from .collectors import StatsCollector, ListsCollector, PoolsCollector, \ def main(): p = configargparse.ArgParser( prog="prometheus-pgbouncer-exporter", - default_config_files=[ - '/etc/prometheus-pgbouncer-exporter/config', - ], ) p.add( |