You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,13 @@
20
20
- Add a Tombstone integration that detects native crashes without relying on the NDK integration, but instead using `ApplicationExitInfo.REASON_CRASH_NATIVE` on Android 12+. ([#4933](https://github.com/getsentry/sentry-java/pull/4933))
21
21
- Currently exposed via options as an _internal_ API only.
22
22
- If enabled alongside the NDK integration, crashes will be reported as two separate events. Users should enable only one; deduplication between both integrations will be added in a future release.
23
+
- Add Sentry Metrics to Java SDK ([#5026](https://github.com/getsentry/sentry-java/pull/5026))
24
+
- Metrics are enabled by default
25
+
- APIs are namespaced under `Sentry.metrics()`
26
+
- We offer the following APIs:
27
+
- `count`: A metric that increments counts
28
+
- `gauge`: A metric that tracks a value that can go up or down
29
+
- `distribution`: A metric that tracks the statistical distribution of values
0 commit comments