mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Change default threat match query (#123590)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
badfaab907
commit
be5bc27f0f
2 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ export const DEFAULT_INDICATOR_SOURCE_PATH = 'threat.indicator' as const;
|
|||
export const ENRICHMENT_DESTINATION_PATH = 'threat.enrichments' as const;
|
||||
export const DEFAULT_THREAT_INDEX_KEY = 'securitySolution:defaultThreatIndex' as const;
|
||||
export const DEFAULT_THREAT_INDEX_VALUE = ['logs-ti_*'] as const;
|
||||
export const DEFAULT_THREAT_MATCH_QUERY = '@timestamp >= "now-30d"' as const;
|
||||
export const DEFAULT_THREAT_MATCH_QUERY = '@timestamp >= "now-30d/d"' as const;
|
||||
|
||||
export enum SecurityPageName {
|
||||
administration = 'administration',
|
||||
|
|
|
@ -113,7 +113,7 @@ import { loginAndWaitForPageWithoutDateRange } from '../../tasks/login';
|
|||
import { goBackToAllRulesTable } from '../../tasks/rule_details';
|
||||
|
||||
import { ALERTS_URL, RULE_CREATION } from '../../urls/navigation';
|
||||
const DEFAULT_THREAT_MATCH_QUERY = '@timestamp >= "now-30d"';
|
||||
const DEFAULT_THREAT_MATCH_QUERY = '@timestamp >= "now-30d/d"';
|
||||
|
||||
describe('indicator match', () => {
|
||||
describe('Detection rules, Indicator Match', () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue