Skip to content

Commit

Permalink
Release v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
spkesan committed Jun 3, 2021
1 parent 4fd7f43 commit 864b8c3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var (
fullHost string
config *Config

version = "v1.2.1"
version = "v1.3.0"
)

func main() {
Expand Down

0 comments on commit 864b8c3

Please sign in to comment.