Browse Source

feat(mep): bump the max limit to 101 (#33468)

- This is cause some parts of the UI do 100 results, and we don't need
  to mark these as incompatible
William Mak 2 years ago
parent
commit
424c77cfc6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/sentry/search/events/constants.py

+ 1 - 1
src/sentry/search/events/constants.py

@@ -174,7 +174,7 @@ METRICS_MAP = {
     "user": "s:transactions/user@none",
 }
 # 50 to match the size of tables in the UI + 1 for pagination reasons
-METRICS_MAX_LIMIT = 51
+METRICS_MAX_LIMIT = 101
 METRICS_GRANULARITIES = [86400, 3600, 60, 10]
 METRIC_TOLERATED_TAG_KEY = "is_tolerated"
 METRIC_SATISFIED_TAG_KEY = "is_satisfied"