Set the length of event#parameters to 2000 (#8615)

This commit is contained in:
Jay Xu 2022-03-06 18:45:15 +08:00 committed by GitHub
parent f06c220e50
commit ddde0c9612
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -79,6 +79,7 @@ Release Notes.
* Add a new sampler (`possibility`) in LAL.
* Unify module name `receiver_zipkin` to `receiver-zipkin`, remove `receiver_jaeger` from `application.yaml`.
* Introduce the entity of Process type.
* Set the length of event#parameters to 2000.
#### UI

View File

@ -99,7 +99,7 @@ public class Event extends Metrics implements ISource, WithMetadata, LongValueHo
@Column(columnName = MESSAGE)
private String message;
@Column(columnName = PARAMETERS, storageOnly = true, length = 1024)
@Column(columnName = PARAMETERS, storageOnly = true, length = 20000)
private String parameters;
@Column(columnName = START_TIME)