Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Releases: google/go-metrics-stackdriver

v0.6.0

29 Sep 21:21
3f39b18
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.5.0...v0.6.0

v0.5.0

16 May 17:59
da14b6e
Compare
Choose a tag to compare

Added:

Removed:

  • Removes support for go versions < 1.15 due to updated dependencies.

Full Changelog: v0.4.0...v0.5.0

v0.4.0

01 Sep 17:53
2fe63ce
Compare
Choose a tag to compare

Added:

  • sink.Close method added to perform a final flush of metric data: #17 by @yarelm

v0.3.0

18 Jun 16:50
53151e0
Compare
Choose a tag to compare

Added:

  • config.Prefix to use a metric prefix other than go-metrics/: #8 by @daisy1754
  • config.MonitoredResource to set the monitored resource to something other than generic_task: #10 by @zdunecki
  • config.Logger so inject a custom log writer: #12 by @rf

v0.2.0

23 Dec 20:58
202ca3d
Compare
Choose a tag to compare

Added:

  • config.LabelExtractor: allows the stackdriver sink to extract label data and rewrite metric names.
  • config.DebugLogs: prints additional debug information to stderr
  • Package github.com/google/go-metrics-stackdriver/vault. This package holds an Extractor and Bucketer that are aware of common metric format names for HashiCorp Vault, specifically added to address hashicorp/vault#7928

Breaking Changes:

-type BucketFn func(string) []float64
+type BucketFn func([]string) []float64

The BucketFn type changed to better support bucketing of metrics before renaming (which happens before the config.LabelExtractor is executed.

v0.1.0

11 Dec 22:28
b5a9a41
Compare
Choose a tag to compare

First tagged version.