From c40dad00c09dd414404e33376bceddb57c5c0a3a Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Mon, 8 Jan 2024 11:33:00 -0800 Subject: [PATCH 1/2] Release 1.1.0 --- Makefile | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 60b04486..e463dcb8 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 1.0.0 +VERSION = 1.1.0 TAG = $(VERSION) PREFIX = nginx/nginx-prometheus-exporter diff --git a/README.md b/README.md index 727f73f1..8b75f12f 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ To start the exporter we use the [docker run](https://docs.docker.com/engine/ref - To export NGINX metrics, run: ```console - docker run -p 9113:9113 nginx/nginx-prometheus-exporter:1.0.0 --nginx.scrape-uri=http://:8080/stub_status + docker run -p 9113:9113 nginx/nginx-prometheus-exporter:1.1.0 --nginx.scrape-uri=http://:8080/stub_status ``` where `` is the IP address/DNS name, through which NGINX is available. @@ -65,7 +65,7 @@ To start the exporter we use the [docker run](https://docs.docker.com/engine/ref - To export NGINX Plus metrics, run: ```console - docker run -p 9113:9113 nginx/nginx-prometheus-exporter:1.0.0 --nginx.plus --nginx.scrape-uri=http://:8080/api + docker run -p 9113:9113 nginx/nginx-prometheus-exporter:1.1.0 --nginx.plus --nginx.scrape-uri=http://:8080/api ``` where `` is the IP address/DNS name, through which NGINX Plus is available. From 9818bfb896213f159507e43513f33d0afad1f0e1 Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Mon, 8 Jan 2024 17:46:56 -0800 Subject: [PATCH 2/2] Update usage --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8b75f12f..8582efe7 100644 --- a/README.md +++ b/README.md @@ -112,12 +112,12 @@ Flags: -h, --[no-]help Show context-sensitive help (also try --help-long and --help-man). --web.listen-address=:9113 ... Addresses on which to expose metrics and web interface. Repeatable for multiple addresses. - --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 + --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 --web.telemetry-path="/metrics" Path under which to expose metrics. ($TELEMETRY_PATH) --[no-]nginx.plus Start the exporter for NGINX Plus. By default, the exporter is started for NGINX. ($NGINX_PLUS) --nginx.scrape-uri=http://127.0.0.1:8080/stub_status ... - 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. + 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) --[no-]nginx.ssl-verify Perform SSL certificate verification. ($SSL_VERIFY) --nginx.ssl-ca-cert="" Path to the PEM encoded CA certificate file used to validate the servers SSL certificate. ($SSL_CA_CERT) --nginx.ssl-client-cert=""