Skip to content

Commit

Permalink
correct the default span limit values to 128 (#1429)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkwatson committed Feb 10, 2021
1 parent f228a83 commit 03a6f0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions specification/trace/sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -326,9 +326,9 @@ public final class SpanLimits {

**Configurable parameters:**

* `AttributeCountLimit` (Default=1000) - Maximum allowed span attribute count;
* `EventCountLimit` (Default=1000) - Maximum allowed span event count;
* `LinkCountLimit` (Default=1000) - Maximum allowed span link count;
* `AttributeCountLimit` (Default=128) - Maximum allowed span attribute count;
* `EventCountLimit` (Default=128) - Maximum allowed span event count;
* `LinkCountLimit` (Default=128) - Maximum allowed span link count;
* `AttributePerEventCountLimit` (Default=128) - Maximum allowed attribute per span event count;
* `AttributePerLinkCountLimit` (Default=128) - Maximum allowed attribute per span link count;

Expand Down

0 comments on commit 03a6f0f

Please sign in to comment.