Skip to content

Commit 66f49a7

Browse files
docs: add note about endpoint config option (open-telemetry#1234)
Co-authored-by: Mayur Kale <[email protected]>
1 parent 21fae0a commit 66f49a7

File tree

1 file changed

+3
-0
lines changed
  • packages/opentelemetry-exporter-jaeger

1 file changed

+3
-0
lines changed

packages/opentelemetry-exporter-jaeger/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,11 @@ import { JaegerExporter } from '@opentelemetry/exporter-jaeger';
6565
const options = {
6666
serviceName: 'my-service',
6767
tags: [], // optional
68+
// You can use the default UDPSender
6869
host: 'localhost', // optional
6970
port: 6832, // optional
71+
// OR you can use the HTTPSender as follows
72+
// endpoint: 'http://localhost:14268/api/traces',
7073
maxPacketSize: 65000 // optional
7174
}
7275
const exporter = new JaegerExporter(options);

0 commit comments

Comments
 (0)