Skip to content

Commit

Permalink
Updating limits for attributes, events, links (#1249)
Browse files Browse the repository at this point in the history
  • Loading branch information
alrex authored Oct 16, 2020
1 parent 5554152 commit 5fc08ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions opentelemetry-sdk/src/opentelemetry/sdk/trace/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@

logger = logging.getLogger(__name__)

MAX_NUM_ATTRIBUTES = 32
MAX_NUM_EVENTS = 128
MAX_NUM_LINKS = 32
MAX_NUM_ATTRIBUTES = 1000
MAX_NUM_EVENTS = 1000
MAX_NUM_LINKS = 1000
VALID_ATTR_VALUE_TYPES = (bool, str, int, float)


Expand Down

0 comments on commit 5fc08ad

Please sign in to comment.