Skip to content

Commit

Permalink
0.6.0: Ability to add default/custom tags to metrics from controllers
Browse files Browse the repository at this point in the history
  • Loading branch information
Envek committed Aug 6, 2020
1 parent bd03daa commit 583b476
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 0.6.0 - 2020-08-06

### Added

- Ability to add default/custom tags to metrics from controllers. @raivil in [#13](https://github.com/yabeda-rb/yabeda-rails/pull/13)

## 0.5.0 - 2020-03-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ end
class ApplicationController < ActionController::Base
def append_info_to_payload(payload)
super
{ importance: extract_importance(params) }
payload[:importance] = extract_importance(params)
end
end
```
Expand Down
2 changes: 1 addition & 1 deletion lib/yabeda/rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Yabeda
module Rails
VERSION = "0.5.0"
VERSION = "0.6.0"
end
end

0 comments on commit 583b476

Please sign in to comment.