From 9522f4e39ee1aed817d7d70a89514ccc0ae1594a Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Wed, 24 Jul 2024 12:33:00 -0700 Subject: [PATCH] Release 1.3.0 (#782) --- Makefile | 2 +- README.md | 36 ++++++++++++++++++++++++++++++++++-- 2 files changed, 35 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 9801f05e..8b4bf696 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 1.1.0 +VERSION = 1.3.0 TAG = $(VERSION) PREFIX = nginx/nginx-prometheus-exporter diff --git a/README.md b/README.md index 5680a9d3..401d3917 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,8 @@ NGINX Prometheus exporter makes it possible to monitor NGINX or NGINX Plus using - [Binaries](#binaries) - [Homebrew](#homebrew) - [Snap](#snap) + - [Scoop](#scoop) + - [Nix](#nix) - [Building the Exporter](#building-the-exporter) - [Building the Docker Image](#building-the-docker-image) - [Building the Binary](#building-the-binary) @@ -111,7 +113,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.1.0 --nginx.scrape-uri=http://:8080/stub_status + docker run -p 9113:9113 nginx/nginx-prometheus-exporter:1.3.0 --nginx.scrape-uri=http://:8080/stub_status ``` where `` is the IP address/DNS name, through which NGINX is available. @@ -119,7 +121,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.1.0 --nginx.plus --nginx.scrape-uri=http://:8080/api + docker run -p 9113:9113 nginx/nginx-prometheus-exporter:1.3.0 --nginx.plus --nginx.scrape-uri=http://:8080/api ``` where `` is the IP address/DNS name, through which NGINX Plus is available. @@ -480,6 +482,36 @@ You can install the NGINX Prometheus Exporter from the [Snap Store](https://snap snap install nginx-prometheus-exporter ``` +### Scoop + +You can add the NGINX Scoop bucket with + +```console +scoop bucket add nginx https://github.com/nginxinc/scoop-bucket.git +``` + +and then install the package with + +```console +scoop install nginx-prometheus-exporter +``` + +### Nix + +First include NUR in your packageOverrides as explained in the [NUR documentation](https://github.com/nix-community/NUR#installation). + +Then you can use the exporter with the following command: + +```console +nix-shell --packages nur.repos.nginx.nginx-prometheus-exporter +``` + +or install it with: + +```console +nix-env -f '' -iA nur.repos.nginx.nginx-prometheus-exporter +``` + ## Building the Exporter You can build the exporter using the provided Makefile. Before building the exporter, make sure the following software