Releases: orijtech/prometheus-go-metrics-exporter
Release v0.0.6 (Fall collection)
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
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
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)
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.