Set up the length of source and dest IDs in relation entities of service, instance, endpoint, and process to 250(was 200). (#11686)
This commit is contained in:
parent
1efff6381c
commit
eb4cebf9ab
|
|
@ -2,24 +2,26 @@
|
|||
|
||||
#### Project
|
||||
|
||||
|
||||
#### OAP Server
|
||||
|
||||
* Add `layer` parameter to the global topology graphQL query.
|
||||
* Add `is_present` function in MQE for check if the list metrics has a value or not.
|
||||
* Remove unreasonable default configurations for gRPC thread executor.
|
||||
* Remove `gRPCThreadPoolQueueSize (SW_RECEIVER_GRPC_POOL_QUEUE_SIZE)`
|
||||
configuration.
|
||||
* Allow excluding ServiceEntries in some namespaces when looking up
|
||||
ServiceEntries as a final resolution method of service metadata.
|
||||
* Remove `gRPCThreadPoolQueueSize (SW_RECEIVER_GRPC_POOL_QUEUE_SIZE)` configuration.
|
||||
* Allow excluding ServiceEntries in some namespaces when looking up ServiceEntries as a final resolution method of
|
||||
service metadata.
|
||||
* Set up the length of source and dest IDs in relation entities of service, instance, endpoint, and process to 250(was
|
||||
200).
|
||||
|
||||
#### UI
|
||||
|
||||
* Fix the mismatch between the unit and calculation of the "Network Bandwidth Usage" widget in Linux-Service Dashboard.
|
||||
|
||||
|
||||
#### Documentation
|
||||
|
||||
* Update the release doc to remove the announcement as the tests are through e2e rather than manually.
|
||||
* Update the release notification mail a little.
|
||||
* Polish docs structure. Move customization docs separately from the introduction docs.
|
||||
* Polish docs structure. Move customization docs separately from the introduction docs.
|
||||
* Add webhook/gRPC hooks settings example for `backend-alarm.md`.
|
||||
* Begin the process of `SWIP - SkyWalking Improvement Proposal`.
|
||||
* Add `SWIP-1 Create and detect Service Hierarchy Relationship`.
|
||||
|
|
|
|||
|
|
@ -49,11 +49,11 @@ public class EndpointRelationServerSideMetrics extends Metrics {
|
|||
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = SOURCE_ENDPOINT)
|
||||
@Column(name = SOURCE_ENDPOINT, length = 250)
|
||||
private String sourceEndpoint;
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = DEST_ENDPOINT)
|
||||
@Column(name = DEST_ENDPOINT, length = 250)
|
||||
private String destEndpoint;
|
||||
@Setter
|
||||
@Getter
|
||||
|
|
|
|||
|
|
@ -50,19 +50,19 @@ public class ServiceInstanceRelationClientSideMetrics extends Metrics {
|
|||
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = SOURCE_SERVICE_ID)
|
||||
@Column(name = SOURCE_SERVICE_ID, length = 250)
|
||||
private String sourceServiceId;
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = SOURCE_SERVICE_INSTANCE_ID)
|
||||
@Column(name = SOURCE_SERVICE_INSTANCE_ID, length = 250)
|
||||
private String sourceServiceInstanceId;
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = DEST_SERVICE_ID)
|
||||
@Column(name = DEST_SERVICE_ID, length = 250)
|
||||
private String destServiceId;
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = DEST_SERVICE_INSTANCE_ID)
|
||||
@Column(name = DEST_SERVICE_INSTANCE_ID, length = 250)
|
||||
private String destServiceInstanceId;
|
||||
@Setter
|
||||
@Getter
|
||||
|
|
|
|||
|
|
@ -50,19 +50,19 @@ public class ServiceInstanceRelationServerSideMetrics extends Metrics {
|
|||
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = SOURCE_SERVICE_ID)
|
||||
@Column(name = SOURCE_SERVICE_ID, length = 250)
|
||||
private String sourceServiceId;
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = SOURCE_SERVICE_INSTANCE_ID)
|
||||
@Column(name = SOURCE_SERVICE_INSTANCE_ID, length = 250)
|
||||
private String sourceServiceInstanceId;
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = DEST_SERVICE_ID)
|
||||
@Column(name = DEST_SERVICE_ID, length = 250)
|
||||
private String destServiceId;
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = DEST_SERVICE_INSTANCE_ID)
|
||||
@Column(name = DEST_SERVICE_INSTANCE_ID, length = 250)
|
||||
private String destServiceInstanceId;
|
||||
@Setter
|
||||
@Getter
|
||||
|
|
|
|||
|
|
@ -52,15 +52,15 @@ public class ProcessRelationClientSideMetrics extends Metrics {
|
|||
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = SERVICE_INSTANCE_ID)
|
||||
@Column(name = SERVICE_INSTANCE_ID, length = 250)
|
||||
private String serviceInstanceId;
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = SOURCE_PROCESS_ID)
|
||||
@Column(name = SOURCE_PROCESS_ID, length = 250)
|
||||
private String sourceProcessId;
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = DEST_PROCESS_ID)
|
||||
@Column(name = DEST_PROCESS_ID, length = 250)
|
||||
private String destProcessId;
|
||||
@Setter
|
||||
@Getter
|
||||
|
|
|
|||
|
|
@ -51,15 +51,15 @@ public class ProcessRelationServerSideMetrics extends Metrics {
|
|||
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = SERVICE_INSTANCE_ID)
|
||||
@Column(name = SERVICE_INSTANCE_ID, length = 250)
|
||||
private String serviceInstanceId;
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = SOURCE_PROCESS_ID)
|
||||
@Column(name = SOURCE_PROCESS_ID, length = 250)
|
||||
private String sourceProcessId;
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = DEST_PROCESS_ID)
|
||||
@Column(name = DEST_PROCESS_ID, length = 250)
|
||||
private String destProcessId;
|
||||
@Setter
|
||||
@Getter
|
||||
|
|
|
|||
|
|
@ -49,11 +49,11 @@ public class ServiceRelationClientSideMetrics extends Metrics {
|
|||
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = SOURCE_SERVICE_ID)
|
||||
@Column(name = SOURCE_SERVICE_ID, length = 250)
|
||||
private String sourceServiceId;
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = DEST_SERVICE_ID)
|
||||
@Column(name = DEST_SERVICE_ID, length = 250)
|
||||
private String destServiceId;
|
||||
@Setter
|
||||
@Getter
|
||||
|
|
|
|||
|
|
@ -51,11 +51,11 @@ public class ServiceRelationServerSideMetrics extends Metrics {
|
|||
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = SOURCE_SERVICE_ID)
|
||||
@Column(name = SOURCE_SERVICE_ID, length = 250)
|
||||
private String sourceServiceId;
|
||||
@Setter
|
||||
@Getter
|
||||
@Column(name = DEST_SERVICE_ID)
|
||||
@Column(name = DEST_SERVICE_ID, length = 250)
|
||||
private String destServiceId;
|
||||
@Setter
|
||||
@Getter
|
||||
|
|
|
|||
Loading…
Reference in New Issue