-
Notifications
You must be signed in to change notification settings - Fork 2.8k
kubeletstatsreceiver: Add metric_groups option #648
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
kubeletstatsreceiver: Add metric_groups option #648
Conversation
Codecov Report
@@ Coverage Diff @@
## master #648 +/- ##
==========================================
+ Coverage 86.31% 86.37% +0.05%
==========================================
Files 196 197 +1
Lines 10754 10801 +47
==========================================
+ Hits 9282 9329 +47
Misses 1136 1136
Partials 336 336
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
d49395b
to
34b4829
Compare
loadtest failure seems unrelated. Trying a rebase to re-trigger tests. |
34b4829
to
f9e8dd5
Compare
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.
Looks good to me
f9e8dd5
to
a0b7867
Compare
Rebasing again, to re-trigger tests. |
Add a notion of metric groups in the receiver. Currently supports `container`, `pod` and `node` groups. By default, metrics from all groups will be collected.
a0b7867
to
58a8f4a
Compare
Translation is mostly based on OTLP to OC translation defined in translator/metrics/otlp_to_oc.go
* trace exporter: using type names for return values * Update jaeger.go Co-authored-by: Joshua MacDonald <[email protected]>
Description: Add a notion of metric groups in the receiver. Currently supports
container
,pod
andnode
groups. By default, metrics from all 3 groups will be collected. This can be overrode by setting themetric_group
option. The idea is to extend the receiver to collect metricsvolume
group as well in the future.Testing: Updated tests.
Documentation: Updated README.