-
Notifications
You must be signed in to change notification settings - Fork 62
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
New collector; telemetry discussion #265 #380
Conversation
Codecov Report
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. @@ Coverage Diff @@
## main #380 +/- ##
==========================================
- Coverage 81.73% 81.67% -0.06%
==========================================
Files 195 195
Lines 10624 10631 +7
==========================================
Hits 8683 8683
- Misses 1644 1651 +7
Partials 297 297
Flags with carried forward coverage won't be shown. Click here to find out more.
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
@@ -70,7 +71,14 @@ func strategy() func(*cobra.Command) int { | |||
c := make(chan int) | |||
go func() { | |||
defer close(c) | |||
_ = client.NewCollector().Send(cmd) | |||
_ = client.NewCollector(util.NewStringSet().Add("err-ignore"). |
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.
Ideally, we should generate this list automatically from the flags so that we don't need to remember to update this every time a new flag is added.
I'll open an enhancement issue to remind us.
telemetry discussion #265