-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: armon/go-metrics => hashicorp/go-metrics
#24268
Changes from all commits
cbe1c2f
9ff6307
970ff19
344c319
3aa48ee
e2c0c25
7808f4c
8058c45
e24675f
98a1e95
e5c0bb6
25890f8
68a93c7
8efb40e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
```release-note:change | ||
vault: Replaces the direct package dependency on github.com/armon/go-metrics with github.com/hashicorp/go-metrics. | ||
``` |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2661,6 +2661,7 @@ listener "tcp" { | |
"Samples", | ||
"Timestamp", | ||
"Gauges", | ||
"PrecisionGauges", | ||
"Points", | ||
}) | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2025,6 +2025,7 @@ listener "tcp" { | |
"Samples", | ||
"Timestamp", | ||
"Gauges", | ||
"PrecisionGauges", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
"Points", | ||
}) | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,7 +71,7 @@ require ( | |
github.com/golang/protobuf v1.5.3 | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/google/go-github v17.0.0+incompatible | ||
github.com/google/go-metrics-stackdriver v0.2.0 | ||
github.com/google/go-metrics-stackdriver v0.6.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Version bump: |
||
github.com/google/tink/go v1.7.0 | ||
github.com/hashicorp-forge/bbolt v1.3.8-hc3 | ||
github.com/hashicorp/cap v0.4.1 | ||
|
@@ -96,6 +96,7 @@ require ( | |
github.com/hashicorp/go-kms-wrapping/wrappers/ocikms/v2 v2.0.7 | ||
github.com/hashicorp/go-kms-wrapping/wrappers/transit/v2 v2.0.8 | ||
github.com/hashicorp/go-memdb v1.3.4 | ||
github.com/hashicorp/go-metrics v0.5.3 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Version bump: |
||
github.com/hashicorp/go-multierror v1.1.1 | ||
github.com/hashicorp/go-plugin v1.6.0 | ||
github.com/hashicorp/go-raftchunking v0.6.3-0.20191002164813-7e9e8525653a | ||
|
@@ -382,7 +383,6 @@ require ( | |
github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed // indirect | ||
github.com/hashicorp/cronexpr v1.1.1 // indirect | ||
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect | ||
github.com/hashicorp/go-metrics v0.5.1 // indirect | ||
github.com/hashicorp/go-msgpack/v2 v2.1.1 // indirect | ||
github.com/hashicorp/go-secure-stdlib/fileutil v0.1.0 // indirect | ||
github.com/hashicorp/go-secure-stdlib/plugincontainer v0.3.0 // indirect | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,17 +9,16 @@ import ( | |
"fmt" | ||
"time" | ||
|
||
"github.com/hashicorp/go-secure-stdlib/parseutil" | ||
|
||
monitoring "cloud.google.com/go/monitoring/apiv3" | ||
"github.com/armon/go-metrics" | ||
"github.com/armon/go-metrics/circonus" | ||
"github.com/armon/go-metrics/datadog" | ||
"github.com/armon/go-metrics/prometheus" | ||
monitoring "cloud.google.com/go/monitoring/apiv3/v2" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Using |
||
stackdriver "github.com/google/go-metrics-stackdriver" | ||
stackdrivervault "github.com/google/go-metrics-stackdriver/vault" | ||
"github.com/hashicorp/cli" | ||
"github.com/hashicorp/go-metrics" | ||
"github.com/hashicorp/go-metrics/circonus" | ||
"github.com/hashicorp/go-metrics/datadog" | ||
"github.com/hashicorp/go-metrics/prometheus" | ||
"github.com/hashicorp/go-multierror" | ||
"github.com/hashicorp/go-secure-stdlib/parseutil" | ||
"github.com/hashicorp/hcl" | ||
"github.com/hashicorp/hcl/hcl/ast" | ||
"github.com/hashicorp/vault/helper/metricsutil" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hashicorp/go-metrics#151