Add DD support (#1596)

This commit is contained in:
Yamil Asusta
2018-03-09 16:08:57 -04:00
committed by John Belamaric
parent 95342dfaad
commit 87790dd47c
214 changed files with 69817 additions and 18 deletions

View File

@@ -16,8 +16,8 @@ The simplest form is just:
trace [ENDPOINT-TYPE] [ENDPOINT]
~~~
* **ENDPOINT-TYPE** is the type of tracing destination. Currently only `zipkin` is supported
and that is what it defaults to.
* **ENDPOINT-TYPE** is the type of tracing destination. Currently only `zipkin` and `datadog` are supported.
Defaults to `zipkin`.
* **ENDPOINT** is the tracing destination, and defaults to `localhost:9411`. For Zipkin, if
ENDPOINT does not begin with `http`, then it will be transformed to `http://ENDPOINT/api/v1/spans`.
@@ -69,6 +69,12 @@ the standard Zipkin URL you can do something like:
trace http://tracinghost:9411/zipkin/api/v1/spans
~~~
Using DataDog:
~~~
trace datadog localhost:8125
~~~
Trace one query every 10000 queries, rename the service, and enable same span:
~~~