Skip to content

Commit

Permalink
fix(opamp): update default opamp endpoint
Browse files Browse the repository at this point in the history
forgot two locations where the endpoint was used.
  • Loading branch information
fguimond committed Nov 22, 2024
1 parent da89d17 commit 181c59e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/sumologic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ extensions:
## ref: https://github.com/SumoLogic/sumologic-otel-collector/tree/main/pkg/extension/opampextension
opamp:
remote_configuration_directory: /etc/otelcol-sumo/opamp.d
endpoint: wss://opamp-events.sumologic.com/v1/opamp
endpoint: wss://opamp-collectors.sumologic.com/v1/opamp

receivers:
## Configuration for OTLP Receiver
Expand Down
2 changes: 1 addition & 1 deletion pkg/extension/opampextension/opamp_agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import (
"github.com/open-telemetry/opentelemetry-collector-contrib/extension/sumologicextension"
)

const DefaultSumoLogicOpAmpURL = "wss://opamp-events.sumologic.com/v1/opamp"
const DefaultSumoLogicOpAmpURL = "wss://opamp-collectors.sumologic.com/v1/opamp"

type opampAgent struct {
cfg *Config
Expand Down

0 comments on commit 181c59e

Please sign in to comment.