Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Prometheus exporter for Tinyproxy.

optional arguments:
-h, --help show this help message and exit
-l LISTEN address on which to expose metrics (default ":9240")
-l LISTEN address on which to expose metrics (default "127.0.0.1:9240")
-s STATHOST internal statistics page address (default "tinyproxy.stats")
-t TINYPROXY tinyproxy address (default "127.0.0.1:8888")
```
4 changes: 2 additions & 2 deletions tinyproxy_exporter
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def parse_args():
parser.add_argument(
'-l',
metavar='LISTEN',
default=':9240',
help='address on which to expose metrics (default ":9240")')
default='127.0.0.1:9240',
help='address on which to expose metrics (default "127.0.0.1:9240")')
parser.add_argument(
'-s',
metavar='STATHOST',
Expand Down