Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
st0012 committed Feb 1, 2023
1 parent 8912ca4 commit 797a51b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,22 @@
end
```

- Support `Sentry::Transaction#set_measurement` [#1838](https://github.com/getsentry/sentry-ruby/pull/1838)

Usage:

```rb
# enable this experimental feature first
Sentry.init do |config|
# other configs
config.experiments.custom_measurements = true
end

# in your app
transaction = Sentry.get_current_scope.get_transaction
transaction.set_measurement("metrics.foo", 0.5, "millisecond")
```

### Bug Fixes

- Support redis-rb 5.0+ [#1963](https://github.com/getsentry/sentry-ruby/pull/1963)
Expand Down

0 comments on commit 797a51b

Please sign in to comment.