-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Adding OTEL_EXPORTER_OTLP_ENDPOINT (#189)
- Loading branch information
1 parent
df01033
commit 6637883
Showing
12 changed files
with
744 additions
and
733 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export async function register() { | ||
// eslint-disable-next-line no-restricted-properties | ||
if (process.env.NEXT_RUNTIME === "nodejs") | ||
await import("./instrumentation.node"); | ||
await import("./instrumentation-node"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
connectors: | ||
datadog/connector: {} | ||
exporters: | ||
datadog/exporter: | ||
api: | ||
key: ${DD_API_KEY} | ||
site: ${DD_SITE} | ||
debug: {} | ||
debug/detailed: | ||
verbosity: detailed | ||
prometheus: | ||
endpoint: 0.0.0.0:9109 | ||
extensions: | ||
health_check: {} | ||
processors: | ||
batch: {} | ||
memory_limiter: | ||
check_interval: 5s | ||
limit_percentage: 80 | ||
spike_limit_percentage: 25 | ||
receivers: | ||
otlp: | ||
protocols: | ||
grpc: | ||
endpoint: 0.0.0.0:4317 | ||
include_metadata: true | ||
http: | ||
endpoint: 0.0.0.0:4318 | ||
include_metadata: true | ||
statsd: | ||
endpoint: 0.0.0.0:8125 | ||
service: | ||
extensions: | ||
- health_check | ||
pipelines: | ||
logs/datadog: | ||
exporters: | ||
- datadog/exporter | ||
processors: | ||
- batch | ||
- memory_limiter | ||
receivers: | ||
- otlp | ||
metrics/datadog: | ||
exporters: | ||
- datadog/exporter | ||
processors: | ||
- batch | ||
- memory_limiter | ||
receivers: | ||
- otlp | ||
- datadog/connector | ||
traces: | ||
exporters: | ||
- debug | ||
processors: | ||
- batch | ||
- memory_limiter | ||
receivers: | ||
- otlp | ||
traces/datadog: | ||
exporters: | ||
- datadog/connector | ||
- datadog/exporter | ||
processors: | ||
- batch | ||
- memory_limiter | ||
receivers: | ||
- otlp | ||
logs: | ||
exporters: | ||
- debug | ||
processors: | ||
- batch | ||
- memory_limiter | ||
receivers: | ||
- otlp | ||
telemetry: | ||
metrics: | ||
address: 0.0.0.0:8888 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.