Skip to content

Commit 9f9629e

Browse files
authored
fix: Increase span waterfall limit to 50 - 100k spans (#1579)
1 parent 8172fba commit 9f9629e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/chilled-boxes-work.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@hyperdx/app": patch
3+
---
4+
5+
fix: Increase span waterfall limit to 50 - 100k spans

packages/app/src/components/DBTraceWaterfallChart.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ function getConfig(
231231
from: source.from,
232232
timestampValueExpression: alias.Timestamp,
233233
where: `${alias.TraceId} = '${traceId}'`,
234-
limit: { limit: 10000 },
234+
limit: { limit: 50000 },
235235
connection: source.connection,
236236
};
237237
return { config, alias, type: source.kind };

0 commit comments

Comments
 (0)