diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d06481e..bfb39ab7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ This file documents all notable changes to Aerospike Prometheus Exporter +## [v1.3.0](https://github.com/aerospike/aerospike-prometheus-exporter/releases/tag/v1.3.0) + +### Features +- [PROD-1742] - Added support for user statistics + - Per-user statistics are available in Aerospike 5.6+. + + ## [v1.2.1](https://github.com/aerospike/aerospike-prometheus-exporter/releases/tag/v1.2.1) ### Improvements diff --git a/Dockerfile b/Dockerfile index 7ed6327a..03e37be4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM golang:alpine AS builder -ARG VERSION=v1.2.1 +ARG VERSION=v1.3.0 ADD . $GOPATH/src/github.com/aerospike/aerospike-prometheus-exporter WORKDIR $GOPATH/src/github.com/aerospike/aerospike-prometheus-exporter diff --git a/README.md b/README.md index 0cc4f72e..0dff47ae 100644 --- a/README.md +++ b/README.md @@ -283,7 +283,7 @@ Packages will be generated under `./pkg/target/` directory. basic_auth_password="" ``` -- Use users' allowlist and blocklist configuration to filter out the users for which the statistics are to be fetched. The user statistics are available in Aerospike 5.6+. +- Use users' allowlist and blocklist configuration to filter out the users for which the statistics are to be fetched. The user statistics are available in Aerospike 5.6+. To fetch user statistics, the authenticated user must have `user-admin` privilege. ```toml [Aerospike] diff --git a/main.go b/main.go index 86f8d86c..9fed436b 100644 --- a/main.go +++ b/main.go @@ -25,7 +25,7 @@ var ( fullHost string config *Config - version = "v1.2.1" + version = "v1.3.0" ) func main() {