You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Introduce `compat` package to ease migration from the old armon/go-me…
…trice module name to the current hashicorp/go-metrics name (#169)
* Introduce `compat` package to ease migration from the old armon/go-metrics module name to the current hashicorp/go-metrics name
* Update README.md to include backwards compatibility info
* Fix typos
Prevent dogstatsd sink from clobbering the metric key for other sinks (……#156)
If using the Fanout sink and including the dogstatsd sink, any sinks sent the metric AFTER dogstatsd could see invalid metric names. This was due to some inadvertent modifications to the original metric key. The new implementation ensure that when modifying the orignial metric key, a new backing array is used and will have key parts copied into it instead of changing elements in the original metric key.