mlycore opened a new issue, #258: URL: https://github.com/apache/shardingsphere-on-cloud/issues/258
Refers to https://github.com/apache/shardingsphere-on-cloud/blob/4ae5381ceff9a1da1df5232bdfb063f62462e1cd/shardingsphere-operator/api/v1alpha1/compute_node_types.go#L166-L180 There is no need to wrap PluginTracing and Tracing for twice. The two struct should be merged into one like below: ```go // PluginTracing defines the plugin for tracing type PluginTracing struct { // +optional Jaeger JaegerTracing `json:"jaeger,omitempty" yaml:"Jaeger"` // +optional Zipkin ZipkinTracing `json:"zipkin,omitempty" yaml:"Zipkin"` // +optional SkyWalking SkyWalkingTracing `json:"skyWalking,omitempty" yaml:"SkyWalking"` // +optional OpenTelemetry OpenTelemetryTracing `json:"openTelemetry,omitempty" yaml:"OpenTelemetry"` } ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
