Browse Source

feat(starfish): reduce span summary pagesize (#53194)

- Reduce the pagesize on the span summary page from 50 to 25 now that
page size can have an impact on performance.
William Mak 1 year ago
parent
commit
38d25e9aae
1 changed files with 1 additions and 0 deletions
  1. 1 0
      static/app/views/starfish/queries/useSpanTransactionMetrics.tsx

+ 1 - 0
static/app/views/starfish/queries/useSpanTransactionMetrics.tsx

@@ -40,6 +40,7 @@ export const useSpanTransactionMetrics = (
     eventView,
     initialData: [],
     enabled: Boolean(span),
+    limit: 25,
     referrer: _referrer,
   });
 };