1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-01-03 22:52:30 +02:00

Updated default port for OTLP exporter (#611)

OpenCensus used `55678` as the default. OTLP used `55680`. This commit fixes the incorrect default port specified for the OTLP exporter.
This commit is contained in:
Owais Lone 2020-04-02 22:34:57 +05:30 committed by GitHub
parent 8ef02a61aa
commit 446727b90d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ import (
)
const (
DefaultCollectorPort uint16 = 55678
DefaultCollectorPort uint16 = 55680
DefaultCollectorHost string = "localhost"
DefaultNumWorkers uint = 1
)