-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
[ML] Improve support for script and aggregation fields in anomaly detection jobs #81923
Merged
qn895
merged 30 commits into
elastic:master
from
qn895:ml-fix-script-n-aggregation-fields
Nov 17, 2020
Merged
Changes from 21 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
75c4924
[ML] Add support for script fields in wizard and in viz
qn895 d90f1ec
[ML] Fix datafeed preview for aggregations not showing if name of agg…
qn895 b580708
[ML] Seems like it can be just aggregations
qn895 77a7e92
[ML] Fix AE plotting for aggregated fields
qn895 ecc77ef
[ML] Export Aggregation interface
qn895 8cd0732
[ML] Fix plotting issue with AE script fields
qn895 a930e21
[ML] Fix typescript
qn895 571bf79
Merge remote-tracking branch 'upstream/master' into ml-fix-script-n-a…
qn895 25e063d
Merge upstream/master into ml-fix-script-n-aggregation-fields
qn895 0455ba1
[ML] Clean up validation for nested aggregation field
qn895 4a557f5
[ML] Add validation for missing summary count if datafeed has aggrega…
qn895 2712c6f
[ML] Fix anomaly search broken because max results is 0
qn895 f76039b
[ML] Add missing_summary_count_field_name validation to validate.ts test
qn895 85e1773
[ML] Fix order between datafeedConfig and allowMMLGreaterThanMax
qn895 79f22dd
[ML] Fix jest tests
qn895 739a423
[ML] Fix calculateModelMemoryLimitProvider order
qn895 dfd070a
Merge remote-tracking branch 'upstream/master' into ml-fix-script-n-a…
qn895 0ced887
Merge remote-tracking branch 'upstream/master' into ml-fix-script-n-a…
qn895 d96a119
[ML] Rename cardinalityField, combine if statements, add missing_summ…
qn895 a3a0809
[ML] Fix character escape & disable next step if misisng summaryCount…
qn895 9769d94
[ML] Fix allowMMLGreaterThanMax changed to undefined previously
qn895 f54c8e8
[ML] Update datafeedAggregations check
qn895 7355559
[ML] Change DatafeedOverride to Datafeed
qn895 1b5898f
[ML] Fix field in aggregatable check
qn895 20c1f67
Merge remote-tracking branch 'upstream/master' into ml-fix-script-n-a…
qn895 1a3c40f
Merge upstream/master into ml-fix-script-n-aggregation-fields
qn895 22f938c
[ML] Update text description
qn895 cf5d4d1
[ML] Update text translations
qn895 6d50e8e
Merge branch 'master' into ml-fix-script-n-aggregation-fields
kibanamachine a661a27
Merge branch 'master' into ml-fix-script-n-aggregation-fields
kibanamachine File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
DatafeedOverride
is for overriding the datafeed config when calling the module setup and so i don't think should be used here.It looks like the standard
Datafeed
interface would be better suited throughout this PR.