Skip to content

Commit 36d8b0a

Browse files
committed
rename OpenTelemetryClientConfiguration to TracingConfiguration
1 parent 0e8da37 commit 36d8b0a

File tree

1 file changed

+4
-3
lines changed
  • keps/sig-instrumentation/647-apiserver-tracing

1 file changed

+4
-3
lines changed

keps/sig-instrumentation/647-apiserver-tracing/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,14 @@ The API Server controls where traffic is sent using an [EgressSelector](https://
113113
```golang
114114
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
115115

116-
// OpenTelemetryClientConfiguration provides versioned configuration for opentelemetry clients.
117-
type OpenTelemetryClientConfiguration struct {
116+
// TracingConfiguration provides versioned configuration for tracing clients.
117+
type TracingConfiguration struct {
118118
metav1.TypeMeta `json:",inline"`
119119

120120
// +optional
121121
// URL of the collector that's running on the control-plane node.
122-
// if URL is specified, APIServer uses the egressType ControlPlane when sending data to the collector.
122+
// the APIServer uses the egressType ControlPlane when sending data to the collector.
123+
// The default is localhost:4317
123124
URL *string `json:"url,omitempty" protobuf:"bytes,3,opt,name=url"`
124125
}
125126
```

0 commit comments

Comments
 (0)