-
Notifications
You must be signed in to change notification settings - Fork 8.3k
/
get_top_alerts.ts
52 lines (50 loc) · 1.29 KB
/
get_top_alerts.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { EVENT_KIND, TIMESTAMP } from '@kbn/rule-data-utils/target/technical_field_names';
import { RuleDataClient } from '../../../../rule_registry/server';
import type { AlertStatus } from '../../../common/typings';
import { kqlQuery, rangeQuery, alertStatusQuery } from '../../utils/queries';
export async function getTopAlerts({
ruleDataClient,
start,
end,
kuery,
size,
status,
}: {
ruleDataClient: RuleDataClient;
start: number;
end: number;
kuery?: string;
size: number;
status: AlertStatus;
}) {
const response = await ruleDataClient.getReader().search({
body: {
query: {
bool: {
filter: [
...rangeQuery(start, end),
...kqlQuery(kuery),
...alertStatusQuery(status),
{ term: { [EVENT_KIND]: 'signal' } },
],
},
},
fields: ['*'],
size,
sort: {
[TIMESTAMP]: 'desc',
},
_source: false,
},
allow_no_indices: true,
});
return response.hits.hits.map((hit) => {
return hit.fields;
});
}