Skip to content

Commit 6570275

Browse files
committed
Release 0.3.0
1 parent 80904d4 commit 6570275

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
### 0.3.0
4+
5+
FEATURES:
6+
* [32](https://github.com/nginxinc/nginx-prometheus-exporter/pull/32): Add nginxexporter_build_info metric.
7+
* [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.
8+
9+
UPGRADE:
10+
* Use the 0.3.0 image from our DockerHub: `nginx/nginx-prometheus-exporter:0.3.0`
11+
* Download the latest binaries from [GitHub releases page](https://github.com/nginxinc/nginx-prometheus-exporter/releases/tag/v0.3.0).
12+
13+
COMPATIBILITY:
14+
* NGINX 0.1.18 or newer.
15+
* NGINX Plus R14 or newer.
16+
317
## 0.2.0
418

519
FEATURES:
@@ -9,7 +23,7 @@ FEATURES:
923

1024
UPGRADE:
1125
* Use the 0.2.0 image from our DockerHub: `nginx/nginx-prometheus-exporter:0.2.0`
12-
* Download the latest binaries from [GitHub releases page](https://github.com/nginxinc/nginx-prometheus-exporter/tree/v0.2.0).
26+
* Download the latest binaries from [GitHub releases page](https://github.com/nginxinc/nginx-prometheus-exporter/releases/tag/v0.2.0).
1327

1428
COMPATIBILITY:
1529
* NGINX 0.1.18 or newer.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 0.2.0
1+
VERSION = 0.3.0
22
PREFIX = nginx/nginx-prometheus-exporter
33
TAG = $(VERSION)
44
GIT_COMMIT = $(shell git rev-parse --short HEAD)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ To start the exporter we use the [docker run](https://docs.docker.com/engine/ref
3030

3131
* To export NGINX metrics, run:
3232
```
33-
$ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.2.0 -nginx.scrape-uri http://<nginx>:8080/stub_status
33+
$ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.3.0 -nginx.scrape-uri http://<nginx>:8080/stub_status
3434
```
3535
where `<nginx>` is the IP address/DNS name, through which NGINX is available.
3636
3737
* To export NGINX Plus metrics, run:
3838
```
39-
$ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.2.0 -nginx.plus -nginx.scrape-uri http://<nginx-plus>:8080/api
39+
$ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.3.0 -nginx.plus -nginx.scrape-uri http://<nginx-plus>:8080/api
4040
```
4141
where `<nginx-plus>` is the IP address/DNS name, through which NGINX Plus is available.
4242

0 commit comments

Comments
 (0)