@@ -100,14 +100,15 @@ You can choose different exporters to send the collected traces to.
100100
101101The provided exporters are:
102102
103- | Class | Description |
104- | ----- | ----------- |
105- | [EchoExporter][echo-exporter] | Output the collected spans to stdout |
106- | [FileExporter][file-exporter] | Output JSON encoded spans to a file |
107- | [StackdriverExporter][stackdriver-exporter] | Report traces to Google Cloud Stackdriver Trace |
108- | [LoggerExporter][logger-exporter] | Exporter JSON encoded spans to a PSR-3 logger |
109- | [NullExporter][null-exporter] | No-op |
110- | [ZipkinExporter][zipkin-exporter] | Report collected spans to a Zipkin server |
103+ | Class | Description | Dependency |
104+ | ----- | ----------- | ---------- |
105+ | [EchoExporter][echo-exporter] | Output the collected spans to stdout | |
106+ | [FileExporter][file-exporter] | Output JSON encoded spans to a file | |
107+ | [JaegerExporter][jaeger-exporter] | Report traces to Jaeger server via Thrift over UDP | [opencensus/opencensus-exporter-jaeger][jaeger-packagist] |
108+ | [LoggerExporter][logger-exporter] | Exporter JSON encoded spans to a PSR-3 logger | |
109+ | [NullExporter][null-exporter] | No-op | |
110+ | [StackdriverExporter][stackdriver-exporter] | Report traces to Google Cloud Stackdriver Trace | |
111+ | [ZipkinExporter][zipkin-exporter] | Report collected spans to a Zipkin server | |
111112
112113If you would like to provide your own reporter, create a class that implements
113114` ExporterInterface` .
@@ -165,8 +166,10 @@ This is not an official Google product.
165166[probability-sampler]: https://census-instrumentation.github.io/opencensus-php/api/OpenCensus/Trace/Sampler/NeverSampleSampler.html
166167[echo-exporter]: https://census-instrumentation.github.io/opencensus-php/api/OpenCensus/Trace/Exporter/EchoExporter.html
167168[file-exporter]: https://census-instrumentation.github.io/opencensus-php/api/OpenCensus/Trace/Exporter/FileExporter.html
168- [stackdriver-exporter]: https://census-instrumentation.github.io/opencensus-php/api/OpenCensus/Trace/Exporter/StackdriverExporter.html
169+ [jaeger-exporter]: https://github.com/census-instrumentation/opencensus-php-exporter-jaeger/blob/master/src/JaegerExporter.php
170+ [jaeger-packagist]: https://packagist.org/packages/opencensus/opencensus-exporter-jaeger
169171[logger-exporter]: https://census-instrumentation.github.io/opencensus-php/api/OpenCensus/Trace/Exporter/LoggerExporter.html
170172[null-exporter]: https://census-instrumentation.github.io/opencensus-php/api/OpenCensus/Trace/Exporter/NullExporter.html
173+ [stackdriver-exporter]: https://census-instrumentation.github.io/opencensus-php/api/OpenCensus/Trace/Exporter/StackdriverExporter.html
171174[zipkin-exporter]: https://census-instrumentation.github.io/opencensus-php/api/OpenCensus/Trace/Exporter/ZipkinExporter.html
172175[semver]: http://semver.org/
0 commit comments