We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21fae0a commit 66f49a7Copy full SHA for 66f49a7
packages/opentelemetry-exporter-jaeger/README.md
@@ -65,8 +65,11 @@ import { JaegerExporter } from '@opentelemetry/exporter-jaeger';
65
const options = {
66
serviceName: 'my-service',
67
tags: [], // optional
68
+ // You can use the default UDPSender
69
host: 'localhost', // optional
70
port: 6832, // optional
71
+ // OR you can use the HTTPSender as follows
72
+ // endpoint: 'http://localhost:14268/api/traces',
73
maxPacketSize: 65000 // optional
74
}
75
const exporter = new JaegerExporter(options);
0 commit comments