mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Security Solution][Endpoint] Fix index name pattern in SentinelOne dev. script (#174105)
## Summary
- Corrects index name pattern for S1 alerts in the SIEM Rule that the
SentinelOne dev script uses
🤦
This commit is contained in:
parent
b0c6cc9777
commit
ce71d12d32
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ export const createDetectionEngineSentinelOneRuleIfNeeded = async (
|
|||
log: ToolingLog
|
||||
): Promise<RuleResponse> => {
|
||||
const ruleName = 'Promote SentinelOne alerts';
|
||||
const sentinelOneAlertsIndexPattern = 'logs-sentinel_one.alert';
|
||||
const sentinelOneAlertsIndexPattern = 'logs-sentinel_one.alert*';
|
||||
const ruleQueryValue = 'observer.serial_number:*';
|
||||
|
||||
const { data } = await findRules(kbnClient, {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue