Skip to content

Commit

Permalink
[Security Solution] [Platform] Fixes exceptions cypress test where ru…
Browse files Browse the repository at this point in the history
…le interval was set to 1 second (#148596)

## Summary

rule was running every second, slowing down kibana. updated the rule
interval from 1s -> 10s.

Similar to the issue described + fixed in this PR:
#147349
  • Loading branch information
dhurley14 authored Jan 10, 2023
1 parent 09e10b8 commit 8fc0e18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ describe('Add/edit exception from rule details', () => {
customQuery: 'agent.name:*',
dataSource: { index: ['exceptions*'], type: 'indexPatterns' },
runsEvery: {
interval: '1',
interval: '10',
timeType: 'Seconds',
type: 's',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ describe('Add exception using data views from rule details', () => {
customQuery: 'agent.name:*',
dataSource: { dataView: 'exceptions-*', type: 'dataView' },
runsEvery: {
interval: '1',
interval: '10',
timeType: 'Seconds',
type: 's',
},
Expand Down

0 comments on commit 8fc0e18

Please sign in to comment.