diff --git a/CHANGELOG.md b/CHANGELOG.md index 06655118..182c48fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +### 0.8.0 + +CHANGES: +* [103](https://github.com/nginxinc/nginx-prometheus-exporter/pull/103): Switch to `gcr.io/distroless/static` image. Use a non-root user to run the exporter process by default. Thanks to [Alex SZAKALY](https://github.com/alex1989hu). +* Update Go version to 1.14 + +BUGFIXES: +* [99](https://github.com/nginxinc/nginx-prometheus-exporter/pull/99): Fix link to metrics path. Thanks to [Yoan Blanc](https://github.com/greut). +* [101](https://github.com/nginxinc/nginx-prometheus-exporter/pull/101): docs: fix dockerfile link. Thanks to [Eric Carboni](https://github.com/eric-hc). + +UPGRADE: +* Use the 0.8.0 image from our DockerHub: `nginx/nginx-prometheus-exporter:0.8.0` +* Download the latest binaries from [GitHub releases page](https://github.com/nginxinc/nginx-prometheus-exporter/releases/tag/v0.8.0). + +COMPATIBILITY: +* NGINX 0.1.18 or newer. +* NGINX Plus R19 or newer. + ### 0.7.0 FEATURES: @@ -123,4 +141,4 @@ COMPATIBILITY: ## 0.1.0 -* Initial release. \ No newline at end of file +* Initial release. diff --git a/Makefile b/Makefile index 98977877..fd787437 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 0.7.0 +VERSION = 0.8.0 TAG = $(VERSION) PREFIX = nginx/nginx-prometheus-exporter diff --git a/README.md b/README.md index e778fb58..88501e73 100644 --- a/README.md +++ b/README.md @@ -30,13 +30,13 @@ To start the exporter we use the [docker run](https://docs.docker.com/engine/ref * To export NGINX metrics, run: ``` - $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.7.0 -nginx.scrape-uri http://:8080/stub_status + $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.8.0 -nginx.scrape-uri http://:8080/stub_status ``` where `` is the IP address/DNS name, through which NGINX is available. * To export NGINX Plus metrics, run: ``` - $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.7.0 -nginx.plus -nginx.scrape-uri http://:8080/api + $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.8.0 -nginx.plus -nginx.scrape-uri http://:8080/api ``` where `` is the IP address/DNS name, through which NGINX Plus is available.