Skip to content

Commit

Permalink
Updated default port for OTLP exporter (#611)
Browse files Browse the repository at this point in the history
OpenCensus used `55678` as the default. OTLP used `55680`. This commit fixes the incorrect default port specified for the OTLP exporter.
  • Loading branch information
owais committed Apr 2, 2020
1 parent 8ef02a6 commit 446727b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exporters/otlp/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
)

const (
DefaultCollectorPort uint16 = 55678
DefaultCollectorPort uint16 = 55680
DefaultCollectorHost string = "localhost"
DefaultNumWorkers uint = 1
)
Expand Down

0 comments on commit 446727b

Please sign in to comment.