-
Notifications
You must be signed in to change notification settings - Fork 1.5k
[CNM-4887][network_path] Add Skipped Conns widget #21831
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
| "queries": [ | ||
| { | ||
| "data_source": "metrics", | ||
| "name": "query2", | ||
| "query": "sum:datadog.network_path.collector.raw_connections_chan_size{$host,$datacenter,$cluster_name} by {cluster_name,datacenter}.weighted()" | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove unsupported
.weighted() queries
The new internal channel widgets call queries like sum:datadog.network_path.collector.raw_connections_chan_size{…}.weighted() without providing the weight series. The Datadog query language does not allow a bare .weighted() suffix, so the widget will render an error instead of data. The same issue occurs for input_chan_size and processing_chan_size further down. Either drop the .weighted() call or supply a proper numerator/denominator expression.
Useful? React with 👍 / 👎.
| { | ||
| "data_source": "metrics", | ||
| "name": "query2", | ||
| "query": "sum:datadog.network_path.collector.raw_connections_chan_size{$host,$datacenter,$cluster_name} by {cluster_name,datacenter}.weighted()" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not seeing this metric exist anywhere in prod or staging: [Link to staging] Is this going to be added in the future?
What does this PR do?
[network_path] Add Skipped Conns widget
Motivation
Review checklist (to be filled by reviewers)
qa/skip-qalabel if the PR doesn't need to be tested during QA.backport/<branch-name>label to the PR and it will automatically open a backport PR once this one is merged