From 3eb23b3f078c21f92083dc85bf943bc580c9a556 Mon Sep 17 00:00:00 2001 From: Joris Bayer Date: Tue, 18 Nov 2025 14:44:06 +0100 Subject: [PATCH 1/2] doc(proguard): No inbound filters --- docs/concepts/data-management/filtering/index.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/concepts/data-management/filtering/index.mdx b/docs/concepts/data-management/filtering/index.mdx index 2f4dcc88a0638..3af6c4731ccc5 100644 --- a/docs/concepts/data-management/filtering/index.mdx +++ b/docs/concepts/data-management/filtering/index.mdx @@ -151,6 +151,12 @@ To use inbound data filters for error messages, keep the following in mind: To ensure you're adding the correct message to the inbound filter setting, check the JSON for an event in the issue. The filter by error message setting matches the data found in the "title" field near the end of the file. + + +Matching on `{exception.type}` is not supported for ProGuard events, because deobfuscation of class names happens after ingestion. + + + ### Releases To filter releases, keep the following in mind: From 9d74ea92dfa5af860b17f034491fc0fcf7b8eead Mon Sep 17 00:00:00 2001 From: Joris Bayer Date: Tue, 18 Nov 2025 15:02:37 +0100 Subject: [PATCH 2/2] Apply suggestion from @jjbayer --- docs/concepts/data-management/filtering/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/data-management/filtering/index.mdx b/docs/concepts/data-management/filtering/index.mdx index 3af6c4731ccc5..7f1a46cd2b214 100644 --- a/docs/concepts/data-management/filtering/index.mdx +++ b/docs/concepts/data-management/filtering/index.mdx @@ -153,7 +153,7 @@ To ensure you're adding the correct message to the inbound filter setting, check -Matching on `{exception.type}` is not supported for ProGuard events, because deobfuscation of class names happens after ingestion. +Matching on the deobfuscated `{exception.type}` is not supported for ProGuard events, because deobfuscation of class names happens after ingestion.