You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -57,15 +57,15 @@ To start the exporter we use the [docker run](https://docs.docker.com/engine/ref
57
57
- To export NGINX metrics, run:
58
58
59
59
```console
60
-
docker run -p 9113:9113 nginx/nginx-prometheus-exporter:1.0.0 --nginx.scrape-uri=http://<nginx>:8080/stub_status
60
+
docker run -p 9113:9113 nginx/nginx-prometheus-exporter:1.1.0 --nginx.scrape-uri=http://<nginx>:8080/stub_status
61
61
```
62
62
63
63
where `<nginx>` is the IP address/DNS name, through which NGINX is available.
64
64
65
65
- To export NGINX Plus metrics, run:
66
66
67
67
```console
68
-
docker run -p 9113:9113 nginx/nginx-prometheus-exporter:1.0.0 --nginx.plus --nginx.scrape-uri=http://<nginx-plus>:8080/api
68
+
docker run -p 9113:9113 nginx/nginx-prometheus-exporter:1.1.0 --nginx.plus --nginx.scrape-uri=http://<nginx-plus>:8080/api
69
69
```
70
70
71
71
where `<nginx-plus>` is the IP address/DNS name, through which NGINX Plus is available.
@@ -112,12 +112,12 @@ Flags:
112
112
-h, --[no-]help Show context-sensitive help (also try --help-long and --help-man).
113
113
--web.listen-address=:9113 ...
114
114
Addresses on which to expose metrics and web interface. Repeatable for multiple addresses.
115
-
--web.config.file="" [EXPERIMENTAL] Path to configuration file that can enable TLS or authentication. See: https://github.com/prometheus/exporter-toolkit/blob/master/docs/web-configuration.md
115
+
--web.config.file="" Path to configuration file that can enable TLS or authentication. See: https://github.com/prometheus/exporter-toolkit/blob/master/docs/web-configuration.md
116
116
--web.telemetry-path="/metrics"
117
117
Path under which to expose metrics. ($TELEMETRY_PATH)
118
118
--[no-]nginx.plus Start the exporter for NGINX Plus. By default, the exporter is started for NGINX. ($NGINX_PLUS)
A URI or unix domain socket path for scraping NGINX or NGINX Plus metrics. For NGINX, the stub_status page must be available through the URI. For NGINX Plus -- the API. Repeatable for multiple URIs.
120
+
A URI or unix domain socket path for scraping NGINX or NGINX Plus metrics. For NGINX, the stub_status page must be available through the URI. For NGINX Plus -- the API. Repeatable for multiple URIs. ($SCRAPE_URI)
0 commit comments