-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Support for groovy static analysis for groovy scripts #14844
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
Changes from 4 commits
12411b3
75c9f65
c72e166
5f19543
c86f6ce
051c26a
3e66d8b
35a9d9d
7822c39
f0a842c
06d8605
d2df336
3265a12
79b1c7d
d69423a
60acb67
5812350
909b5c3
5a29f1a
0f0e9ee
ec81ada
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,8 @@ public enum MinionMeter implements AbstractMetrics.Meter { | |
SEGMENT_BYTES_UPLOADED("bytes", false), | ||
RECORDS_PROCESSED_COUNT("rows", false), | ||
RECORDS_PURGED_COUNT("rows", false), | ||
COMPACTED_RECORDS_COUNT("rows", false); | ||
COMPACTED_RECORDS_COUNT("rows", false), | ||
GROOVY_SECURITY_VIOLATIONS("exceptions", true); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's clean up the unrelated changes. The metric should be emitted from controller for table config, and broker for query There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have removed the metric part. |
||
|
||
private final String _meterName; | ||
private final String _unit; | ||
|
Uh oh!
There was an error while loading. Please reload this page.