aboutsummaryrefslogtreecommitdiffstats
path: root/exporters
diff options
context:
space:
mode:
authorYang Song <songy23@users.noreply.github.com>2018-02-28 16:33:04 -0800
committerGitHub <noreply@github.com>2018-02-28 16:33:04 -0800
commite64ea7dcb6f81ec86b13d3a41c8bce71223c3f55 (patch)
treeb1c7b91672ca3fe73ce5a8e283d177bc6968619b /exporters
parent100c604d3e9f7dc9928b7d246dae1af95746fbcd (diff)
downloadplatform_external_opencensus-java-e64ea7dcb6f81ec86b13d3a41c8bce71223c3f55.tar.gz
platform_external_opencensus-java-e64ea7dcb6f81ec86b13d3a41c8bce71223c3f55.tar.bz2
platform_external_opencensus-java-e64ea7dcb6f81ec86b13d3a41c8bce71223c3f55.zip
Fix a typo in Zipkin exporter README (#1037)
Diffstat (limited to 'exporters')
-rw-r--r--exporters/trace/zipkin/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/exporters/trace/zipkin/README.md b/exporters/trace/zipkin/README.md
index fca3557c..ba3d906b 100644
--- a/exporters/trace/zipkin/README.md
+++ b/exporters/trace/zipkin/README.md
@@ -64,7 +64,7 @@ This will report Zipkin v2 json format to a single server. Alternate
```java
public class MyMainClass {
public static void main(String[] args) throws Exception {
- ZipkinTraceExporter.createAndRegister("http://127.0.0.1:9411/api/v2/spans");
+ ZipkinTraceExporter.createAndRegister("http://127.0.0.1:9411/api/v2/spans", "myService");
// ...
}
}