-
Notifications
You must be signed in to change notification settings - Fork 484
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: EBPF_NET_CRASH_METRIC_PORT env in ebpf chart not being quoted is…
…sue. Signed-off-by: Yang, Robin <[email protected]>
- Loading branch information
Showing
2 changed files
with
11 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,3 @@ log: | |
|
||
debug: | ||
enabled: true | ||
storeMinidump: true | ||
sendUnplannedExitMetric: true |
11 changes: 11 additions & 0 deletions
11
charts/opentelemetry-ebpf/ci/send-unplanned-exit-metric-values.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,11 @@ | ||
# OTLP gRPC endpoint to send the collected metrics | ||
endpoint: | ||
address: "example-opentelemetry-collector.default" | ||
|
||
debug: | ||
enabled: true | ||
storeMinidump: true | ||
# This will send a metric when the collector exits unexpectedly, useful to detect crashes and restarts | ||
# The metric will be sent to the address and port defined in the endpoint section | ||
# The port is defined as integer, but it should be quoted since it will be put to containers' env | ||
sendUnplannedExitMetric: true |