Skip to content

Commit

Permalink
Release v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
spkesan committed Aug 1, 2021
1 parent 4032730 commit 5f20459
Show file tree
Hide file tree
Showing 3 changed files with 271 additions and 215 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
This file documents all notable changes to Aerospike Prometheus Exporter


## [v1.4.0](https://github.com/aerospike/aerospike-prometheus-exporter/releases/tag/v1.4.0)

### Improvements
- [TOOLS-1740] - Export all histogram buckets by default for latency metrics
- Adds new configuration `latency_buckets_count` to control number of buckets to be exported
- Default: `0` (export all buckets)
- Example, `latency_buckets_count=5` will export first five buckets i.e. `<=1ms`, `<=2ms`, `<=4ms`, `<=8ms` and `<=16ms`


## [v1.3.0](https://github.com/aerospike/aerospike-prometheus-exporter/releases/tag/v1.3.0)

### Features
Expand Down
10 changes: 6 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ go 1.16

require (
github.com/BurntSushi/toml v0.3.1
github.com/aerospike/aerospike-client-go/v5 v5.0.2
github.com/aerospike/aerospike-client-go/v5 v5.2.0
github.com/gobwas/glob v0.2.3
github.com/hashicorp/go-version v1.3.0
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
github.com/prometheus/client_golang v1.10.0
github.com/prometheus/common v0.25.0 // indirect
github.com/prometheus/client_golang v1.11.0
github.com/prometheus/common v0.30.0 // indirect
github.com/prometheus/procfs v0.7.1 // indirect
github.com/sirupsen/logrus v1.8.1
github.com/yuin/gopher-lua v0.0.0-20210529063254-f4c35e4016d9 // indirect
golang.org/x/sys v0.0.0-20210601080250-7ecdf8ef093b // indirect
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
google.golang.org/protobuf v1.27.1 // indirect
)
Loading

0 comments on commit 5f20459

Please sign in to comment.