-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[Response Ops][Actions] Keep track of action execution source and show in connector exec log #152030
Merged
Merged
[Response Ops][Actions] Keep track of action execution source and show in connector exec log #152030
Changes from 12 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
53ed1fa
Requiring source in action executor execute function. Persisting sour…
ymao1 0da4e47
Merge
ymao1 7e7c492
Fixing unit tests
ymao1 10f09a0
Fixing types and tests
ymao1 56b0869
Merge branch 'main' of github.com:elastic/kibana into actions/executi…
ymao1 9c43d47
Making sourceType optional
ymao1 963ddd2
Merge branch 'main' of github.com:elastic/kibana into actions/executi…
ymao1 1114477
Showing source on exec log
ymao1 bfe1318
Fixing tests
ymao1 1da3486
Merge branch 'main' of github.com:elastic/kibana into actions/executi…
ymao1 885c1de
Adding functional tests
ymao1 8e270b4
dont need to index new field
ymao1 6a523cc
cleanup
ymao1 79febfc
cleanup
ymao1 705d5f8
Merge branch 'actions/execution-source' of github.com:ymao1/kibana in…
ymao1 4a548f6
Merge branch 'main' of github.com:elastic/kibana into actions/executi…
ymao1 91209de
Differentiating between saved object sources and lowercasing the string
ymao1 8400bcc
[CI] Auto-commit changed files from 'node scripts/lint_ts_projects --…
kibanamachine ce7e26c
Merge branch 'main' into actions/execution-source
kibanamachine 7ddb632
Merging in main
ymao1 af17277
Adding dynamic false to action task param mappings
ymao1 3337e33
Merge branch 'actions/execution-source' of github.com:ymao1/kibana in…
ymao1 6b3609b
Fixing test
ymao1 0318ba9
Merge branch 'main' of github.com:elastic/kibana into actions/executi…
ymao1 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
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.
Typically different event log actions means a different document is written out (we write out separate docs for
execute
andexecute-start
. In this case, it doesn't seem to make sense to write out a different doc forexecute-via-http
and it made more sense to store the source in theexecute
doc. This value was unused anyway, so I removed it.