Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,6 @@ private Optional<String> getOTLPEndpoint(String endpoint) {
if (StringUtils.isBlank(endpoint)) {
return Optional.empty();
}
if (!endpoint.startsWith("http://")) {
endpoint = "https://" + endpoint;
}
return Optional.of(endpoint);
}

Expand Down
4 changes: 2 additions & 2 deletions docker/telemetry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ due to performance and security concerns.

# Sample OTLP endpoints
# OTel Collector (gRPC): http://${endpoint}:4317
# OTel Collector (HTTP): http://${endpoint}:4318
# Prometheus OTLP receiver: http://${endpoint}:9090/api/v1/otlp/v1/metrics
# OTel Collector (HTTP): http://${endpoint}:4318/v1/metrics
# Prometheus (OpenSource) OTLP receiver: http://${endpoint}:9090/api/v1/otlp/v1/metrics

# Metrics report interval
s3.telemetry.exporter.report.interval.ms=5000
Expand Down