-
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
[Security Solution] Narrow down indices to match case descriptions #89592
Merged
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
544e442
update default index to match with description
angorayc 57a28fa
narrow down indices to match case description
angorayc 4f9108d
Merge branch 'master' into integration-defaultindex
kibanamachine b21ee5b
run specific tests
angorayc fcfd7ee
Merge branch 'integration-defaultindex' of github.com:angorayc/kibana…
angorayc c856aaf
run only security solution's tests
angorayc 78c2462
debug users integration test
angorayc 68153b8
Merge branch 'master' of github.com:elastic/kibana into integration-d…
angorayc d2ee69f
wait_for_completion_timeout
angorayc cf92515
run only security_solution
angorayc a67ce8c
Merge branch 'master' into integration-defaultindex
kibanamachine cb5656e
Merge branch 'master' into integration-defaultindex
kibanamachine 81163c7
add back integration tests
angorayc f86d66e
Merge branch 'integration-defaultindex' of github.com:angorayc/kibana…
angorayc afceaac
avoid multiple requests
angorayc db7e1ad
Merge branch 'master' into integration-defaultindex
kibanamachine 6363a40
Merge branch 'master' into integration-defaultindex
kibanamachine 8f70ea1
Merge branch 'master' of github.com:elastic/kibana into integration-d…
angorayc 10200fc
Merge branch 'master' into integration-defaultindex
kibanamachine d7bcd55
Merge branch 'master' into integration-defaultindex
kibanamachine 40940b2
Merge branch 'master' of github.com:elastic/kibana into integration-d…
angorayc fec1def
Merge branch 'integration-defaultindex' of github.com:angorayc/kibana…
angorayc 740a6d6
uncomment tests
angorayc 1dcb75a
unskip tests
angorayc f43c4f2
add smaller mock data for users and uncommon_processes
angorayc d729fc5
Merge branch 'master' into integration-defaultindex
kibanamachine e1ce1b1
put test back
angorayc 7d5f22a
Merge branch 'integration-defaultindex' of github.com:angorayc/kibana…
angorayc 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
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.
Just curious how we settled on the
10s
timeout?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.
Sometimes the request just takes longer than expected to return. I want to put the timeout long enough to wait until the result comes back so I am able to verify the result.
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 checked the test here: https://github.com/elastic/kibana/blob/master/x-pack/test/api_integration/apis/search/search.ts#L18
They use a very long timeout to avoid returning just partial data, so I do the same here.