-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: move error parsing backend-side and return error path to front…
…end (#189) * chore: move error parsing backend-side and return error path to frontend * fix: do not include trailing ':' in error path, do not modify error message * chore: remove debug output * chore: minor refactoring for understandability * fix: error path as array, support named pipelines in error path extraction
- Loading branch information
Showing
3 changed files
with
66 additions
and
0 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
36 changes: 36 additions & 0 deletions
36
packages/otelbin-validation/test/assets/config-undeclared-receiver-named-pipelines.yaml
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,36 @@ | ||
# Learn more about the OpenTelemetry Collector via | ||
# https://opentelemetry.io/docs/collector/ | ||
|
||
receivers: | ||
otlp: | ||
protocols: | ||
grpc: | ||
http: | ||
|
||
processors: | ||
batch: | ||
|
||
exporters: | ||
otlp: | ||
endpoint: otelcol:4317 | ||
|
||
extensions: | ||
health_check: | ||
pprof: | ||
zpages: | ||
|
||
service: | ||
extensions: [health_check, pprof, zpages] | ||
pipelines: | ||
traces/dash0: | ||
receivers: [jaeger] | ||
processors: [batch] | ||
exporters: [otlp] | ||
metrics/dash0: | ||
receivers: [otlp] | ||
processors: [batch] | ||
exporters: [otlp] | ||
logs/dash0: | ||
receivers: [otlp] | ||
processors: [batch] | ||
exporters: [otlp] |
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