Releases: yabeda-rb/yabeda-rails
Releases · yabeda-rb/yabeda-rails
0.9.0: Ability to choose controller name case in tags
Added
- Ability to switch controller name case in
controller
tag between :snake
and :camel
case. [@lewispb][] in #26
Changed
- Minimal Ruby version increased to 2.5. [@Envek][]
0.8.1: Status codes for responses with unhandled exceptions
Fixed
- Fill status codes for responses with unhandled exceptions. [@dks17][] in #24
0.8.0: Minimal dependencies and optional Apdex target metric
Added
- Add ability to expose custom Apdex target value for later use in graphs/alerts. [@Envek][] in #18
Changed
- Reduce number of dependencies by depending only on railties instead of the whole Ruby on Rails. [@lautis][] in #23.
0.7.2: Fix overwriting of already set metric tags
Fixed
- Fix undesirable overwrite of metric tags when global
default_tag
is declared with one of tag names that are being used by yabeda-rails, like controller
. [@liaden] in #19
0.7.1: Require removed railtie from yabeda gem
Changed
- Explicitly require previously removed railtie to fix case when it doesn't get required in
yabeda
gem (if yabeda
is required before rails
). See yabeda-rb/yabeda#15. @Envek
0.7.0: Move Yabeda configuration railtie to Yabeda itself
Removed
- Railtie to configure Yabeda – it is moved into Yabeda itself. Increase required Yabeda version to keep behavior for users who require only
yabeda-rails
in their Gemfiles. @Envek
0.6.0: Ability to add default/custom tags to metrics from controllers
Added
- Ability to add default/custom tags to metrics from controllers. @raivil in #13