From 509c7c433f1539133d5cf61381ecd7f827003a97 Mon Sep 17 00:00:00 2001 From: paulj Date: Thu, 19 Feb 2026 15:09:37 -0500 Subject: [PATCH 1/2] docs(release-health): Simplify markup by removing unnecessary HTML Replace HTML list elements with plain markdown paragraphs for cleaner, more maintainable content. Co-Authored-By: Claude --- docs/product/releases/health/index.mdx | 48 ++++++++------------------ 1 file changed, 14 insertions(+), 34 deletions(-) diff --git a/docs/product/releases/health/index.mdx b/docs/product/releases/health/index.mdx index bb3101677f3696..50caa565a56254 100644 --- a/docs/product/releases/health/index.mdx +++ b/docs/product/releases/health/index.mdx @@ -30,45 +30,25 @@ Sentry distinguishes between two kinds of sessions: ### User-Mode/Application-Mode Sessions - +This type of session ends with the closing of the application or with the +application being sent to the background. If the application is in the +background for less than 30 seconds, we do not start the session again. +Applications that are active even on the background (for example, a music +player) should track the sessions manually for the background process. ### Server-Mode/Request-Mode Sessions - +These are typically high in volume since each session corresponds to a single +request. Sessions, whether application-mode or request-mode, are submitted to Sentry so you can track the usage and adoption of your application. When a user of your application experiences a crash, error, or abnormal exit, the session will be flagged accordingly, and Sentry calculates derived metrics. The metrics include data such as the number of users that didn't experience a crash in the specified time range. From 689cd85bf9450a0bf39457fad574465b5968e7ed Mon Sep 17 00:00:00 2001 From: Paul Jaffre Date: Thu, 19 Feb 2026 16:29:14 -0500 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: Kyle a.k.a. TechSquidTV --- docs/product/releases/health/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/product/releases/health/index.mdx b/docs/product/releases/health/index.mdx index 50caa565a56254..c58e48edf79837 100644 --- a/docs/product/releases/health/index.mdx +++ b/docs/product/releases/health/index.mdx @@ -43,7 +43,7 @@ player) should track the sessions manually for the background process. ### Server-Mode/Request-Mode Sessions -Server- or request-mode sessions roughly correspond to HTTP requests or RPC +Server or request-mode sessions roughly correspond to HTTP requests or RPC calls in a server setting. A session is started when the server receives a request, and terminates when the server sends a response.