expose max limits allowed for binary format event fields.
This commit is contained in:
10
binary/limits.go
Normal file
10
binary/limits.go
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
package binary
|
||||||
|
|
||||||
|
import "math"
|
||||||
|
|
||||||
|
const (
|
||||||
|
MaxContentSize = math.MaxUint16
|
||||||
|
MaxKind = math.MaxUint16
|
||||||
|
MaxTagCount = math.MaxUint16
|
||||||
|
MaxTagSize = math.MaxUint16
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user