-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Enhancements - Add mutual auth support for HTTPS between Prometheus and Exporter - Add new metrics, - dup_res_ask - dup_res_respond_read - dup_res_respond_no_read - xdr_bin_cemeteries - conflict-resolve-writes - PROD-1660 - Wait for network to be up, when starting under systemd - Update dependencies and Go version
- Loading branch information
Showing
11 changed files
with
248 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
module github.com/aerospike/aerospike-prometheus-exporter | ||
|
||
go 1.14 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 | ||
github.com/aerospike/aerospike-client-go v4.1.0+incompatible | ||
github.com/aerospike/aerospike-client-go v4.4.0+incompatible | ||
github.com/gobwas/glob v0.2.3 | ||
github.com/hashicorp/go-version v1.2.1 | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/hashicorp/go-version v1.3.0 | ||
github.com/jameskeane/bcrypt v0.0.0-20120420032655-c3cd44c1e20f | ||
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect | ||
github.com/onsi/ginkgo v1.14.0 // indirect | ||
github.com/prometheus/client_golang v1.9.0 | ||
github.com/prometheus/procfs v0.3.0 // indirect | ||
github.com/sirupsen/logrus v1.7.0 | ||
github.com/prometheus/client_golang v1.10.0 | ||
github.com/prometheus/common v0.20.0 // indirect | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/yuin/gopher-lua v0.0.0-20200816102855-ee81675732da // indirect | ||
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a // indirect | ||
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect | ||
google.golang.org/protobuf v1.25.0 // indirect | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect | ||
golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57 // indirect | ||
) |
Oops, something went wrong.