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

Commit f1854f1

Browse files
adriancolekjin
authored andcommitted
doc: clarify the url is a url with an example (#106)
1 parent 880d3ed commit f1854f1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/opencensus-exporter-zipkin/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ Instance the exporter on your application and pass the options. For javascript:
2828
var tracing = require('@opencensus/nodejs');
2929
var zipkin = require('@opencensus/exporter-zipkin');
3030

31-
// Add your zipkin url and application name to the Zipkin options
31+
// Add your zipkin url (ex http://localhost:9411/api/v2/spans)
32+
// and application name to the Zipkin options
3233
var options = {
3334
url: 'your-zipkin-url',
3435
serviceName: 'your-application-name'
@@ -42,7 +43,8 @@ Similarly for Typescript:
4243
import * as tracing from '@opencensus/nodejs';
4344
import { Zipkin } from '@opencensus/exporter-zipkin';
4445

45-
// Add your zipkin url and application name to the Zipkin options
46+
// Add your zipkin url (ex http://localhost:9411/api/v2/spans)
47+
// and application name to the Zipkin options
4648
const options = {
4749
url: 'your-zipkin-url',
4850
serviceName: 'your-application-name'

0 commit comments

Comments
 (0)