Skip to content

Commit

Permalink
Merge branch 'main' into chore/further-split-vs-matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Ryan authored Jun 28, 2024
2 parents 816aa17 + 77cc604 commit 461dd5d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion internal/k8s/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -354,8 +354,12 @@ func NewLoadBalancerController(input NewLoadBalancerControllerInput) *LoadBalanc

// NIC Telemetry Reporting
if input.EnableTelemetryReporting {
// Default endpoint
exporterCfg := telemetry.ExporterCfg{
Endpoint: input.TelemetryReportingEndpoint,
Endpoint: "oss.edge.df.f5.com:443",
}
if input.TelemetryReportingEndpoint != "" {
exporterCfg.Endpoint = input.TelemetryReportingEndpoint
}

exporter, err := telemetry.NewExporter(exporterCfg)
Expand Down

0 comments on commit 461dd5d

Please sign in to comment.