diff --git a/docs/docs/configuration/connecting-to-data-stores/datadog.md b/docs/docs/configuration/connecting-to-data-stores/datadog.md index e954a5a8af..dac4e80d20 100644 --- a/docs/docs/configuration/connecting-to-data-stores/datadog.md +++ b/docs/docs/configuration/connecting-to-data-stores/datadog.md @@ -10,7 +10,7 @@ Examples of configuring Tracetest with Datadog can be found in the [`examples` f In your OpenTelemetry Collector config file: -- Set the `exporter` to `otlp/tt` +- Set the `exporter` to `otlp/tracetest` - Set the `endpoint` to your Tracetest instance on port `4317` :::tip @@ -46,7 +46,7 @@ exporters: # OTLP for Tracetest # Send traces to Tracetest. # Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 tls: insecure: true @@ -61,11 +61,11 @@ exporters: service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] # exporter sending traces to your Tracetest instance - traces/dd: + exporters: [otlp/tracetest] # exporter sending traces to your Tracetest instance + traces/datadog: receivers: [otlp] processors: [batch] exporters: [datadog] # exporter sending traces to directly to Datadog diff --git a/docs/docs/configuration/connecting-to-data-stores/lightstep.md b/docs/docs/configuration/connecting-to-data-stores/lightstep.md index 7678d1eef5..e44fc471e4 100644 --- a/docs/docs/configuration/connecting-to-data-stores/lightstep.md +++ b/docs/docs/configuration/connecting-to-data-stores/lightstep.md @@ -10,7 +10,7 @@ Examples of configuring Tracetest with Lightstep can be found in the [`examples` In your OpenTelemetry Collector config file: -- Set the `exporter` to `otlp/tt` +- Set the `exporter` to `otlp/tracetest` - Set the `endpoint` to your Tracetest instance on port `4317` :::tip @@ -19,7 +19,7 @@ If you are running Tracetest with Docker, and Tracetest's service name is `trace Additionally, add another config: -- Set the `exporter` to `otlp/ls` +- Set the `exporter` to `otlp/lightstep` - Set the `endpoint` pointing to your Lightstep account and the Lightstep ingest API - Set your Lightstep access token as a `header` @@ -42,12 +42,12 @@ exporters: logging: logLevel: debug # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: insecure: true # OTLP for Lightstep - otlp/ls: + otlp/lightstep: endpoint: ingest.lightstep.com:443 headers: "lightstep-access-token": "" # Send traces to Lightstep. Read more in docs here: https://docs.lightstep.com/otel/otel-quick-start @@ -57,14 +57,14 @@ service: # Your probably already have a traces pipeline, you don't have to change it. # Add these two to your configuration. Just make sure to not have two # pipelines with the same name - traces/tt: + traces/tracetest: receivers: [otlp] # your receiver processors: [batch] - exporters: [otlp/tt] # your exporter pointing to your tracetest instance - traces/ls: + exporters: [otlp/tracetest] # your exporter pointing to your tracetest instance + traces/lightstep: receivers: [otlp] # your receiver processors: [batch] - exporters: [logging, otlp/ls] # your exporter pointing to your lighstep account + exporters: [logging, otlp/lightstep] # your exporter pointing to your lighstep account ``` ## Configure Tracetest to Use Lightstep as a Trace Data Store diff --git a/docs/docs/configuration/connecting-to-data-stores/new-relic.md b/docs/docs/configuration/connecting-to-data-stores/new-relic.md index fc071b6152..64030d4b1a 100644 --- a/docs/docs/configuration/connecting-to-data-stores/new-relic.md +++ b/docs/docs/configuration/connecting-to-data-stores/new-relic.md @@ -10,7 +10,7 @@ Examples of configuring Tracetest with New Relic can be found in the [`examples` In your OpenTelemetry Collector config file: -- Set the `exporter` to `otlp/tt` +- Set the `exporter` to `otlp/tracetest` - Set the `endpoint` to your Tracetest instance on port `4317` :::tip @@ -19,7 +19,7 @@ If you are running Tracetest with Docker and Tracetest's service name is `tracet Additionally, add another config: -- Set the `exporter` to `otlp/nr`. +- Set the `exporter` to `otlp/newrelic`. - Set the `endpoint` pointing to your New Relic account and the New Relic ingest API. - Set your New Relic access token as a `header`. @@ -42,12 +42,12 @@ exporters: logging: logLevel: debug # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: insecure: true # OTLP for New Relic - otlp/nr: + otlp/newrelic: endpoint: otlp.nr-data.net:443 headers: api-key: # Send traces to New Relic. @@ -59,14 +59,14 @@ service: # Your probably already have a traces pipeline, you don't have to change it. # Add these two to your configuration. Just make sure to not have two # pipelines with the same name - traces/tt: + traces/tracetest: receivers: [otlp] # your receiver processors: [batch] - exporters: [otlp/tt] # your exporter pointing to your tracetest instance - traces/nr: + exporters: [otlp/tracetest] # your exporter pointing to your tracetest instance + traces/newrelic: receivers: [otlp] # your receiver processors: [batch] - exporters: [logging, otlp/nr] # your exporter pointing to your lighstep account + exporters: [logging, otlp/newrelic] # your exporter pointing to your lighstep account ``` ## Configure Tracetest to Use New Relic as a Trace Data Store diff --git a/docs/docs/examples-tutorials/recipes/running-tracetest-with-aws-x-ray-adot.md b/docs/docs/examples-tutorials/recipes/running-tracetest-with-aws-x-ray-adot.md index feadfc3fdc..b9105959d9 100644 --- a/docs/docs/examples-tutorials/recipes/running-tracetest-with-aws-x-ray-adot.md +++ b/docs/docs/examples-tutorials/recipes/running-tracetest-with-aws-x-ray-adot.md @@ -194,18 +194,18 @@ processors: exporters: awsxray: region: ${AWS_REGION} - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 tls: insecure: true service: pipelines: - traces/tt: + traces/tracetest: receivers: [awsxray] processors: [batch] - exporters: [otlp/tt] - traces/xr: + exporters: [otlp/tracetest] + traces/awsxray: receivers: [awsxray] exporters: [awsxray] ``` diff --git a/docs/docs/examples-tutorials/recipes/running-tracetest-with-datadog.md b/docs/docs/examples-tutorials/recipes/running-tracetest-with-datadog.md index eba394c110..65bc0e3c06 100644 --- a/docs/docs/examples-tutorials/recipes/running-tracetest-with-datadog.md +++ b/docs/docs/examples-tutorials/recipes/running-tracetest-with-datadog.md @@ -216,7 +216,7 @@ processors: exporters: # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. # Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector @@ -232,11 +232,11 @@ exporters: service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] - traces/dd: + exporters: [otlp/tracetest] + traces/datadog: receivers: [otlp] processors: [batch] exporters: [datadog] diff --git a/docs/docs/examples-tutorials/recipes/running-tracetest-with-honeycomb.md b/docs/docs/examples-tutorials/recipes/running-tracetest-with-honeycomb.md index 08b4398ffe..a05c588739 100644 --- a/docs/docs/examples-tutorials/recipes/running-tracetest-with-honeycomb.md +++ b/docs/docs/examples-tutorials/recipes/running-tracetest-with-honeycomb.md @@ -238,12 +238,12 @@ exporters: logging: logLevel: debug # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: insecure: true # OTLP for Honeycomb - otlp/hc: + otlp/honeycomb: endpoint: "api.honeycomb.io:443" headers: "x-honeycomb-team": @@ -251,14 +251,14 @@ exporters: service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] - traces/hc: + exporters: [otlp/tracetest] + traces/honeycomb: receivers: [otlp] processors: [batch] - exporters: [logging, otlp/hc] + exporters: [logging, otlp/honeycomb] ``` ## Run Both the Node.js App and Tracetest diff --git a/docs/docs/examples-tutorials/recipes/running-tracetest-with-lightstep.md b/docs/docs/examples-tutorials/recipes/running-tracetest-with-lightstep.md index f92be0e2bc..080e095cef 100644 --- a/docs/docs/examples-tutorials/recipes/running-tracetest-with-lightstep.md +++ b/docs/docs/examples-tutorials/recipes/running-tracetest-with-lightstep.md @@ -182,7 +182,7 @@ spec: The `collector.config.yaml` explains that. It receives traces via either `grpc` or `http`. Then, exports them to Tracetest's OTLP endpoint `tracetest:4317` in one pipeline, and to Lightstep in another. -Make sure to add your Lightstep access token in the headers of the `otlp/ls` exporter. +Make sure to add your Lightstep access token in the headers of the `otlp/lightstep` exporter. ```yaml receivers: @@ -199,25 +199,26 @@ exporters: logging: logLevel: debug # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: insecure: true # OTLP for Lightstep + otlp/lightstep: endpoint: ingest.lightstep.com:443 headers: "lightstep-access-token": "" # Send traces to Lightstep. Read more in docs here: https://docs.lightstep.com/otel/otel-quick-start service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] - traces/ls: + exporters: [otlp/tracetest] + traces/lightstep: receivers: [otlp] processors: [batch] - exporters: [logging, otlp/ls] + exporters: [logging, otlp/lightstep] ``` ## Run Both the OpenTelemetry Demo App and Tracetest diff --git a/docs/docs/examples-tutorials/recipes/running-tracetest-with-new-relic.md b/docs/docs/examples-tutorials/recipes/running-tracetest-with-new-relic.md index 8ae9894f36..a5e124ba4c 100644 --- a/docs/docs/examples-tutorials/recipes/running-tracetest-with-new-relic.md +++ b/docs/docs/examples-tutorials/recipes/running-tracetest-with-new-relic.md @@ -178,7 +178,7 @@ spec: The `collector.config.yaml` explains that. It receives traces via either `grpc` or `http`. Then, exports them to Tracetest's OTLP endpoint `tracetest:4317` in one pipeline, and to New Relic in another. -Make sure to add your New Relic ingest licence key in the headers of the `otlp/nr` exporter. +Make sure to add your New Relic ingest licence key in the headers of the `otlp/newrelic` exporter. You access the licence key in your New Relic account settings. ![](https://res.cloudinary.com/djwdcmwdz/image/upload/v1673009509/Blogposts/tracetest-new-relic-partnerships/screely-1673009504630_gko3up.png) @@ -204,12 +204,12 @@ exporters: logging: logLevel: debug # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: insecure: true # OTLP for New Relic - otlp/nr: + otlp/newrelic: endpoint: otlp.nr-data.net:443 headers: "api-key": "" # Send traces to New Relic. @@ -218,14 +218,14 @@ exporters: service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] - traces/ls: + exporters: [otlp/tracetest] + traces/newrelic: receivers: [otlp] processors: [batch] - exporters: [logging, otlp/nr] + exporters: [logging, otlp/newrelic] ``` **Important!** Take a closer look at the sampling configs in both the `collector.config.yaml` and `tracetest.config.yaml`. They both set sampling to 100%. This is crucial when running trace-based e2e and integration tests. diff --git a/examples/quick-start-datadog-nodejs/tracetest/collector.config.yaml b/examples/quick-start-datadog-nodejs/tracetest/collector.config.yaml index 2fbdec22b5..c8cf75c60d 100644 --- a/examples/quick-start-datadog-nodejs/tracetest/collector.config.yaml +++ b/examples/quick-start-datadog-nodejs/tracetest/collector.config.yaml @@ -12,7 +12,7 @@ processors: exporters: # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: insecure: true @@ -27,11 +27,11 @@ exporters: service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] - traces/dd: + exporters: [otlp/tracetest] + traces/datadog: receivers: [otlp] processors: [batch] exporters: [datadog] diff --git a/examples/tracetest-amazon-x-ray-adot/collector.config.yaml b/examples/tracetest-amazon-x-ray-adot/collector.config.yaml index ff953dc99e..e63fd4453f 100644 --- a/examples/tracetest-amazon-x-ray-adot/collector.config.yaml +++ b/examples/tracetest-amazon-x-ray-adot/collector.config.yaml @@ -8,17 +8,17 @@ processors: exporters: awsxray: region: ${AWS_REGION} - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 tls: insecure: true service: pipelines: - traces/tt: + traces/tracetest: receivers: [awsxray] processors: [batch] - exporters: [otlp/tt] - traces/xr: + exporters: [otlp/tracetest] + traces/awsxray: receivers: [awsxray] exporters: [awsxray] diff --git a/examples/tracetest-datadog/tracetest/collector.config.yaml b/examples/tracetest-datadog/tracetest/collector.config.yaml index e32d84865c..89b2f78750 100644 --- a/examples/tracetest-datadog/tracetest/collector.config.yaml +++ b/examples/tracetest-datadog/tracetest/collector.config.yaml @@ -41,7 +41,7 @@ processors: exporters: # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. # Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: @@ -56,11 +56,11 @@ exporters: service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] - traces/dd: + exporters: [otlp/tracetest] + traces/datadog: receivers: [otlp] processors: [batch] exporters: [datadog] diff --git a/examples/tracetest-honeycomb/collector.config.yaml b/examples/tracetest-honeycomb/collector.config.yaml index 1ce3b3d0f4..fdae3afbf4 100644 --- a/examples/tracetest-honeycomb/collector.config.yaml +++ b/examples/tracetest-honeycomb/collector.config.yaml @@ -12,12 +12,12 @@ exporters: logging: logLevel: debug # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: insecure: true # OTLP for Honeycomb - otlp/hc: + otlp/honeycomb: endpoint: "api.honeycomb.io:443" headers: "x-honeycomb-team": @@ -26,11 +26,11 @@ exporters: service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] - traces/hc: + exporters: [otlp/tracetest] + traces/honeycomb: receivers: [otlp] processors: [batch] - exporters: [logging, otlp/hc] + exporters: [logging, otlp/honeycomb] diff --git a/examples/tracetest-lightstep-otel-demo/README.md b/examples/tracetest-lightstep-otel-demo/README.md index 5e2f9e02be..558c99530c 100644 --- a/examples/tracetest-lightstep-otel-demo/README.md +++ b/examples/tracetest-lightstep-otel-demo/README.md @@ -158,7 +158,7 @@ dataStore: The `otelcol-config-extras.yml` explains that. But first, check the `otelcol-config.yml`. It receives traces via either `grpc` or `http`. Then, in the `otelcol-config-extras.yml` you see a `exporters` that exports traces to Tracetest's OTLP endpoint `tracetest:4317` in one pipeline, and to Lightstep in another. -Make sure to add your Lightstep access token in the headers of the `otlp/ls` exporter. +Make sure to add your Lightstep access token in the headers of the `otlp/lightstep` exporter. ```yaml # otelcol-config-extras.yml @@ -172,26 +172,26 @@ processors: exporters: # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: insecure: true # OTLP for Lightstep - otlp/ls: + otlp/lightstep: endpoint: ingest.lightstep.com:443 headers: "lightstep-access-token": "" # Send traces to Lightstep. Read more in docs here: https://docs.lightstep.com/otel/otel-quick-start service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] - traces/ls: + exporters: [otlp/tracetest] + traces/lightstep: receivers: [otlp] processors: [batch] - exporters: [logging, otlp/ls] + exporters: [logging, otlp/lightstep] ``` ## Run the OpenTelemetry Demo with Tracetest diff --git a/examples/tracetest-lightstep-otel-demo/otelcollector/otelcol-config-extras.yml b/examples/tracetest-lightstep-otel-demo/otelcollector/otelcol-config-extras.yml index e684f9cc7f..4ff6a5cdec 100644 --- a/examples/tracetest-lightstep-otel-demo/otelcollector/otelcol-config-extras.yml +++ b/examples/tracetest-lightstep-otel-demo/otelcollector/otelcol-config-extras.yml @@ -7,23 +7,23 @@ processors: exporters: # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: insecure: true # OTLP for Lightstep - otlp/ls: + otlp/lightstep: endpoint: ingest.lightstep.com:443 headers: "lightstep-access-token": "" # Send traces to Lightstep. Read more in docs here: https://docs.lightstep.com/otel/otel-quick-start service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] - traces/ls: + exporters: [otlp/tracetest] + traces/lightstep: receivers: [otlp] processors: [batch] - exporters: [logging, otlp/ls] + exporters: [logging, otlp/lightstep] diff --git a/examples/tracetest-lightstep/tracetest/collector.config.yaml b/examples/tracetest-lightstep/tracetest/collector.config.yaml index b85b76b948..1f00b60a81 100644 --- a/examples/tracetest-lightstep/tracetest/collector.config.yaml +++ b/examples/tracetest-lightstep/tracetest/collector.config.yaml @@ -12,23 +12,23 @@ exporters: logging: logLevel: debug # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: insecure: true # OTLP for Lightstep - otlp/ls: + otlp/lightstep: endpoint: ingest.lightstep.com:443 headers: "lightstep-access-token": "" # Send traces to Lightstep. Read more in docs here: https://docs.lightstep.com/otel/otel-quick-start service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] - traces/ls: + exporters: [otlp/tracetest] + traces/lightstep: receivers: [otlp] processors: [batch] - exporters: [logging, otlp/ls] + exporters: [logging, otlp/lightstep] diff --git a/examples/tracetest-new-relic-otel-demo/README.md b/examples/tracetest-new-relic-otel-demo/README.md index 4b8e48cf6e..f7127a99c9 100644 --- a/examples/tracetest-new-relic-otel-demo/README.md +++ b/examples/tracetest-new-relic-otel-demo/README.md @@ -158,7 +158,7 @@ dataStore: The `otelcol-config-extras.yml` explains that. But first, check the `otelcol-config.yml`. It receives traces via either `grpc` or `http`. Then, in the `otelcol-config-extras.yml` you see a `exporters` that exports traces to Tracetest's OTLP endpoint `tracetest:4317` in one pipeline, and to New Relic in another. -Make sure to add your New Relic access token in the headers of the `otlp/nr` exporter. +Make sure to add your New Relic access token in the headers of the `otlp/newrelic` exporter. ```yaml # otelcol-config-extras.yml @@ -172,11 +172,11 @@ processors: exporters: # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: insecure: true - otlp/nr: + otlp/newrelic: endpoint: otlp.nr-data.net:443 headers: api-key: # Send traces to New Relic. @@ -185,14 +185,14 @@ exporters: service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] - traces/nr: + exporters: [otlp/tracetest] + traces/newrelic: receivers: [otlp] processors: [batch] - exporters: [logging, otlp/nr] + exporters: [logging, otlp/newrelic] ``` ## Run the OpenTelemetry Demo with Tracetest and New Relic diff --git a/examples/tracetest-new-relic-otel-demo/otelcollector/otelcol-config-extras.yml b/examples/tracetest-new-relic-otel-demo/otelcollector/otelcol-config-extras.yml index 2857b00fa4..843549cfcc 100644 --- a/examples/tracetest-new-relic-otel-demo/otelcollector/otelcol-config-extras.yml +++ b/examples/tracetest-new-relic-otel-demo/otelcollector/otelcol-config-extras.yml @@ -7,11 +7,11 @@ processors: exporters: # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: insecure: true - otlp/nr: + otlp/newrelic: endpoint: otlp.nr-data.net:443 headers: api-key: # Send traces to New Relic. @@ -20,11 +20,11 @@ exporters: service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] - traces/nr: + exporters: [otlp/tracetest] + traces/newrelic: receivers: [otlp] processors: [batch] - exporters: [logging, otlp/nr] + exporters: [logging, otlp/newrelic] diff --git a/examples/tracetest-new-relic/tracetest/collector.config.yaml b/examples/tracetest-new-relic/tracetest/collector.config.yaml index 3d4a5f79eb..dd52a27b9f 100644 --- a/examples/tracetest-new-relic/tracetest/collector.config.yaml +++ b/examples/tracetest-new-relic/tracetest/collector.config.yaml @@ -12,12 +12,12 @@ exporters: logging: logLevel: debug # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: insecure: true # OTLP for New Relic - otlp/nr: + otlp/newrelic: endpoint: otlp.nr-data.net:443 headers: api-key: # Send traces to New Relic. @@ -26,11 +26,11 @@ exporters: service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] - traces/nr: + exporters: [otlp/tracetest] + traces/newrelic: receivers: [otlp] processors: [batch] - exporters: [logging, otlp/nr] + exporters: [logging, otlp/newrelic] diff --git a/web/src/constants/CollectorConfig.constants.ts b/web/src/constants/CollectorConfig.constants.ts index a2f6a66c10..b7c69397bb 100644 --- a/web/src/constants/CollectorConfig.constants.ts +++ b/web/src/constants/CollectorConfig.constants.ts @@ -14,26 +14,26 @@ exporters: logging: logLevel: debug # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: insecure: true # OTLP for Lightstep - otlp/ls: + otlp/lightstep: endpoint: ingest.lightstep.com:443 headers: "lightstep-access-token": "" # Send traces to Lightstep. Read more in docs here: https://docs.lightstep.com/otel/otel-quick-start service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] - traces/ls: + exporters: [otlp/tracetest] + traces/lightstep: receivers: [otlp] processors: [batch] - exporters: [logging, otlp/ls] + exporters: [logging, otlp/lightstep] `; export const OtelCollector = `receivers: @@ -74,12 +74,12 @@ exporters: logging: logLevel: debug # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: insecure: true # OTLP for New Relic - otlp/nr: + otlp/newrelic: endpoint: otlp.nr-data.net:443 headers: api-key: # Send traces to New Relic. @@ -88,14 +88,14 @@ exporters: service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] - traces/nr: + exporters: [otlp/tracetest] + traces/newrelic: receivers: [otlp] processors: [batch] - exporters: [logging, otlp/nr] + exporters: [logging, otlp/newrelic] `; export const Datadog = `receivers: @@ -112,7 +112,7 @@ processors: exporters: # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: insecure: true @@ -124,11 +124,11 @@ exporters: # Read more in docs here: https://docs.datadoghq.com/opentelemetry/otel_collector_datadog_exporter service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] - traces/dd: + exporters: [otlp/tracetest] + traces/datadog: receivers: [otlp] processors: [batch] exporters: [datadog] @@ -148,12 +148,12 @@ exporters: logging: logLevel: debug # OTLP for Tracetest - otlp/tt: + otlp/tracetest: endpoint: tracetest:4317 # Send traces to Tracetest. Read more in docs here: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector tls: insecure: true # OTLP for Honeycomb - otlp/hc: + otlp/honeycomb: endpoint: "api.honeycomb.io:443" headers: "x-honeycomb-team": "YOUR_API_KEY" @@ -161,14 +161,14 @@ exporters: service: pipelines: - traces/tt: + traces/tracetest: receivers: [otlp] processors: [batch] - exporters: [otlp/tt] - traces/hc: + exporters: [otlp/tracetest] + traces/honeycomb: receivers: [otlp] processors: [batch] - exporters: [logging, otlp/hc] + exporters: [logging, otlp/honeycomb] `; export const CollectorConfigMap = {