Skip to content

Commit 5fc08ad

Browse files
author
alrex
authored
Updating limits for attributes, events, links (#1249)
1 parent 5554152 commit 5fc08ad

File tree

1 file changed

+3
-3
lines changed
  • opentelemetry-sdk/src/opentelemetry/sdk/trace

1 file changed

+3
-3
lines changed

opentelemetry-sdk/src/opentelemetry/sdk/trace/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353

5454
logger = logging.getLogger(__name__)
5555

56-
MAX_NUM_ATTRIBUTES = 32
57-
MAX_NUM_EVENTS = 128
58-
MAX_NUM_LINKS = 32
56+
MAX_NUM_ATTRIBUTES = 1000
57+
MAX_NUM_EVENTS = 1000
58+
MAX_NUM_LINKS = 1000
5959
VALID_ATTR_VALUE_TYPES = (bool, str, int, float)
6060

6161

0 commit comments

Comments
 (0)