Features
- Auto-enable Rails structured logging when
enable_logs
is true (#2721)
Miscellaneous
-
Deprecate all Metrics related APIs #2726
Sentry no longer has the Metrics Beta offering so
all the following APIs linked to Metrics have been deprecated and will be removed in the next major.Sentry.init do |config| # ... config.metrics.enabled = true config.metrics.enable_code_locations = true config.metrics.before_emit = lambda {} end Sentry::Metrics.increment('button_click') Sentry::Metrics.distribution('page_load', 15.0, unit: 'millisecond') Sentry::Metrics.gauge('page_load', 15.0, unit: 'millisecond') Sentry::Metrics.set('user_view', 'jane') Sentry::Metrics.timing('how_long') { sleep(1) }