1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
# Releases
## v0.15.0
- Add `into = nil` parameter to `Metrics::Tags.normalize(tags, into = nil)` to allow reusing an existing array.
## v0.14.0
- Don't call `prepare` in `metrics/provider.rb`. It can cause circular loading warnings.
## v0.13.0
- Introduce `metrics:provider:list` command to list all available metrics providers.
## v0.12.1
### Introduce `Metrics::Config` to Expose `prepare` Hook
The `metrics` gem uses aspect-oriented programming to wrap existing methods to emit metrics. However, while there are some reasonable defaults for emitting metrics, it can be useful to customize the behavior and level of detail. To that end, the `metrics` gem now optionally loads a `config/metrics.rb` which includes a `prepare` hook that can be used to load additional providers.
``` ruby
# config/metrics.rb
def prepare
require 'metrics/provider/async'
require 'metrics/provider/async/http'
end
```
The `prepare` method is called immediately after the metrics backend is loaded. You can require any provider you want in this file, or even add your own custom providers.
|