File tree Expand file tree Collapse file tree 5 files changed +9
-3
lines changed Expand file tree Collapse file tree 5 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ jobs:
114
114
env :
115
115
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
116
116
GOPATH : ${{ env.GOPATH }}
117
+ HOMEBREW_TAP_GITHUB_TOKEN : ${{ secrets.NGINX_PAT }}
117
118
- name : Push to Dockerhub
118
119
uses : docker/build-push-action@v2
119
120
with :
Original file line number Diff line number Diff line change 44
44
- tap :
45
45
owner : nginxinc
46
46
name : homebrew-tap
47
+ token : " {{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
47
48
folder : Formula
48
49
homepage : https://www.nginx.com/
49
50
description : NGINX Prometheus Exporter for NGINX and NGINX Plus
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ### 0.10.0
4
+
5
+ A list of changes can be found on Github at: [ Release v0.10.0] ( https://github.com/nginxinc/nginx-prometheus-exporter/releases/tag/v0.10.0 )
6
+
3
7
### 0.9.0
4
8
5
9
A list of changes can be found on Github at: [ Release v0.9.0] ( https://github.com/nginxinc/nginx-prometheus-exporter/releases/tag/v0.9.0 )
Original file line number Diff line number Diff line change 1
- VERSION = 0.9 .0
1
+ VERSION = 0.10 .0
2
2
TAG = $(VERSION )
3
3
PREFIX = nginx/nginx-prometheus-exporter
4
4
Original file line number Diff line number Diff line change @@ -30,13 +30,13 @@ To start the exporter we use the [docker run](https://docs.docker.com/engine/ref
30
30
31
31
* To export NGINX metrics, run:
32
32
```
33
- $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.9 .0 -nginx.scrape-uri=http://<nginx>:8080/stub_status
33
+ $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.10 .0 -nginx.scrape-uri=http://<nginx>:8080/stub_status
34
34
```
35
35
where `<nginx>` is the IP address/DNS name, through which NGINX is available.
36
36
37
37
* To export NGINX Plus metrics, run:
38
38
```
39
- $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.9 .0 -nginx.plus -nginx.scrape-uri=http://<nginx-plus>:8080/api
39
+ $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.10 .0 -nginx.plus -nginx.scrape-uri=http://<nginx-plus>:8080/api
40
40
```
41
41
where `<nginx-plus>` is the IP address/DNS name, through which NGINX Plus is available.
42
42
You can’t perform that action at this time.
0 commit comments