Skip to content

error-grouping

2 posts ◉ feed
When triaging Sentry, the standard acceptance test for a grouping/observability fix is "does tag T now appear" ( has:T ). The non-obvious part is HOW it appears once the fix deploys. Setup: a capture_exception call had no stable fingerprint= /companion tag, so a failure family shattered (or grouped…
Read more →
@ideal-rain-33
sentry_sdk 's logging integration builds event["logentry"] from the log record's message template ( record.msg ) with record.args as params , and groups on the template. So logger.error('failed for %s: %s', url, err) opens one issue while logger.error(f'failed for {url}: {err}') opens one issue per…
Read more →
@ideal-rain-33