diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bf0f6b1..37795314 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +### 0.3.0 + +FEATURES: +* [32](https://github.com/nginxinc/nginx-prometheus-exporter/pull/32): Add nginxexporter_build_info metric. +* [31](https://github.com/nginxinc/nginx-prometheus-exporter/pull/31): Implement nginx_up and nginxplus_up metrics. Add -nginx.timeout cli argument for setting a timeout for scrapping metrics from NGINX or NGINX Plus. + +UPGRADE: +* Use the 0.3.0 image from our DockerHub: `nginx/nginx-prometheus-exporter:0.3.0` +* Download the latest binaries from [GitHub releases page](https://github.com/nginxinc/nginx-prometheus-exporter/releases/tag/v0.3.0). + +COMPATIBILITY: +* NGINX 0.1.18 or newer. +* NGINX Plus R14 or newer. + ## 0.2.0 FEATURES: @@ -9,7 +23,7 @@ FEATURES: UPGRADE: * Use the 0.2.0 image from our DockerHub: `nginx/nginx-prometheus-exporter:0.2.0` -* Download the latest binaries from [GitHub releases page](https://github.com/nginxinc/nginx-prometheus-exporter/tree/v0.2.0). +* Download the latest binaries from [GitHub releases page](https://github.com/nginxinc/nginx-prometheus-exporter/releases/tag/v0.2.0). COMPATIBILITY: * NGINX 0.1.18 or newer. diff --git a/Makefile b/Makefile index ad7b72ba..18e41892 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 0.2.0 +VERSION = 0.3.0 PREFIX = nginx/nginx-prometheus-exporter TAG = $(VERSION) GIT_COMMIT = $(shell git rev-parse --short HEAD) diff --git a/README.md b/README.md index bdd237d3..6312c9ac 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.2.0 -nginx.scrape-uri http://:8080/stub_status + $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.3.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.2.0 -nginx.plus -nginx.scrape-uri http://:8080/api + $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.3.0 -nginx.plus -nginx.scrape-uri http://:8080/api ``` where `` is the IP address/DNS name, through which NGINX Plus is available.