-
Notifications
You must be signed in to change notification settings - Fork 278
feat: Namespaces Tab #261
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
feat: Namespaces Tab #261
Conversation
|
table: 'metrics', | ||
field: 'k8s.pod.cpu.utilization - Gauge', | ||
type: 'table', | ||
aggFn: 'avg', |
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 think it makes more sense to show the aggregate CPU and memory usage via a sum
here
table: 'metrics', | ||
field: 'k8s.namespace.phase - Gauge', | ||
type: 'table', | ||
aggFn: 'avg', |
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 think we'd want to use last_value
here
groupBy: 'k8s.namespace.name', | ||
where: whereClause, | ||
table: 'metrics', | ||
aggFn: 'avg', |
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.
same here I think we'd want sum
for cpu/mem
made changes |
1ea16d0
to
7c1c23d
Compare
Uh oh!
There was an error while loading. Please reload this page.