We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abd6637 commit 67566f7Copy full SHA for 67566f7
internal/k8s/controller.go
@@ -354,8 +354,12 @@ func NewLoadBalancerController(input NewLoadBalancerControllerInput) *LoadBalanc
354
355
// NIC Telemetry Reporting
356
if input.EnableTelemetryReporting {
357
+ // Default endpoint
358
exporterCfg := telemetry.ExporterCfg{
- Endpoint: input.TelemetryReportingEndpoint,
359
+ Endpoint: "oss.edge.df.f5.com:443",
360
+ }
361
+ if input.TelemetryReportingEndpoint != "" {
362
+ exporterCfg.Endpoint = input.TelemetryReportingEndpoint
363
}
364
365
exporter, err := telemetry.NewExporter(exporterCfg)
0 commit comments