Skip to content

Commit 9971de6

Browse files
committed
Increase span attribute value length limit to 2048
1 parent 0847bee commit 9971de6

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/angry-trees-drop.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"trigger.dev": patch
3+
---
4+
5+
Increase span attribute value length limit to 2048

packages/cli-v3/src/telemetry/tracing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function initializeTracing(): NodeTracerProvider | undefined {
3939
resource,
4040
spanLimits: {
4141
attributeCountLimit: 1000,
42-
attributeValueLengthLimit: 1000,
42+
attributeValueLengthLimit: 2048,
4343
eventCountLimit: 100,
4444
attributePerEventCountLimit: 100,
4545
linkCountLimit: 10,

0 commit comments

Comments
 (0)