Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit 056fee7

Browse files
drubinmayurkale22
authored andcommitted
Fix jaeger config syntax (#522)
1 parent 1e144d4 commit 056fee7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/opencensus-exporter-jaeger/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ import tracing from '@opencensus/nodejs';
4848
import { JaegerTraceExporter } from '@opencensus/exporter-jaeger';
4949

5050
const options = {
51-
serviceName: 'my-service';
52-
tags: []; // optional
53-
host: localhost; // optional
54-
port: 6832; // optional
55-
maxPacketSize: 65000; // optional
51+
serviceName: 'my-service',
52+
tags: [], // optional
53+
host: 'localhost', // optional
54+
port: 6832, // optional
55+
maxPacketSize: 65000 // optional
5656
}
5757
const exporter = new JaegerTraceExporter(options);
5858
```

0 commit comments

Comments
 (0)