-
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
[Security Solution] Write and read Rule Execution Logs from rule instead of saved object #147035
[Security Solution] Write and read Rule Execution Logs from rule instead of saved object #147035
Conversation
931279d
to
c0407b1
Compare
fb7c12f
to
604ec4a
Compare
c09ed3e
to
1ca9b7f
Compare
31a7159
to
9718858
Compare
7239852
to
2928e87
Compare
8318023
to
95dc24d
Compare
a38fcd4
to
9d60a59
Compare
Pinging @elastic/security-detections-response (Team:Detections and Resp) |
Pinging @elastic/security-solution (Team: SecuritySolution) |
24c831c
to
01b52fe
Compare
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.
Awesome, thanks for the fixes @maximpn! 🚀
Just one nit here for your consideration: #147035 (comment)
53466b1
to
8f0a58c
Compare
💛 Build succeeded, but was flaky
Failed CI StepsTest Failures
Metrics [docs]Async chunks
Saved Objects .kibana field count
Unknown metric groupsReferences to deprecated APIs
History
To update your PR or re-run it, just comment with: |
## Summary It fixes a problem of exporting `execution_summary` field while exporting detection rules which was introduce in #147035. Presence of that field make importing of just exported rule failing. Tests to cover this fix will come in a separate PR.
…ead of saved object (elastic#147035) **Addresses:** elastic#130966 **Based on:** elastic#135127 ## Summary This PR deprecates the Sidecar SO of type `siem-detection-engine-rule-execution-info` in favour of storing Rule Execution Logging data within the rule itself, making use of the work previously done in the Alerting Framework: - elastic#140882 - elastic#147278 Work done: - **Pass execution statuses and metrics from rule executors to the Framework:** through the use of `RuleMonitoringService` and `RuleResultService` from within the rule execution log client for executor. `x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/logic/rule_execution_log/client_for_executors/client.ts` - **Fetch execution statuses and metrics from rules themselves instead of the sidecar `siem-detection-engine-rule-execution-info` saved objects**: through the use of the new function `createRuleExecutionSummary` in `x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/logic/rule_execution_log/create_rule_execution_summary.ts`, which extracts last execution information from the rule itself. - **Remove the siem-detection-engine-rule-execution-info saved objects type from the codebase. Mark it as deleted in Kibana Core:** added `siem-detection-engine-rule-execution-info` to `packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/unused_types.ts`; and got rid of the related Saved Object client. - **Make sure to keep backward compatibility in the Detection API endpoints and rule execution events we write into the Event Log**: API compatibility is maintained. No breaking changes. ### Checklist - [ ] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios
Addresses: #130966
Based on: #135127
Summary
This PR deprecates the Sidecar SO of type
siem-detection-engine-rule-execution-info
in favour of storing Rule Execution Logging data within the rule itself, making use of the work previously done in the Alerting Framework:Work done:
RuleMonitoringService
andRuleResultService
from within the rule execution log client for executor.x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/logic/rule_execution_log/client_for_executors/client.ts
siem-detection-engine-rule-execution-info
saved objects: through the use of the new functioncreateRuleExecutionSummary
inx-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/logic/rule_execution_log/create_rule_execution_summary.ts
, which extracts last execution information from the rule itself.siem-detection-engine-rule-execution-info
topackages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/unused_types.ts
; and got rid of the related Saved Object client.Checklist