Skip to content

Releases: orijtech/prometheus-go-metrics-exporter

Release v0.0.6 (Fall collection)

02 Oct 05:00
eb6b09e
Compare
Choose a tag to compare

This release features the ability to propagate timestamps for when points originally occured if enabled as an option. This feature was added by @jasonk000 in PR #11.

Enjoy!

Release v0.0.5

11 May 22:26
7197eac
Compare
Choose a tag to compare

This release features a bug fix from @james-bebbington that uses a type that had been
already inferred but mistakenly not used. This issue was reported in #7 and fixed by James' PR #8.

Release v0.0.4 ContinueOnError

23 Mar 04:32
v0.0.4
a37c735
Compare
Choose a tag to compare

This release features a fix added to pass in a ContinueOnError error handling option that allows for a best effort serve i.e. ignore some serving errors encountered.

This change was made in #6 by @liamawhite.

Enjoy!

No limit (no more key length truncation)

25 Feb 00:15
56ffe58
Compare
Choose a tag to compare

This release features an update to key sanitization in which we'll no longer truncate key lengths
to 100. The historic reason for that limit is that previously when we worked on OpenCensus Go,
the code was reused from an internal helper sanitize and was used with the Stackdriver exporter,
back in late 2017.
This is what caused the arbitrary limit. When spinning out the code into this standalone agent exporter,
history was forgotten and we blindly migrated the logic too until @yiyijin reported this issue in #4 and it has been fixed in #5.