You've already forked opentelemetry-go
mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-07-15 01:04:25 +02:00
Update span collection limits to 1000 (#1318)
* set collection limit to 1000 * update changelog Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
This commit is contained in:
@ -42,11 +42,11 @@ type Config struct {
|
||||
|
||||
const (
|
||||
// DefaultMaxEventsPerSpan is default max number of message events per span
|
||||
DefaultMaxEventsPerSpan = 128
|
||||
DefaultMaxEventsPerSpan = 1000
|
||||
|
||||
// DefaultMaxAttributesPerSpan is default max number of attributes per span
|
||||
DefaultMaxAttributesPerSpan = 32
|
||||
DefaultMaxAttributesPerSpan = 1000
|
||||
|
||||
// DefaultMaxLinksPerSpan is default max number of links per span
|
||||
DefaultMaxLinksPerSpan = 32
|
||||
DefaultMaxLinksPerSpan = 1000
|
||||
)
|
||||
|
Reference in New Issue
Block a user