Skip to content

Commit 68454a4

Browse files
authoredJul 14, 2021
Change default HTTP exporter port to 55681 (#2331)
1 parent 6e82726 commit 68454a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎packages/opentelemetry-exporter-collector-proto/src/CollectorMetricExporter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { ServiceClientType } from './types';
2424
import { CollectorExporterNodeBase } from './CollectorExporterNodeBase';
2525
import { getEnv, baggageUtils } from '@opentelemetry/core';
2626

27-
const DEFAULT_COLLECTOR_URL = 'http://localhost:4317/v1/metrics';
27+
const DEFAULT_COLLECTOR_URL = 'http://localhost:55681/v1/metrics';
2828

2929
/**
3030
* Collector Metric Exporter for Node with protobuf

‎packages/opentelemetry-exporter-collector-proto/src/CollectorTraceExporter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {
2424
import { ServiceClientType } from './types';
2525
import { getEnv, baggageUtils } from '@opentelemetry/core';
2626

27-
const DEFAULT_COLLECTOR_URL = 'http://localhost:4317/v1/traces';
27+
const DEFAULT_COLLECTOR_URL = 'http://localhost:55681/v1/traces';
2828

2929
/**
3030
* Collector Trace Exporter for Node with protobuf

0 commit comments

Comments
 (0)
Please sign in to comment.