diff --git a/src/sentry/performance_issues/detectors/consecutive_http_detector.py b/src/sentry/performance_issues/detectors/consecutive_http_detector.py index 01ffe5c59ac9cc..caaf5eaa77323f 100644 --- a/src/sentry/performance_issues/detectors/consecutive_http_detector.py +++ b/src/sentry/performance_issues/detectors/consecutive_http_detector.py @@ -160,7 +160,7 @@ def _is_eligible_http_span(self, span: Span) -> bool: ): # Just using all methods to see if anything interesting pops up return False - if any([x in description for x in ["_next/static/", "_next/data/"]]): + if any([x in description for x in ["_next/static/", "_next/data/", "googleapis.com"]]): return False return True