diff --git a/src/sentry/grouping/strategies/configurations.py b/src/sentry/grouping/strategies/configurations.py index ca0a0876016f44..b8ba2ba57abc5a 100644 --- a/src/sentry/grouping/strategies/configurations.py +++ b/src/sentry/grouping/strategies/configurations.py @@ -33,9 +33,9 @@ # strategy to disable itself. Recursion is detected by the outer # strategy. "is_recursion": False, - # This turns on the automatic message trimming by the message - # strategy. - "trim_message": False, + # This turns on the automatic message trimming and parameter substitution + # by the message strategy. + "normalize_message": False, # newstyle: enables the legacy function logic. This is only used # by the newstyle:2019-04-05 strategy. Once this is no longer used # this can go away entirely. @@ -66,7 +66,7 @@ "use_package_fallback": False, # Remove platform differences in native frames "native_fuzzing": False, - # Ignore exception types for native if they are platform specific error + # Ignore exception types for native if they are platform-specific error # codes. Normally SDKs are supposed to disable error-type grouping with # the `synthetic` flag in the event, but a lot of error types we can # also detect on the backend. @@ -105,7 +105,7 @@ def register_strategy_config(id, **kwargs): * Some known weaknesses with regards to grouping of native frames """, initial_context={ - "trim_message": False, + "normalize_message": False, }, enhancements_base="legacy:2019-03-12", ) @@ -135,7 +135,7 @@ def register_strategy_config(id, **kwargs): "javascript_fuzzing": True, "contextline_platforms": ("javascript", "node", "python", "php", "ruby"), "with_context_line_file_origin_bug": True, - "trim_message": True, + "normalize_message": True, "with_exception_value_fallback": True, }, enhancements_base="common:2019-03-23", @@ -230,7 +230,7 @@ def register_strategy_config(id, **kwargs): hidden=True, initial_context={ "legacy_function_logic": False, - "trim_message": True, + "normalize_message": True, "with_exception_value_fallback": True, }, ) diff --git a/src/sentry/grouping/strategies/message.py b/src/sentry/grouping/strategies/message.py index ba0bc972ef14fe..f66ebb3950bbfa 100644 --- a/src/sentry/grouping/strategies/message.py +++ b/src/sentry/grouping/strategies/message.py @@ -13,7 +13,9 @@ from sentry.interfaces.message import Message from sentry.utils import metrics -_irrelevant_re = re.compile( +_parameterization_regex = re.compile( + # The `(?x)` tells the regex compiler to ingore comments and unescaped whitespace, + # so we can use newlines and indentation for better legibility. r"""(?x) (?P [a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)* @@ -96,32 +98,44 @@ \b\d+\b ) | (?P + # The `=` here guarantees we'll only match the value half of key-value pairs, + # rather than all quoted strings ='([\w\s]+)' ) """ ) -def trim_message_for_grouping(string: str) -> str: - """Replace values from a group's message to hide P.I.I. and improve grouping when no - stacktrace available. +def normalize_message_for_grouping(message: str) -> str: + """Replace values from a group's message with placeholders (to hide P.I.I. and + improve grouping when no stacktrace is available) and trim to at most 2 lines. """ - s = "\n".join(islice((x for x in string.splitlines() if x.strip()), 2)).strip() - if s != string: - s += "..." + trimmed = "\n".join( + # If there are multiple lines, grab the first two non-empty ones. + islice( + (x for x in message.splitlines() if x.strip()), + 2, + ) + ) + if trimmed != message: + trimmed += "..." def _handle_match(match: Match[str]) -> str: - # e.g. hex, 0x40000015 + # Find the first (should be only) non-None match entry, and sub in the placeholder. For + # example, given the groupdict item `('hex', '0x40000015')`, this returns '' as a + # replacement for the original value in the string. for key, value in match.groupdict().items(): if value is not None: - # key can be one of the keys from _irrelevant_re, thus, not a large cardinality - # tracking the key helps distinguish what kinds of replacements are happening + # `key` can only be one of the keys from `_parameterization_regex`, thus, not a large + # cardinality. Tracking the key helps distinguish what kinds of replacements are happening. metrics.incr("grouping.value_trimmed_from_message", tags={"key": key}) - # For quoted_str we want to preserver the = symbol + # For `quoted_str` we want to preserve the `=` symbol, which we include in + # the match in order not to replace random quoted strings in contexts other + # than key-value pairs return f"=<{key}>" if key == "quoted_str" else f"<{key}>" return "" - return _irrelevant_re.sub(_handle_match, s) + return _parameterization_regex.sub(_handle_match, trimmed) @strategy(ids=["message:v1"], interface=Message, score=0) @@ -129,14 +143,14 @@ def _handle_match(match: Match[str]) -> str: def message_v1( interface: Message, event: Event, context: GroupingContext, **meta: Any ) -> ReturnedVariants: - if context["trim_message"]: - message_in = interface.message or interface.formatted or "" - message_trimmed = trim_message_for_grouping(message_in) - hint = "stripped common values" if message_in != message_trimmed else None + if context["normalize_message"]: + raw = interface.message or interface.formatted or "" + normalized = normalize_message_for_grouping(raw) + hint = "stripped event-specific values" if raw != normalized else None return { context["variant"]: GroupingComponent( id="message", - values=[message_trimmed], + values=[normalized], hint=hint, ) } diff --git a/src/sentry/grouping/strategies/newstyle.py b/src/sentry/grouping/strategies/newstyle.py index 0d7559610835e1..89ca60cedc2d44 100644 --- a/src/sentry/grouping/strategies/newstyle.py +++ b/src/sentry/grouping/strategies/newstyle.py @@ -15,7 +15,7 @@ strategy, ) from sentry.grouping.strategies.hierarchical import get_stacktrace_hierarchy -from sentry.grouping.strategies.message import trim_message_for_grouping +from sentry.grouping.strategies.message import normalize_message_for_grouping from sentry.grouping.strategies.utils import has_url_origin, remove_non_stacktrace_variants from sentry.grouping.utils import hash_from_values from sentry.interfaces.exception import Exception as ChainedException @@ -642,12 +642,12 @@ def single_exception( id="value", ) - value_in = interface.value - if value_in is not None: - value_trimmed = trim_message_for_grouping(value_in) - hint = "stripped common values" if value_in != value_trimmed else None - if value_trimmed: - value_component.update(values=[value_trimmed], hint=hint) + raw = interface.value + if raw is not None: + normalized = normalize_message_for_grouping(raw) + hint = "stripped event-specific values" if raw != normalized else None + if normalized: + value_component.update(values=[normalized], hint=hint) if stacktrace_component.contributes and value_component.contributes: value_component.update( diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_bad_duplicate_id.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_bad_duplicate_id.pysnap index d2513ad3a68c01..7e5f112229b358 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_bad_duplicate_id.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_bad_duplicate_id.pysnap @@ -16,7 +16,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_bad_missing_parent.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_bad_missing_parent.pysnap index ac612c5099cb84..9261ac33b386fa 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_bad_missing_parent.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_bad_missing_parent.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_bad_out_of_sequence.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_bad_out_of_sequence.pysnap index c1bcfdf500cc7f..e9e29a6df7c7cb 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_bad_out_of_sequence.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_bad_out_of_sequence.pysnap @@ -11,7 +11,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_exception.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_exception.pysnap index ad254e82f3d55b..0e924627ae81e2 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_exception.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_exception.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_type_under_nested_groups.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_type_under_nested_groups.pysnap index 6a2037d5aa81ae..b13b777866c864 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_type_under_nested_groups.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_type_under_nested_groups.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_type_with_different_values.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_type_with_different_values.pysnap index 07742bcba719c1..fb02b70111ce49 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_type_with_different_values.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_type_with_different_values.pysnap @@ -11,7 +11,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_type_with_similar_values.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_type_with_similar_values.pysnap index 298d0fe05d751f..d07c3ae6f96360 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_type_with_similar_values.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_type_with_similar_values.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_type_with_similar_values_and_children.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_type_with_similar_values_and_children.pysnap index cb08868eaf8e54..d47a77fc071206 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_type_with_similar_values_and_children.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_one_type_with_similar_values_and_children.pysnap @@ -11,7 +11,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_two_types.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_two_types.pysnap index ca0ed1b538bd80..17aaad8eb9fd01 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_two_types.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_two_types.pysnap @@ -11,12 +11,12 @@ app: exception* type* "MyApp.SuchWowException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* "MyApp.AmazingException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_two_types_under_nested_groups.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_two_types_under_nested_groups.pysnap index 80595ff76efccd..24a0e4b185345d 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_two_types_under_nested_groups.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/exception_groups_two_types_under_nested_groups.pysnap @@ -11,12 +11,12 @@ app: exception* type* "MyApp.CoolException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* "MyApp.BeansException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/javascript_exception_fallback_to_message.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/javascript_exception_fallback_to_message.pysnap index 1b6cb89598e57f..165be8a62cf253 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/javascript_exception_fallback_to_message.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/javascript_exception_fallback_to_message.pysnap @@ -10,5 +10,5 @@ app: exception* type* "Error" - value* (stripped common values) + value* (stripped event-specific values) "Loading chunk failed.\n(timeout: " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/javascript_exception_fallback_to_message_whistles.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/javascript_exception_fallback_to_message_whistles.pysnap index 899fdd601d8501..ce8f871dc39b29 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/javascript_exception_fallback_to_message_whistles.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/javascript_exception_fallback_to_message_whistles.pysnap @@ -10,5 +10,5 @@ app: exception* type* "Error" - value* (stripped common values) + value* (stripped event-specific values) ": logged in (error ) time spent --- correlation id , checksum (md5 ); payload timestamp (submitted from via via ) at offset " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/message_with_key_pair_values.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/message_with_key_pair_values.pysnap index fe2f9f67be438f..ddf6fa0b6c722e 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/message_with_key_pair_values.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/mobile@2021_02_12/message_with_key_pair_values.pysnap @@ -5,5 +5,5 @@ default: hash: "e02854e73673e108fe54768e0f19317b" component: default* - message* (stripped common values) + message* (stripped event-specific values) "Error key1= key2= key3=False key4= other_date=datetime.datetime(, , , , , tzinfo=d..." diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/android_anr.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/android_anr.pysnap index 1316769ad78503..57023c2a2d3032 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/android_anr.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/android_anr.pysnap @@ -767,7 +767,7 @@ app: "getChildAt" type* "ApplicationNotResponding" - value* (stripped common values) + value* (stripped event-specific values) "Application Not Responding for at least ms." threads (ignored because this variant does not have a contributing stacktrace, but the system variant does) stacktrace diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_bad_duplicate_id.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_bad_duplicate_id.pysnap index c2ad80b503c64e..cfcd492c1366fd 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_bad_duplicate_id.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_bad_duplicate_id.pysnap @@ -16,7 +16,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_bad_missing_parent.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_bad_missing_parent.pysnap index 264116616eccee..d493836a5af1fc 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_bad_missing_parent.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_bad_missing_parent.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_bad_out_of_sequence.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_bad_out_of_sequence.pysnap index 8c2043b2169908..318d8629c67ecb 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_bad_out_of_sequence.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_bad_out_of_sequence.pysnap @@ -11,7 +11,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_exception.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_exception.pysnap index bd6926c498024a..572c0f3f47d4ee 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_exception.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_exception.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_type_under_nested_groups.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_type_under_nested_groups.pysnap index ec1fcd64d2457d..e8396775310085 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_type_under_nested_groups.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_type_under_nested_groups.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_type_with_different_values.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_type_with_different_values.pysnap index 4e581e0956b8da..d58f8dbf6ae3a5 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_type_with_different_values.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_type_with_different_values.pysnap @@ -11,7 +11,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_type_with_similar_values.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_type_with_similar_values.pysnap index 50e5bd30ceb9fa..58a8ae9aaa1270 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_type_with_similar_values.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_type_with_similar_values.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_type_with_similar_values_and_children.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_type_with_similar_values_and_children.pysnap index c527a4927f5483..e68a880b300950 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_type_with_similar_values_and_children.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_one_type_with_similar_values_and_children.pysnap @@ -11,7 +11,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_two_types.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_two_types.pysnap index 30f14e0bff4c09..318ff8eb167d08 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_two_types.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_two_types.pysnap @@ -11,12 +11,12 @@ app: exception* type* "MyApp.SuchWowException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* "MyApp.AmazingException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_two_types_under_nested_groups.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_two_types_under_nested_groups.pysnap index 84bed283976951..9eb1e65f49b1ea 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_two_types_under_nested_groups.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/exception_groups_two_types_under_nested_groups.pysnap @@ -11,12 +11,12 @@ app: exception* type* "MyApp.CoolException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* "MyApp.BeansException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_125_event_126.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_125_event_126.pysnap index c5544275e2a909..6166a90d9c7b40 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_125_event_126.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_125_event_126.pysnap @@ -139,7 +139,7 @@ app: "ImageLoaderMachOCompressed::rebase" type (ignored because exception is synthetic) "EXC_BAD_ACCESS / 0x00000032" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: EXC_BAD_ACCESS / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_289_event_312.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_289_event_312.pysnap index 70bb052e60fa64..564598a513a9ea 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_289_event_312.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_289_event_312.pysnap @@ -91,7 +91,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_294_event_294.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_294_event_294.pysnap index d9e6112f4b5fd0..49e94ed3b69276 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_294_event_294.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_294_event_294.pysnap @@ -140,7 +140,7 @@ app: frame (marked out of app by stack trace rule (family:native package:/usr/lib/** -app)) type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_294_event_329.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_294_event_329.pysnap index fe0f8da61a1a71..b991c5714317d1 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_294_event_329.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_294_event_329.pysnap @@ -155,7 +155,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_313_event_313.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_313_event_313.pysnap index 79253c7143a5e6..39f74eed2ec6df 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_313_event_313.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_313_event_313.pysnap @@ -188,7 +188,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_313_event_333.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_313_event_333.pysnap index 0b83b2eebc4993..29cad5d2027f39 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_313_event_333.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_313_event_333.pysnap @@ -193,7 +193,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_319_event_321.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_319_event_321.pysnap index 6d764bdb33a1d3..2e7e5ccb57e213 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_319_event_321.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_319_event_321.pysnap @@ -191,7 +191,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_432_event_432.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_432_event_432.pysnap index 95e8e7bceec453..b933aedd82a2fd 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_432_event_432.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_432_event_432.pysnap @@ -125,7 +125,7 @@ app: "crashpad::`anonymous namespace'::HandleAbortSignal" type (ignored because exception is synthetic) "0x40000015 / 0x00000001" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_432_event_453.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_432_event_453.pysnap index c90854544bec6d..b200dea3966913 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_432_event_453.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_432_event_453.pysnap @@ -125,7 +125,7 @@ app: "crashpad::`anonymous namespace'::HandleAbortSignal" type (ignored because exception is synthetic) "0x40000015 / 0x00000001" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_445_event_445.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_445_event_445.pysnap index 6280f78b722fd5..e755b06ff31161 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_445_event_445.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/group_445_event_445.pysnap @@ -146,7 +146,7 @@ app: "crashpad::`anonymous namespace'::HandleAbortSignal" type (ignored because exception is synthetic) "0x40000015 / 0x00000001" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/javascript_exception_fallback_to_message.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/javascript_exception_fallback_to_message.pysnap index 7d241f219e5b8f..de1fd445c429e0 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/javascript_exception_fallback_to_message.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/javascript_exception_fallback_to_message.pysnap @@ -10,5 +10,5 @@ app: exception* type* "Error" - value* (stripped common values) + value* (stripped event-specific values) "Loading chunk failed.\n(timeout: " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/javascript_exception_fallback_to_message_whistles.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/javascript_exception_fallback_to_message_whistles.pysnap index 5e92a014843b7c..02a234b0fc0427 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/javascript_exception_fallback_to_message_whistles.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/javascript_exception_fallback_to_message_whistles.pysnap @@ -10,5 +10,5 @@ app: exception* type* "Error" - value* (stripped common values) + value* (stripped event-specific values) ": logged in (error ) time spent --- correlation id , checksum (md5 ); payload timestamp (submitted from via via ) at offset " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/macos_amd_driver.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/macos_amd_driver.pysnap index d5a31373244a3f..9e5be55ea2da56 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/macos_amd_driver.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/macos_amd_driver.pysnap @@ -154,7 +154,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/macos_intel_driver.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/macos_intel_driver.pysnap index 6d776e54338b8d..6dc35c5165cec7 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/macos_intel_driver.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/macos_intel_driver.pysnap @@ -182,7 +182,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/message_with_key_pair_values.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/message_with_key_pair_values.pysnap index fe2f9f67be438f..ddf6fa0b6c722e 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/message_with_key_pair_values.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_04_17/message_with_key_pair_values.pysnap @@ -5,5 +5,5 @@ default: hash: "e02854e73673e108fe54768e0f19317b" component: default* - message* (stripped common values) + message* (stripped event-specific values) "Error key1= key2= key3=False key4= other_date=datetime.datetime(, , , , , tzinfo=d..." diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/android_anr.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/android_anr.pysnap index e3fba38d7e2162..ec99952516115f 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/android_anr.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/android_anr.pysnap @@ -767,7 +767,7 @@ app: "getChildAt" type* "ApplicationNotResponding" - value* (stripped common values) + value* (stripped event-specific values) "Application Not Responding for at least ms." threads (ignored because this variant does not have a contributing stacktrace, but the system variant does) stacktrace diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_bad_duplicate_id.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_bad_duplicate_id.pysnap index d14c99ed6b4d3c..fd99440cf4a25e 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_bad_duplicate_id.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_bad_duplicate_id.pysnap @@ -16,7 +16,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_bad_missing_parent.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_bad_missing_parent.pysnap index 201324fd7a4ab7..8eabc0eb629650 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_bad_missing_parent.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_bad_missing_parent.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_bad_out_of_sequence.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_bad_out_of_sequence.pysnap index b9171860190f52..cdc65f7d991dfc 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_bad_out_of_sequence.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_bad_out_of_sequence.pysnap @@ -11,7 +11,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_exception.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_exception.pysnap index 1c00f8dec658d2..399e7693d45469 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_exception.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_exception.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_type_under_nested_groups.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_type_under_nested_groups.pysnap index 8161916d1a3bbc..f4c67b2c939c74 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_type_under_nested_groups.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_type_under_nested_groups.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_type_with_different_values.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_type_with_different_values.pysnap index 63986311920ed7..f3e1bd8142b679 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_type_with_different_values.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_type_with_different_values.pysnap @@ -11,7 +11,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_type_with_similar_values.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_type_with_similar_values.pysnap index 3c1d8d340a9087..19150d37c1f7b2 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_type_with_similar_values.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_type_with_similar_values.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_type_with_similar_values_and_children.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_type_with_similar_values_and_children.pysnap index 3e2e3436fb66f2..6ab54ba821fa85 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_type_with_similar_values_and_children.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_one_type_with_similar_values_and_children.pysnap @@ -11,7 +11,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_two_types.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_two_types.pysnap index c30f7ad56699fa..4e787b58398e46 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_two_types.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_two_types.pysnap @@ -11,12 +11,12 @@ app: exception* type* "MyApp.SuchWowException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* "MyApp.AmazingException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_two_types_under_nested_groups.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_two_types_under_nested_groups.pysnap index cd5bef6655484c..1c86b9b859d586 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_two_types_under_nested_groups.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/exception_groups_two_types_under_nested_groups.pysnap @@ -11,12 +11,12 @@ app: exception* type* "MyApp.CoolException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* "MyApp.BeansException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_125_event_126.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_125_event_126.pysnap index 55fdcaa048e5f8..eacb9b993e73f4 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_125_event_126.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_125_event_126.pysnap @@ -139,7 +139,7 @@ app: "ImageLoaderMachOCompressed::rebase" type (ignored because exception is synthetic) "EXC_BAD_ACCESS / 0x00000032" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: EXC_BAD_ACCESS / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_289_event_312.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_289_event_312.pysnap index afe5a27971bb18..83f5f5793ff5de 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_289_event_312.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_289_event_312.pysnap @@ -91,7 +91,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_294_event_294.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_294_event_294.pysnap index 34278cc0eb7857..e1739d4ea130eb 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_294_event_294.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_294_event_294.pysnap @@ -140,7 +140,7 @@ app: frame (marked out of app by stack trace rule (family:native package:/usr/lib/** -app)) type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_294_event_329.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_294_event_329.pysnap index c6294cd04e3e71..bf4471f210a8d8 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_294_event_329.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_294_event_329.pysnap @@ -155,7 +155,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_313_event_313.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_313_event_313.pysnap index 69412de8024a3b..83465218df4918 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_313_event_313.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_313_event_313.pysnap @@ -188,7 +188,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_313_event_333.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_313_event_333.pysnap index 54e81ce076123f..da6d8306b42561 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_313_event_333.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_313_event_333.pysnap @@ -193,7 +193,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_319_event_321.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_319_event_321.pysnap index 0c1a54f1d0a377..5b417e9dc7574d 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_319_event_321.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_319_event_321.pysnap @@ -191,7 +191,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_432_event_432.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_432_event_432.pysnap index 51ed75b5305eed..bd12b3a9665b84 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_432_event_432.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_432_event_432.pysnap @@ -125,7 +125,7 @@ app: "crashpad::`anonymous namespace'::HandleAbortSignal" type (ignored because exception is synthetic) "0x40000015 / 0x00000001" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_432_event_453.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_432_event_453.pysnap index dc7e2818f7eb14..d3d11df4553e26 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_432_event_453.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_432_event_453.pysnap @@ -125,7 +125,7 @@ app: "crashpad::`anonymous namespace'::HandleAbortSignal" type (ignored because exception is synthetic) "0x40000015 / 0x00000001" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_445_event_445.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_445_event_445.pysnap index d356333c65fb37..2bb8c885ea0773 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_445_event_445.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/group_445_event_445.pysnap @@ -146,7 +146,7 @@ app: "crashpad::`anonymous namespace'::HandleAbortSignal" type (ignored because exception is synthetic) "0x40000015 / 0x00000001" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/javascript_exception_fallback_to_message.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/javascript_exception_fallback_to_message.pysnap index 87000df51d56f3..ac4bbd1c6cad21 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/javascript_exception_fallback_to_message.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/javascript_exception_fallback_to_message.pysnap @@ -10,5 +10,5 @@ app: exception* type* "Error" - value* (stripped common values) + value* (stripped event-specific values) "Loading chunk failed.\n(timeout: " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/javascript_exception_fallback_to_message_whistles.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/javascript_exception_fallback_to_message_whistles.pysnap index aed08857afafcb..6a07116848fcdb 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/javascript_exception_fallback_to_message_whistles.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/javascript_exception_fallback_to_message_whistles.pysnap @@ -10,5 +10,5 @@ app: exception* type* "Error" - value* (stripped common values) + value* (stripped event-specific values) ": logged in (error ) time spent --- correlation id , checksum (md5 ); payload timestamp (submitted from via via ) at offset " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/macos_amd_driver.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/macos_amd_driver.pysnap index 0465e1c86de24d..e9089edee51a0a 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/macos_amd_driver.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/macos_amd_driver.pysnap @@ -154,7 +154,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/macos_intel_driver.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/macos_intel_driver.pysnap index 89298aa87e280c..cc76aadc02c65c 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/macos_intel_driver.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/macos_intel_driver.pysnap @@ -182,7 +182,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/message_with_key_pair_values.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/message_with_key_pair_values.pysnap index fe2f9f67be438f..ddf6fa0b6c722e 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/message_with_key_pair_values.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_05_08/message_with_key_pair_values.pysnap @@ -5,5 +5,5 @@ default: hash: "e02854e73673e108fe54768e0f19317b" component: default* - message* (stripped common values) + message* (stripped event-specific values) "Error key1= key2= key3=False key4= other_date=datetime.datetime(, , , , , tzinfo=d..." diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/android_anr.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/android_anr.pysnap index db4f924827c46f..aef14faa25fad4 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/android_anr.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/android_anr.pysnap @@ -767,7 +767,7 @@ app: "getChildAt" type* "ApplicationNotResponding" - value* (stripped common values) + value* (stripped event-specific values) "Application Not Responding for at least ms." threads (ignored because this variant does not have a contributing stacktrace, but the system variant does) stacktrace diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_bad_duplicate_id.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_bad_duplicate_id.pysnap index b4dce12f48111d..ab618820290dfd 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_bad_duplicate_id.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_bad_duplicate_id.pysnap @@ -16,7 +16,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_bad_missing_parent.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_bad_missing_parent.pysnap index a57b1c515c0a33..83c721c5e9b8f3 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_bad_missing_parent.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_bad_missing_parent.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_bad_out_of_sequence.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_bad_out_of_sequence.pysnap index 6eacc5bb102554..579ca2abd10ab0 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_bad_out_of_sequence.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_bad_out_of_sequence.pysnap @@ -11,7 +11,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_exception.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_exception.pysnap index 52e94da64cd1a0..675acf5be1e6ef 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_exception.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_exception.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_type_under_nested_groups.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_type_under_nested_groups.pysnap index 53dac13eff82fd..cb3a279d5035b7 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_type_under_nested_groups.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_type_under_nested_groups.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_type_with_different_values.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_type_with_different_values.pysnap index 1b6fd4e6c7f90a..bdc5d5eb7b3316 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_type_with_different_values.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_type_with_different_values.pysnap @@ -11,7 +11,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_type_with_similar_values.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_type_with_similar_values.pysnap index 89bb0681dc42f8..fcd517ed4ea92b 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_type_with_similar_values.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_type_with_similar_values.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_type_with_similar_values_and_children.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_type_with_similar_values_and_children.pysnap index 006e3fc939e97c..40f2342756aa60 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_type_with_similar_values_and_children.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_one_type_with_similar_values_and_children.pysnap @@ -11,7 +11,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_two_types.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_two_types.pysnap index 5dc8734bc731c9..91f75184ccf3aa 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_two_types.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_two_types.pysnap @@ -11,12 +11,12 @@ app: exception* type* "MyApp.SuchWowException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* "MyApp.AmazingException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_two_types_under_nested_groups.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_two_types_under_nested_groups.pysnap index 148da0054ec91f..5888b9cd2e6f23 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_two_types_under_nested_groups.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/exception_groups_two_types_under_nested_groups.pysnap @@ -11,12 +11,12 @@ app: exception* type* "MyApp.CoolException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* "MyApp.BeansException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_125_event_126.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_125_event_126.pysnap index 4291df651261b3..baca59907fe230 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_125_event_126.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_125_event_126.pysnap @@ -139,7 +139,7 @@ app: "ImageLoaderMachOCompressed::rebase" type (ignored because exception is synthetic) "EXC_BAD_ACCESS / 0x00000032" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: EXC_BAD_ACCESS / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_289_event_312.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_289_event_312.pysnap index e60e06fe58b3c1..4b793f44b08580 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_289_event_312.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_289_event_312.pysnap @@ -91,7 +91,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_294_event_294.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_294_event_294.pysnap index b90614b243477c..f41d570b7dde84 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_294_event_294.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_294_event_294.pysnap @@ -140,7 +140,7 @@ app: frame (marked out of app by stack trace rule (family:native package:/usr/lib/** -app)) type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_294_event_329.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_294_event_329.pysnap index dec901c5518277..bbbc13e32f38af 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_294_event_329.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_294_event_329.pysnap @@ -155,7 +155,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_313_event_313.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_313_event_313.pysnap index cf1f2c2df8a359..e6002432876d9c 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_313_event_313.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_313_event_313.pysnap @@ -188,7 +188,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_313_event_333.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_313_event_333.pysnap index 60474548a8431e..db8768ec4878ad 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_313_event_333.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_313_event_333.pysnap @@ -193,7 +193,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_319_event_321.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_319_event_321.pysnap index 1f7c003eea253f..9251b2eb04dd3f 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_319_event_321.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_319_event_321.pysnap @@ -191,7 +191,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_432_event_432.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_432_event_432.pysnap index 4b0243f40e792d..a5bb7ea8378d11 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_432_event_432.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_432_event_432.pysnap @@ -125,7 +125,7 @@ app: "crashpad::`anonymous namespace'::HandleAbortSignal" type (ignored because exception is synthetic) "0x40000015 / 0x00000001" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_432_event_453.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_432_event_453.pysnap index a347cc29ce59f1..035c3561522446 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_432_event_453.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_432_event_453.pysnap @@ -125,7 +125,7 @@ app: "crashpad::`anonymous namespace'::HandleAbortSignal" type (ignored because exception is synthetic) "0x40000015 / 0x00000001" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_445_event_445.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_445_event_445.pysnap index 8f36841cc30c9d..f0c45da03becd7 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_445_event_445.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/group_445_event_445.pysnap @@ -146,7 +146,7 @@ app: "crashpad::`anonymous namespace'::HandleAbortSignal" type (ignored because exception is synthetic) "0x40000015 / 0x00000001" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/javascript_exception_fallback_to_message.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/javascript_exception_fallback_to_message.pysnap index 58bee672599707..5eeae0aaa3831c 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/javascript_exception_fallback_to_message.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/javascript_exception_fallback_to_message.pysnap @@ -10,5 +10,5 @@ app: exception* type* "Error" - value* (stripped common values) + value* (stripped event-specific values) "Loading chunk failed.\n(timeout: " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/javascript_exception_fallback_to_message_whistles.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/javascript_exception_fallback_to_message_whistles.pysnap index c36121a237a243..324382790d325b 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/javascript_exception_fallback_to_message_whistles.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/javascript_exception_fallback_to_message_whistles.pysnap @@ -10,5 +10,5 @@ app: exception* type* "Error" - value* (stripped common values) + value* (stripped event-specific values) ": logged in (error ) time spent --- correlation id , checksum (md5 ); payload timestamp (submitted from via via ) at offset " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/macos_amd_driver.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/macos_amd_driver.pysnap index dab0b89a2143ef..798b7ed4eb9069 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/macos_amd_driver.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/macos_amd_driver.pysnap @@ -154,7 +154,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/macos_intel_driver.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/macos_intel_driver.pysnap index b4604811bc7fbf..7a788f8001c3c7 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/macos_intel_driver.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/macos_intel_driver.pysnap @@ -182,7 +182,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/message_with_key_pair_values.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/message_with_key_pair_values.pysnap index fe2f9f67be438f..ddf6fa0b6c722e 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/message_with_key_pair_values.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2019_10_29/message_with_key_pair_values.pysnap @@ -5,5 +5,5 @@ default: hash: "e02854e73673e108fe54768e0f19317b" component: default* - message* (stripped common values) + message* (stripped event-specific values) "Error key1= key2= key3=False key4= other_date=datetime.datetime(, , , , , tzinfo=d..." diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/android_anr.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/android_anr.pysnap index 502d25a35441de..720cd93f8e06f8 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/android_anr.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/android_anr.pysnap @@ -765,7 +765,7 @@ app: "getChildAt" type* "ApplicationNotResponding" - value* (stripped common values) + value* (stripped event-specific values) "Application Not Responding for at least ms." threads (ignored because this variant does not have a contributing stacktrace, but the system variant does) stacktrace diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_bad_duplicate_id.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_bad_duplicate_id.pysnap index dfd261d3a8c033..a1e071bed326ad 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_bad_duplicate_id.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_bad_duplicate_id.pysnap @@ -16,7 +16,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_bad_missing_parent.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_bad_missing_parent.pysnap index 720888bb39b6b0..8949aad0b5672e 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_bad_missing_parent.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_bad_missing_parent.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_bad_out_of_sequence.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_bad_out_of_sequence.pysnap index 876703bf96b3ea..51901de44be70d 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_bad_out_of_sequence.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_bad_out_of_sequence.pysnap @@ -11,7 +11,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_exception.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_exception.pysnap index 8f45c26503e219..51e017536b721a 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_exception.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_exception.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_type_under_nested_groups.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_type_under_nested_groups.pysnap index 2736b7ddf5fc26..8b991faee20226 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_type_under_nested_groups.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_type_under_nested_groups.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_type_with_different_values.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_type_with_different_values.pysnap index e6e4138c369ca4..5037f073e34b2c 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_type_with_different_values.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_type_with_different_values.pysnap @@ -11,7 +11,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_type_with_similar_values.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_type_with_similar_values.pysnap index f597b03f787093..0fbdfc31fe4b7d 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_type_with_similar_values.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_type_with_similar_values.pysnap @@ -10,5 +10,5 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_type_with_similar_values_and_children.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_type_with_similar_values_and_children.pysnap index b91ac6b5fa2674..c590ae3b4f7148 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_type_with_similar_values_and_children.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_one_type_with_similar_values_and_children.pysnap @@ -11,7 +11,7 @@ app: exception* type* "MyApp.Exception" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_two_types.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_two_types.pysnap index 83bdafda30f18a..2d34e22cecb428 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_two_types.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_two_types.pysnap @@ -11,12 +11,12 @@ app: exception* type* "MyApp.SuchWowException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* "MyApp.AmazingException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_two_types_under_nested_groups.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_two_types_under_nested_groups.pysnap index 3edd393856a200..89ca10d5fbbb86 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_two_types_under_nested_groups.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/exception_groups_two_types_under_nested_groups.pysnap @@ -11,12 +11,12 @@ app: exception* type* "MyApp.CoolException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* "MyApp.BeansException" - value* (stripped common values) + value* (stripped event-specific values) "Test " exception* type* diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_125_event_126.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_125_event_126.pysnap index 6bccf459478bd1..9484306f9329f7 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_125_event_126.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_125_event_126.pysnap @@ -139,7 +139,7 @@ app: "ImageLoaderMachOCompressed::rebase" type (ignored because exception is synthetic) "EXC_BAD_ACCESS / 0x00000032" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: EXC_BAD_ACCESS / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_289_event_312.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_289_event_312.pysnap index 1d9a244bcc9a61..a7513dac3a1805 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_289_event_312.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_289_event_312.pysnap @@ -91,7 +91,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_294_event_294.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_294_event_294.pysnap index 702164faa9b326..f8f0bd96e2aaba 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_294_event_294.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_294_event_294.pysnap @@ -140,7 +140,7 @@ app: frame (marked out of app by stack trace rule (family:native package:/usr/lib/** -app)) type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_294_event_329.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_294_event_329.pysnap index bd206839883d30..a30976442e5052 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_294_event_329.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_294_event_329.pysnap @@ -155,7 +155,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_313_event_313.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_313_event_313.pysnap index 098922bbaa4a7e..a08148de56c658 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_313_event_313.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_313_event_313.pysnap @@ -188,7 +188,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_313_event_333.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_313_event_333.pysnap index d65d67b8d46a5f..03d839a58f69d1 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_313_event_333.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_313_event_333.pysnap @@ -193,7 +193,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_319_event_321.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_319_event_321.pysnap index 140721972b29d3..1654d47f0ffb1c 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_319_event_321.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_319_event_321.pysnap @@ -191,7 +191,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_432_event_432.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_432_event_432.pysnap index a3d5e0702d10e5..9d2983f22def51 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_432_event_432.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_432_event_432.pysnap @@ -125,7 +125,7 @@ app: "crashpad::`anonymous namespace'::HandleAbortSignal" type (ignored because exception is synthetic) "0x40000015 / 0x00000001" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_432_event_453.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_432_event_453.pysnap index b2f68d71686cd3..4b138f9a1eee14 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_432_event_453.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_432_event_453.pysnap @@ -125,7 +125,7 @@ app: "crashpad::`anonymous namespace'::HandleAbortSignal" type (ignored because exception is synthetic) "0x40000015 / 0x00000001" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_445_event_445.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_445_event_445.pysnap index e9a13e58c1c927..e3fe8892b373e1 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_445_event_445.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/group_445_event_445.pysnap @@ -146,7 +146,7 @@ app: "crashpad::`anonymous namespace'::HandleAbortSignal" type (ignored because exception is synthetic) "0x40000015 / 0x00000001" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/javascript_exception_fallback_to_message.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/javascript_exception_fallback_to_message.pysnap index 24b7638dec63d7..5cd9d0f7aaca34 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/javascript_exception_fallback_to_message.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/javascript_exception_fallback_to_message.pysnap @@ -10,5 +10,5 @@ app: exception* type* "Error" - value* (stripped common values) + value* (stripped event-specific values) "Loading chunk failed.\n(timeout: " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/javascript_exception_fallback_to_message_whistles.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/javascript_exception_fallback_to_message_whistles.pysnap index a170e6d5f4146e..40b480ebca2c23 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/javascript_exception_fallback_to_message_whistles.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/javascript_exception_fallback_to_message_whistles.pysnap @@ -10,5 +10,5 @@ app: exception* type* "Error" - value* (stripped common values) + value* (stripped event-specific values) ": logged in (error ) time spent --- correlation id , checksum (md5 ); payload timestamp (submitted from via via ) at offset " diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/macos_amd_driver.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/macos_amd_driver.pysnap index f90ba889a37c5f..43176e58c3ffb7 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/macos_amd_driver.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/macos_amd_driver.pysnap @@ -154,7 +154,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/macos_intel_driver.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/macos_intel_driver.pysnap index 1bffef49b6b4ef..98a6d3017ff799 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/macos_intel_driver.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/macos_intel_driver.pysnap @@ -182,7 +182,7 @@ app: "__pthread_kill" type (ignored because exception is synthetic) "0x00000000 / 0x00000000" - value* (stripped common values) + value* (stripped event-specific values) "Fatal Error: / " -------------------------------------------------------------------------- system: diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/message_with_key_pair_values.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/message_with_key_pair_values.pysnap index fe2f9f67be438f..ddf6fa0b6c722e 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/message_with_key_pair_values.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/newstyle@2023_01_11/message_with_key_pair_values.pysnap @@ -5,5 +5,5 @@ default: hash: "e02854e73673e108fe54768e0f19317b" component: default* - message* (stripped common values) + message* (stripped event-specific values) "Error key1= key2= key3=False key4= other_date=datetime.datetime(, , , , , tzinfo=d..." diff --git a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/similarity@2020_07_23/message_with_key_pair_values.pysnap b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/similarity@2020_07_23/message_with_key_pair_values.pysnap index fe2f9f67be438f..ddf6fa0b6c722e 100644 --- a/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/similarity@2020_07_23/message_with_key_pair_values.pysnap +++ b/tests/sentry/grouping/snapshots/test_variants/test_event_hash_variant/similarity@2020_07_23/message_with_key_pair_values.pysnap @@ -5,5 +5,5 @@ default: hash: "e02854e73673e108fe54768e0f19317b" component: default* - message* (stripped common values) + message* (stripped event-specific values) "Error key1= key2= key3=False key4= other_date=datetime.datetime(, , , , , tzinfo=d..."