You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
orb-connd/src/main.rs:116 switches connd to orb_dogd::DogstatsdClient, but that client only waits for /run/datadog/dsd.socket and no longer preserves the old UDP fallback. The deleted local client explicitly fell back to dogstatsd::Options::default() when the socket was absent, so on systems where DogStatsD is reachable over UDP but the UDS is missing, connd will stop emitting metrics.
orb-connd/src/reporters/datadog.rs:69, :76, :94, :100 and orb-connd/src/reporters/data_usage.rs:47, :55 now discard MetricEmitter errors. orb-dogd returns errors when its bounded queue is full or the worker dies; the old code propagated these with ?, so the reporter logged/restarted. Please at least log these failures, otherwise metric loss from backpressure/worker failure becomes invisible.
I couldn’t run cargo check in this sandbox because rustup failed to create temp files on the read-only filesystem.
orb-connd/src/main.rs:116 switches connd to orb_dogd::DogstatsdClient, but that client only waits for /run/datadog/dsd.socket and no longer preserves the old UDP fallback. The deleted local client explicitly fell back to dogstatsd::Options::default() when the socket was absent, so on systems where DogStatsD is reachable over UDP but the UDS is missing, connd will stop emitting metrics.
orb-connd/src/reporters/datadog.rs:69, :76, :94, :100 and orb-connd/src/reporters/data_usage.rs:47, :55 now discard MetricEmitter errors. orb-dogd returns errors when its bounded queue is full or the worker dies; the old code propagated these with ?, so the reporter logged/restarted. Please at least log these failures, otherwise metric loss from backpressure/worker failure becomes invisible.
I couldn’t run cargo check in this sandbox because rustup failed to create temp files on the read-only filesystem.
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
changes