mirror of
https://github.com/pomerium/pomerium.git
synced 2025-06-01 18:33:19 +02:00
telemetry: add support for datadog tracing (#1743)
* add support for datadog tracing * omitempty on datadog address * envoy: add datadog exporter for tracing
This commit is contained in:
parent
4f0ce4bc82
commit
00734243b3
9 changed files with 201 additions and 78 deletions
|
@ -22,6 +22,12 @@ func Test_NewTracingOptions(t *testing.T) {
|
|||
want *TracingOptions
|
||||
wantErr bool
|
||||
}{
|
||||
{
|
||||
"datadog_good",
|
||||
&Options{TracingProvider: "datadog"},
|
||||
&TracingOptions{Provider: "datadog", Service: "pomerium"},
|
||||
false,
|
||||
},
|
||||
{
|
||||
"jaeger_good",
|
||||
&Options{TracingProvider: "jaeger", TracingJaegerAgentEndpoint: "foo", TracingJaegerCollectorEndpoint: "http://foo", Services: ServiceAll},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue