[ES body removal] @elastic/response-ops (#204882)

This commit is contained in:
Alejandro Fernández Haro 2025-01-21 15:10:54 +01:00 committed by GitHub
parent 17be4e651b
commit 7bb2dad38f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
121 changed files with 874 additions and 975 deletions

View file

@ -13,7 +13,7 @@ import type {
QueryDslFieldAndFormat,
QueryDslQueryContainer,
SortCombinations,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import type { Alert } from './alert_type';
export type RuleRegistrySearchRequest = IEsSearchRequest & {

View file

@ -20,7 +20,7 @@ import type {
QueryDslFieldAndFormat,
QueryDslQueryContainer,
SortCombinations,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import type { EsQuerySnapshot, LegacyField } from '../../types';
export interface SearchAlertsParams {

View file

@ -16,7 +16,7 @@ import type {
AggregationsAggregationContainer,
QueryDslQueryContainer,
SortCombinations,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import { BASE_RAC_ALERTS_API_PATH } from '../constants';
export interface UseGetAlertsGroupAggregationsQueryProps {

View file

@ -11,10 +11,10 @@ import type {
Script,
MappingRuntimeField,
MappingRuntimeFields,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import type { RuntimeFieldSpec, RuntimePrimitiveTypes } from '@kbn/data-views-plugin/common';
import type { BoolQuery } from '@kbn/es-query';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
type RunTimeMappings =
| Record<string, Omit<RuntimeFieldSpec, 'type'> & { type: RuntimePrimitiveTypes }>

View file

@ -8,7 +8,7 @@
/**
* Get all actions with in-memory connectors
*/
import * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import * as estypes from '@elastic/elasticsearch/lib/api/types';
import { AuditLogger } from '@kbn/security-plugin-types-server';
import { ElasticsearchClient, Logger } from '@kbn/core/server';
import { omit } from 'lodash';

View file

@ -6,7 +6,7 @@
*/
import { ElasticsearchClient } from '@kbn/core-elasticsearch-server';
import * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import * as estypes from '@elastic/elasticsearch/lib/api/types';
import { SavedObjectsClientContract } from '@kbn/core-saved-objects-api-server';
import { SavedObjectsClient } from '@kbn/core/server';

View file

@ -6,7 +6,7 @@
*/
import { KueryNode } from '@kbn/es-query';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import Boom from '@hapi/boom';
import { flatMap, get, isEmpty } from 'lodash';
import { AggregateEventsBySavedObjectResult } from '@kbn/event-log-plugin/server';

View file

@ -7,7 +7,7 @@
import type {
AggregationsKeyedPercentiles,
AggregationsPercentilesAggregateBase,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import { MonitoringCollectionSetup } from '@kbn/monitoring-collection-plugin/server';
import { aggregateTaskOverduePercentilesForType } from '@kbn/task-manager-plugin/server';
import { CoreSetup } from '@kbn/core/server';

View file

@ -7,7 +7,7 @@
import { QueryDslQueryContainer } from '@elastic/elasticsearch/lib/api/types';
import { ElasticsearchClient, Logger } from '@kbn/core/server';
import { AggregationsTermsAggregateBase } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { AggregationsTermsAggregateBase } from '@elastic/elasticsearch/lib/api/types';
import {
AvgActionRunOutcomeByConnectorTypeBucket,
parseActionRunOutcomeByConnectorTypesBucket,

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import { AggregationsBuckets } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { AggregationsBuckets } from '@elastic/elasticsearch/lib/api/types';
import { replaceFirstAndLastDotSymbols } from '../actions_telemetry';
export interface AvgActionRunOutcomeByConnectorTypeBucket {

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import type { MappingTypeMapping } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type { MappingTypeMapping } from '@elastic/elasticsearch/lib/api/types';
import { set } from '@kbn/safer-lodash-set';
import type { FieldMap, MultiField } from '@kbn/alerts-as-data-utils';

View file

@ -8,7 +8,7 @@
import type {
AggregationsAggregationContainer,
AggregationsCompositeAggregation,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import type { AggregateOptions } from '../server/application/rule/methods/aggregate/types';
export type RuleTagsAggregationOptions = Pick<AggregateOptions, 'filter' | 'search'> & {

View file

@ -442,18 +442,16 @@ describe('Alerts Client', () => {
);
expect(clusterClient.search).toHaveBeenCalledWith({
body: {
query: {
bool: {
filter: [
{ term: { 'kibana.alert.rule.uuid': '1' } },
{ terms: { 'kibana.alert.uuid': ['abc', 'def', 'xyz'] } },
],
},
query: {
bool: {
filter: [
{ term: { 'kibana.alert.rule.uuid': '1' } },
{ terms: { 'kibana.alert.uuid': ['abc', 'def', 'xyz'] } },
],
},
seq_no_primary_term: true,
size: 3,
},
seq_no_primary_term: true,
size: 3,
index: useDataStreamForAlerts
? '.alerts-test.alerts-default'
: '.internal.alerts-test.alerts-default-*',
@ -516,18 +514,16 @@ describe('Alerts Client', () => {
);
expect(clusterClient.search).toHaveBeenCalledWith({
body: {
query: {
bool: {
filter: [
{ term: { 'kibana.alert.rule.uuid': '1' } },
{ terms: { 'kibana.alert.uuid': ['abc'] } },
],
},
query: {
bool: {
filter: [
{ term: { 'kibana.alert.rule.uuid': '1' } },
{ terms: { 'kibana.alert.uuid': ['abc'] } },
],
},
size: 1,
seq_no_primary_term: true,
},
size: 1,
seq_no_primary_term: true,
index: useDataStreamForAlerts
? '.alerts-test.alerts-default'
: '.internal.alerts-test.alerts-default-*',
@ -570,7 +566,7 @@ describe('Alerts Client', () => {
index: '.alerts-test.alerts-default',
refresh: 'wait_for',
require_alias: !useDataStreamForAlerts,
body: [
operations: [
{
create: { _id: uuid1, ...(useDataStreamForAlerts ? {} : { require_alias: true }) },
},
@ -617,7 +613,7 @@ describe('Alerts Client', () => {
index: '.alerts-test.alerts-default',
refresh: true,
require_alias: !useDataStreamForAlerts,
body: [
operations: [
{
create: { _id: uuid1, ...(useDataStreamForAlerts ? {} : { require_alias: true }) },
},
@ -710,7 +706,7 @@ describe('Alerts Client', () => {
index: '.alerts-test.alerts-default',
refresh: 'wait_for',
require_alias: !useDataStreamForAlerts,
body: [
operations: [
{
index: {
_id: 'abc',
@ -783,7 +779,7 @@ describe('Alerts Client', () => {
index: '.alerts-test.alerts-default',
refresh: 'wait_for',
require_alias: !useDataStreamForAlerts,
body: [
operations: [
{
index: {
_id: 'abc',
@ -918,7 +914,7 @@ describe('Alerts Client', () => {
index: '.alerts-test.alerts-default',
refresh: 'wait_for',
require_alias: !useDataStreamForAlerts,
body: [
operations: [
{
create: {
_id: 'abc',
@ -991,7 +987,7 @@ describe('Alerts Client', () => {
index: '.alerts-test.alerts-default',
refresh: 'wait_for',
require_alias: !useDataStreamForAlerts,
body: [
operations: [
{
index: {
_id: 'def',
@ -1090,7 +1086,7 @@ describe('Alerts Client', () => {
index: '.alerts-test.alerts-default',
refresh: 'wait_for',
require_alias: !useDataStreamForAlerts,
body: [
operations: [
{
index: {
_id: 'def',
@ -1247,7 +1243,7 @@ describe('Alerts Client', () => {
index: '.alerts-test.alerts-default',
refresh: 'wait_for',
require_alias: !useDataStreamForAlerts,
body: [
operations: [
{
index: {
_id: 'def',
@ -1365,7 +1361,7 @@ describe('Alerts Client', () => {
index: '.alerts-test.alerts-default',
refresh: 'wait_for',
require_alias: !useDataStreamForAlerts,
body: [
operations: [
{
index: {
_id: 'def',
@ -1569,7 +1565,7 @@ describe('Alerts Client', () => {
index: '.alerts-test.alerts-default',
refresh: 'wait_for',
require_alias: !useDataStreamForAlerts,
body: [
operations: [
{
index: {
_id: 'def',
@ -2540,7 +2536,7 @@ describe('Alerts Client', () => {
index: '.alerts-test.alerts-default',
refresh: 'wait_for',
require_alias: !useDataStreamForAlerts,
body: [
operations: [
{
create: { _id: uuid1, ...(useDataStreamForAlerts ? {} : { require_alias: true }) },
},
@ -2814,7 +2810,7 @@ describe('Alerts Client', () => {
index: '.alerts-test.alerts-default',
refresh: 'wait_for',
require_alias: !useDataStreamForAlerts,
body: [
operations: [
{
create: {
_id: expect.any(String),
@ -2915,7 +2911,7 @@ describe('Alerts Client', () => {
index: '.alerts-test.alerts-default',
refresh: 'wait_for',
require_alias: !useDataStreamForAlerts,
body: [
operations: [
{
create: {
_id: 'abc',
@ -3012,7 +3008,7 @@ describe('Alerts Client', () => {
index: '.alerts-test.alerts-default',
refresh: 'wait_for',
require_alias: !useDataStreamForAlerts,
body: [
operations: [
{
index: {
_id: 'abc',

View file

@ -15,7 +15,7 @@ import {
ALERT_MAINTENANCE_WINDOW_IDS,
} from '@kbn/rule-data-utils';
import { chunk, flatMap, get, isEmpty, keys } from 'lodash';
import { SearchRequest } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { SearchRequest } from '@elastic/elasticsearch/lib/api/types';
import type { Alert } from '@kbn/alerts-as-data-utils';
import { DEFAULT_NAMESPACE_STRING } from '@kbn/core-saved-objects-utils-server';
import { DeepPartial } from '@kbn/utility-types';
@ -231,7 +231,7 @@ export class AlertsClient<
}
public async search<Aggregation = unknown>(
queryBody: SearchRequest['body']
queryBody: SearchRequest
): Promise<SearchResult<AlertData, Aggregation>> {
const esClient = await this.options.elasticsearchClientPromise;
const index = this.isUsingDataStreams()
@ -242,7 +242,7 @@ export class AlertsClient<
aggregations,
} = await esClient.search<Alert & AlertData, Aggregation>({
index,
body: queryBody,
...queryBody,
ignore_unavailable: true,
});
@ -568,7 +568,7 @@ export class AlertsClient<
refresh: this.isServerless ? true : 'wait_for',
index: this.indexTemplateAndPattern.alias,
require_alias: !this.isUsingDataStreams(),
body: bulkBody,
operations: bulkBody,
});
// If there were individual indexing errors, they will be returned in the success response

View file

@ -129,67 +129,66 @@ export const getExpectedQueryByExecutionUuid = ({
excludedAlertInstanceIds?: string[];
alertsFilter?: AlertsFilter;
}) => ({
body: {
query: {
bool: {
filter: [
{ term: { 'kibana.alert.rule.execution.uuid': uuid } },
{ term: { 'kibana.alert.rule.uuid': ruleId } },
{
bool: { must_not: { exists: { field: 'kibana.alert.maintenance_window_ids' } } },
},
...(isLifecycleAlert ? [{ term: { 'event.action': alertTypes[alertType] } }] : []),
...(!!excludedAlertInstanceIds?.length
? [
{
bool: {
must_not: {
terms: {
'kibana.alert.instance.id': excludedAlertInstanceIds,
},
query: {
bool: {
filter: [
{ term: { 'kibana.alert.rule.execution.uuid': uuid } },
{ term: { 'kibana.alert.rule.uuid': ruleId } },
{
bool: { must_not: { exists: { field: 'kibana.alert.maintenance_window_ids' } } },
},
...(isLifecycleAlert ? [{ term: { 'event.action': alertTypes[alertType] } }] : []),
...(!!excludedAlertInstanceIds?.length
? [
{
bool: {
must_not: {
terms: {
'kibana.alert.instance.id': excludedAlertInstanceIds,
},
},
},
]
: []),
...(alertsFilter
? [
{
bool: {
minimum_should_match: 1,
should: [
{
match: {
[alertsFilter.query!.kql.split(':')[0]]:
alertsFilter.query!.kql.split(':')[1],
},
},
]
: []),
...(alertsFilter
? [
{
bool: {
minimum_should_match: 1,
should: [
{
match: {
[alertsFilter.query!.kql.split(':')[0]]:
alertsFilter.query!.kql.split(':')[1],
},
],
},
},
{
script: {
script: {
params: {
datetimeField: '@timestamp',
days: alertsFilter.timeframe?.days,
timezone: alertsFilter.timeframe!.timezone,
},
source:
'params.days.contains(doc[params.datetimeField].value.withZoneSameInstant(ZoneId.of(params.timezone)).dayOfWeek.getValue())',
},
],
},
},
{
script: {
script: {
params: {
datetimeField: '@timestamp',
days: alertsFilter.timeframe?.days,
timezone: alertsFilter.timeframe!.timezone,
},
source:
'params.days.contains(doc[params.datetimeField].value.withZoneSameInstant(ZoneId.of(params.timezone)).dayOfWeek.getValue())',
},
},
{
},
{
script: {
script: {
script: {
params: {
datetimeField: '@timestamp',
end: alertsFilter.timeframe!.hours.end,
start: alertsFilter.timeframe!.hours.start,
timezone: alertsFilter.timeframe!.timezone,
},
source: `
params: {
datetimeField: '@timestamp',
end: alertsFilter.timeframe!.hours.end,
start: alertsFilter.timeframe!.hours.start,
timezone: alertsFilter.timeframe!.timezone,
},
source: `
def alertsDateTime = doc[params.datetimeField].value.withZoneSameInstant(ZoneId.of(params.timezone));
def alertsTime = LocalTime.of(alertsDateTime.getHour(), alertsDateTime.getMinute());
def start = LocalTime.parse(params.start);
@ -211,17 +210,16 @@ export const getExpectedQueryByExecutionUuid = ({
}
}
`,
},
},
},
]
: []),
],
},
},
]
: []),
],
},
size: 100,
track_total_hits: true,
},
size: 100,
track_total_hits: true,
ignore_unavailable: true,
index: indexName,
});
@ -376,15 +374,13 @@ export const getExpectedQueryByTimeRange = ({
}
return {
body: {
query: {
bool: {
filter,
},
query: {
bool: {
filter,
},
size: 100,
track_total_hits: true,
},
size: 100,
track_total_hits: true,
ignore_unavailable: true,
index: indexName,
};

View file

@ -10,7 +10,7 @@ import {
SearchRequest,
SearchTotalHits,
AggregationsAggregationContainer,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import { BoolQuery } from '@kbn/es-query';
import {
ALERT_END,
@ -53,7 +53,7 @@ const getLifecycleAlertsQueryByExecutionUuid = ({
ruleId,
excludedAlertInstanceIds,
alertsFilter,
}: GetLifecycleAlertsQueryByExecutionUuidParams): Array<SearchRequest['body']> => {
}: GetLifecycleAlertsQueryByExecutionUuidParams): SearchRequest[] => {
// lifecycle alerts assign a different action to an alert depending
// on whether it is new/ongoing/recovered. query for each action in order
// to get the count of each action type as well as up to the maximum number
@ -89,7 +89,7 @@ const getLifecycleAlertsQueryByTimeRange = ({
ruleId,
excludedAlertInstanceIds,
alertsFilter,
}: GetLifecycleAlertsQueryByTimeRangeParams): Array<SearchRequest['body']> => {
}: GetLifecycleAlertsQueryByTimeRangeParams): SearchRequest[] => {
return [
getQueryByTimeRange({
start,
@ -124,7 +124,7 @@ const getQueryByExecutionUuid = ({
excludedAlertInstanceIds,
action,
alertsFilter,
}: GetQueryByExecutionUuidParams): SearchRequest['body'] => {
}: GetQueryByExecutionUuidParams): SearchRequest => {
const filter: QueryDslQueryContainer[] = [
{
term: {
@ -187,7 +187,7 @@ const getQueryByTimeRange = ({
excludedAlertInstanceIds,
type,
alertsFilter,
}: GetQueryByTimeRangeParams<AlertTypes>): SearchRequest['body'] => {
}: GetQueryByTimeRangeParams<AlertTypes>): SearchRequest => {
// base query filters the alert documents for a rule by the given time range
let filter: QueryDslQueryContainer[] = [
{
@ -282,7 +282,7 @@ export const getQueryByScopedQueries = ({
ruleId,
action,
maintenanceWindows,
}: GetQueryByScopedQueriesParams): SearchRequest['body'] => {
}: GetQueryByScopedQueriesParams): SearchRequest => {
const filters: QueryDslQueryContainer[] = [
{
term: {
@ -460,7 +460,7 @@ const getLifecycleAlertsQueries = ({
ruleId,
excludedAlertInstanceIds,
alertsFilter,
}: GetAlertsQueryParams): Array<SearchRequest['body']> => {
}: GetAlertsQueryParams): SearchRequest[] => {
let queryBodies;
if (!!executionUuid) {
queryBodies = getLifecycleAlertsQueryByExecutionUuid({
@ -489,7 +489,7 @@ const getContinualAlertsQuery = ({
ruleId,
excludedAlertInstanceIds,
alertsFilter,
}: GetAlertsQueryParams): SearchRequest['body'] => {
}: GetAlertsQueryParams): SearchRequest => {
let queryBody;
if (!!executionUuid) {
queryBody = getQueryByExecutionUuid({
@ -516,7 +516,7 @@ const getMaintenanceWindowAlertsQuery = ({
ruleId,
action,
maintenanceWindows,
}: GetMaintenanceWindowAlertsQueryParams): SearchRequest['body'] => {
}: GetMaintenanceWindowAlertsQueryParams): SearchRequest => {
return getQueryByScopedQueries({
executionUuid,
ruleId,

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import { QueryDslQueryContainer } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { QueryDslQueryContainer } from '@elastic/elasticsearch/lib/api/types';
export const injectAnalyzeWildcard = (query: QueryDslQueryContainer): void => {
if (!query) {

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import { TransportResult } from '@elastic/elasticsearch';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { sanitizeBulkErrorResponse } from './sanitize_bulk_response';
// Using https://www.elastic.co/guide/en/elasticsearch/reference/8.11/docs-bulk.html

View file

@ -8,7 +8,7 @@ import { cloneDeep } from 'lodash';
import { TransportResult } from '@elastic/elasticsearch';
import { get } from 'lodash';
import { set } from '@kbn/safer-lodash-set';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
export const sanitizeBulkErrorResponse = (
response: TransportResult<estypes.BulkResponse, unknown> | estypes.BulkResponse

View file

@ -10,7 +10,7 @@ import { elasticsearchClientMock } from '@kbn/core-elasticsearch-client-server-m
import {
IndicesGetDataStreamResponse,
IndicesDataStreamIndex,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import { errors as EsErrors } from '@elastic/elasticsearch';
import { ReplaySubject, Subject, of } from 'rxjs';
import { AlertsService } from './alerts_service';
@ -150,54 +150,52 @@ const getIndexTemplatePutBody = (opts?: GetIndexTemplatePutBodyOpts) => {
];
return {
name: `.alerts-${context ? context : 'test'}.alerts-${namespace}-index-template`,
body: {
index_patterns: indexPatterns,
composed_of: [
...(useEcs ? ['.alerts-ecs-mappings'] : []),
`.alerts-${context ? `${context}.alerts` : 'test.alerts'}-mappings`,
...(useLegacyAlerts ? ['.alerts-legacy-alert-mappings'] : []),
'.alerts-framework-mappings',
],
...(useDataStream ? { data_stream: { hidden: true } } : {}),
priority: namespace.length,
template: {
settings: {
auto_expand_replicas: '0-1',
hidden: true,
...(useDataStream
? {}
: {
'index.lifecycle': {
name: '.alerts-ilm-policy',
rollover_alias: `.alerts-${context ? context : 'test'}.alerts-${namespace}`,
},
}),
'index.mapping.ignore_malformed': true,
'index.mapping.total_fields.limit': 2500,
},
mappings: {
dynamic: false,
_meta: {
kibana: { version: '8.8.0' },
managed: true,
namespace,
},
},
...(secondaryAlias
? {
aliases: {
[`${secondaryAlias}-default`]: {
is_write_index: false,
},
index_patterns: indexPatterns,
composed_of: [
...(useEcs ? ['.alerts-ecs-mappings'] : []),
`.alerts-${context ? `${context}.alerts` : 'test.alerts'}-mappings`,
...(useLegacyAlerts ? ['.alerts-legacy-alert-mappings'] : []),
'.alerts-framework-mappings',
],
...(useDataStream ? { data_stream: { hidden: true } } : {}),
priority: namespace.length,
template: {
settings: {
auto_expand_replicas: '0-1',
hidden: true,
...(useDataStream
? {}
: {
'index.lifecycle': {
name: '.alerts-ilm-policy',
rollover_alias: `.alerts-${context ? context : 'test'}.alerts-${namespace}`,
},
}
: {}),
}),
'index.mapping.ignore_malformed': true,
'index.mapping.total_fields.limit': 2500,
},
_meta: {
kibana: { version: '8.8.0' },
managed: true,
namespace,
mappings: {
dynamic: false,
_meta: {
kibana: { version: '8.8.0' },
managed: true,
namespace,
},
},
...(secondaryAlias
? {
aliases: {
[`${secondaryAlias}-default`]: {
is_write_index: false,
},
},
}
: {}),
},
_meta: {
kibana: { version: '8.8.0' },
managed: true,
namespace,
},
};
};
@ -473,14 +471,12 @@ describe('Alerts Service', () => {
expect(clusterClient.indices.putIndexTemplate).toHaveBeenCalledTimes(1);
expect(clusterClient.indices.putIndexTemplate).toHaveBeenCalledWith({
name: existingIndexTemplate.name,
body: {
...existingIndexTemplate.index_template,
template: {
...existingIndexTemplate.index_template.template,
settings: {
...existingIndexTemplate.index_template.template?.settings,
'index.mapping.total_fields.limit': 2500,
},
...existingIndexTemplate.index_template,
template: {
...existingIndexTemplate.index_template.template,
settings: {
...existingIndexTemplate.index_template.template?.settings,
'index.mapping.total_fields.limit': 2500,
},
},
});
@ -558,11 +554,9 @@ describe('Alerts Service', () => {
} else {
expect(clusterClient.indices.create).toHaveBeenCalledWith({
index: '.internal.alerts-test.alerts-default-000001',
body: {
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
},
});
@ -624,11 +618,9 @@ describe('Alerts Service', () => {
} else {
expect(clusterClient.indices.create).toHaveBeenCalledWith({
index: '.internal.alerts-test.alerts-default-000001',
body: {
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
},
});
@ -686,11 +678,9 @@ describe('Alerts Service', () => {
} else {
expect(clusterClient.indices.create).toHaveBeenCalledWith({
index: '.internal.alerts-test.alerts-default-000001',
body: {
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
},
});
@ -731,11 +721,9 @@ describe('Alerts Service', () => {
} else {
expect(clusterClient.indices.create).toHaveBeenNthCalledWith(1, {
index: '.internal.alerts-test.alerts-default-000001',
body: {
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
},
});
@ -798,11 +786,9 @@ describe('Alerts Service', () => {
} else {
expect(clusterClient.indices.create).toHaveBeenNthCalledWith(2, {
index: '.internal.alerts-test.alerts-another-namespace-000001',
body: {
aliases: {
'.alerts-test.alerts-another-namespace': {
is_write_index: true,
},
aliases: {
'.alerts-test.alerts-another-namespace': {
is_write_index: true,
},
},
});
@ -855,11 +841,9 @@ describe('Alerts Service', () => {
expect(clusterClient.indices.putMapping).toHaveBeenCalledTimes(2);
expect(clusterClient.indices.create).toHaveBeenCalledWith({
index: '.internal.alerts-test.alerts-default-000001',
body: {
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
},
});
@ -891,46 +875,44 @@ describe('Alerts Service', () => {
const template = {
name: `.alerts-empty.alerts-default-index-template`,
body: {
index_patterns: useDataStreamForAlerts
? [`.alerts-empty.alerts-default`]
: [
`.internal.alerts-empty.alerts-default-*`,
`.reindexed-v8-internal.alerts-empty.alerts-default-*`,
],
composed_of: ['.alerts-framework-mappings'],
...(useDataStreamForAlerts ? { data_stream: { hidden: true } } : {}),
priority: 7,
template: {
settings: {
auto_expand_replicas: '0-1',
hidden: true,
...(useDataStreamForAlerts
? {}
: {
'index.lifecycle': {
name: '.alerts-ilm-policy',
rollover_alias: `.alerts-empty.alerts-default`,
},
}),
'index.mapping.ignore_malformed': true,
'index.mapping.total_fields.limit': 2500,
},
mappings: {
_meta: {
kibana: { version: '8.8.0' },
managed: true,
namespace: 'default',
},
dynamic: false,
},
index_patterns: useDataStreamForAlerts
? [`.alerts-empty.alerts-default`]
: [
`.internal.alerts-empty.alerts-default-*`,
`.reindexed-v8-internal.alerts-empty.alerts-default-*`,
],
composed_of: ['.alerts-framework-mappings'],
...(useDataStreamForAlerts ? { data_stream: { hidden: true } } : {}),
priority: 7,
template: {
settings: {
auto_expand_replicas: '0-1',
hidden: true,
...(useDataStreamForAlerts
? {}
: {
'index.lifecycle': {
name: '.alerts-ilm-policy',
rollover_alias: `.alerts-empty.alerts-default`,
},
}),
'index.mapping.ignore_malformed': true,
'index.mapping.total_fields.limit': 2500,
},
_meta: {
kibana: { version: '8.8.0' },
managed: true,
namespace: 'default',
mappings: {
_meta: {
kibana: { version: '8.8.0' },
managed: true,
namespace: 'default',
},
dynamic: false,
},
},
_meta: {
kibana: { version: '8.8.0' },
managed: true,
namespace: 'default',
},
};
expect(clusterClient.indices.putIndexTemplate).toHaveBeenCalledWith(template);
@ -944,11 +926,9 @@ describe('Alerts Service', () => {
} else {
expect(clusterClient.indices.create).toHaveBeenCalledWith({
index: '.internal.alerts-empty.alerts-default-000001',
body: {
aliases: {
'.alerts-empty.alerts-default': {
is_write_index: true,
},
aliases: {
'.alerts-empty.alerts-default': {
is_write_index: true,
},
},
});

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import { IlmPolicy } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { IlmPolicy } from '@elastic/elasticsearch/lib/api/types';
/**
* Default alert index ILM policy

View file

@ -6,7 +6,7 @@
*/
import { elasticsearchServiceMock, loggingSystemMock } from '@kbn/core/server/mocks';
import { errors as EsErrors } from '@elastic/elasticsearch';
import { IndicesGetDataStreamResponse } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { IndicesGetDataStreamResponse } from '@elastic/elasticsearch/lib/api/types';
import { createConcreteWriteIndex, setConcreteWriteIndex } from './create_concrete_write_index';
import { getDataStreamAdapter } from './data_stream_adapter';
@ -95,11 +95,9 @@ describe('createConcreteWriteIndex', () => {
} else {
expect(clusterClient.indices.create).toHaveBeenCalledWith({
index: '.internal.alerts-test.alerts-default-000001',
body: {
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
},
});
@ -309,11 +307,9 @@ describe('createConcreteWriteIndex', () => {
} else {
expect(clusterClient.indices.create).toHaveBeenCalledWith({
index: '.internal.alerts-test.alerts-default-000001',
body: {
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
},
});
@ -359,11 +355,9 @@ describe('createConcreteWriteIndex', () => {
if (!useDataStream) {
expect(clusterClient.indices.create).toHaveBeenCalledWith({
index: '.internal.alerts-test.alerts-default-000001',
body: {
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
},
});
@ -399,11 +393,9 @@ describe('createConcreteWriteIndex', () => {
if (!useDataStream) {
expect(clusterClient.indices.create).toHaveBeenCalledWith({
index: '.internal.alerts-test.alerts-default-000001',
body: {
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
},
});
@ -631,11 +623,9 @@ describe('createConcreteWriteIndex', () => {
} else {
expect(clusterClient.indices.create).toHaveBeenCalledWith({
index: '.internal.alerts-test.alerts-default-000001',
body: {
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
},
});
@ -670,11 +660,9 @@ describe('createConcreteWriteIndex', () => {
} else {
expect(clusterClient.indices.create).toHaveBeenCalledWith({
index: '.internal.alerts-test.alerts-default-000001',
body: {
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
aliases: {
'.alerts-test.alerts-default': {
is_write_index: true,
},
},
});
@ -756,23 +744,21 @@ describe('setConcreteWriteIndex', () => {
'Attempting to set index: .internal.alerts-test.alerts-default-000004 as the write index for alias: .alerts-test.alerts-default.'
);
expect(clusterClient.indices.updateAliases).toHaveBeenCalledWith({
body: {
actions: [
{
remove: {
alias: '.alerts-test.alerts-default',
index: '.internal.alerts-test.alerts-default-000004',
},
actions: [
{
remove: {
alias: '.alerts-test.alerts-default',
index: '.internal.alerts-test.alerts-default-000004',
},
{
add: {
alias: '.alerts-test.alerts-default',
index: '.internal.alerts-test.alerts-default-000004',
is_write_index: true,
},
},
{
add: {
alias: '.alerts-test.alerts-default',
index: '.internal.alerts-test.alerts-default-000004',
is_write_index: true,
},
],
},
},
],
});
expect(logger.info).toHaveBeenCalledWith(
'Successfully set index: .internal.alerts-test.alerts-default-000004 as the write index for alias: .alerts-test.alerts-default.'

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import { IndicesSimulateIndexTemplateResponse } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { IndicesSimulateIndexTemplateResponse } from '@elastic/elasticsearch/lib/api/types';
import { Logger, ElasticsearchClient } from '@kbn/core/server';
import { get, sortBy } from 'lodash';
import { IIndexPatternString } from '../resource_installer_utils';
@ -45,7 +45,7 @@ const updateTotalFieldLimitSetting = async ({
() =>
esClient.indices.putSettings({
index,
body: { 'index.mapping.total_fields.limit': totalFieldsLimit },
settings: { 'index.mapping.total_fields.limit': totalFieldsLimit },
}),
{ logger }
);
@ -90,7 +90,7 @@ const updateUnderlyingMapping = async ({
try {
await retryTransientEsErrors(
() => esClient.indices.putMapping({ index, body: simulatedMapping }),
() => esClient.indices.putMapping({ index, ...simulatedMapping }),
{ logger }
);
@ -183,18 +183,16 @@ export async function setConcreteWriteIndex(opts: SetConcreteWriteIndexOpts) {
await retryTransientEsErrors(
() =>
esClient.indices.updateAliases({
body: {
actions: [
{ remove: { index: concreteIndex.index, alias: concreteIndex.alias } },
{
add: {
index: concreteIndex.index,
alias: concreteIndex.alias,
is_write_index: true,
},
actions: [
{ remove: { index: concreteIndex.index, alias: concreteIndex.alias } },
{
add: {
index: concreteIndex.index,
alias: concreteIndex.alias,
is_write_index: true,
},
],
},
},
],
}),
{ logger }
);

View file

@ -5,6 +5,7 @@
* 2.0.
*/
import { elasticsearchServiceMock, loggingSystemMock } from '@kbn/core/server/mocks';
import { ClusterPutComponentTemplateRequest } from '@elastic/elasticsearch/lib/api/types';
import { errors as EsErrors } from '@elastic/elasticsearch';
import { createOrUpdateComponentTemplate } from './create_or_update_component_template';
import { elasticsearchClientMock } from '@kbn/core-elasticsearch-client-server-mocks';
@ -13,7 +14,7 @@ const randomDelayMultiplier = 0.01;
const logger = loggingSystemMock.createLogger();
const clusterClient = elasticsearchServiceMock.createClusterClient().asInternalUser;
const ComponentTemplate = {
const ComponentTemplate: ClusterPutComponentTemplateRequest = {
name: 'test-mappings',
_meta: {
managed: true,
@ -176,14 +177,12 @@ describe('createOrUpdateComponentTemplate', () => {
expect(clusterClient.indices.putIndexTemplate).toHaveBeenCalledTimes(1);
expect(clusterClient.indices.putIndexTemplate).toHaveBeenCalledWith({
name: existingIndexTemplate.name,
body: {
...existingIndexTemplate.index_template,
template: {
...existingIndexTemplate.index_template.template,
settings: {
...existingIndexTemplate.index_template.template?.settings,
'index.mapping.total_fields.limit': 2500,
},
...existingIndexTemplate.index_template,
template: {
...existingIndexTemplate.index_template.template,
settings: {
...existingIndexTemplate.index_template.template?.settings,
'index.mapping.total_fields.limit': 2500,
},
},
});
@ -282,14 +281,12 @@ describe('createOrUpdateComponentTemplate', () => {
expect(clusterClient.indices.putIndexTemplate).toHaveBeenCalledTimes(1);
expect(clusterClient.indices.putIndexTemplate).toHaveBeenCalledWith({
name: existingIndexTemplate.name,
body: {
...existingIndexTemplate.index_template,
template: {
...existingIndexTemplate.index_template.template,
settings: {
...existingIndexTemplate.index_template.template?.settings,
'index.mapping.total_fields.limit': 2500,
},
...existingIndexTemplate.index_template,
template: {
...existingIndexTemplate.index_template.template,
settings: {
...existingIndexTemplate.index_template.template?.settings,
'index.mapping.total_fields.limit': 2500,
},
},
});

View file

@ -8,7 +8,7 @@
import {
ClusterPutComponentTemplateRequest,
IndicesGetIndexTemplateIndexTemplateItem,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import { Logger, ElasticsearchClient } from '@kbn/core/server';
import { asyncForEach } from '@kbn/std';
import { retryTransientEsErrors } from './retry_transient_es_errors';
@ -50,14 +50,12 @@ const getIndexTemplatesUsingComponentTemplate = async (
() =>
esClient.indices.putIndexTemplate({
name: template.name,
body: {
...template.index_template,
template: {
...template.index_template.template,
settings: {
...template.index_template.template?.settings,
'index.mapping.total_fields.limit': totalFieldsLimit,
},
...template.index_template,
template: {
...template.index_template.template,
settings: {
...template.index_template.template?.settings,
'index.mapping.total_fields.limit': totalFieldsLimit,
},
},
}),

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import { IlmPolicy } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { IlmPolicy } from '@elastic/elasticsearch/lib/api/types';
import { Logger, ElasticsearchClient } from '@kbn/core/server';
import { retryTransientEsErrors } from './retry_transient_es_errors';
import { DataStreamAdapter } from './data_stream_adapter';

View file

@ -16,44 +16,42 @@ const clusterClient = elasticsearchServiceMock.createClusterClient().asInternalU
const IndexTemplate = (namespace: string = 'default', useDataStream: boolean = false) => ({
name: `.alerts-test.alerts-${namespace}-index-template`,
body: {
_meta: {
kibana: {
version: '8.6.1',
},
managed: true,
namespace,
_meta: {
kibana: {
version: '8.6.1',
},
composed_of: ['mappings1', 'framework-mappings'],
index_patterns: [`.internal.alerts-test.alerts-${namespace}-*`],
template: {
mappings: {
_meta: {
kibana: {
version: '8.6.1',
},
managed: true,
namespace,
},
dynamic: false,
},
settings: {
auto_expand_replicas: '0-1',
hidden: true,
...(useDataStream
? {}
: {
'index.lifecycle': {
name: 'test-ilm-policy',
rollover_alias: `.alerts-test.alerts-${namespace}`,
},
}),
'index.mapping.ignore_malformed': true,
'index.mapping.total_fields.limit': 2500,
},
},
priority: namespace.length,
managed: true,
namespace,
},
composed_of: ['mappings1', 'framework-mappings'],
index_patterns: [`.internal.alerts-test.alerts-${namespace}-*`],
template: {
mappings: {
_meta: {
kibana: {
version: '8.6.1',
},
managed: true,
namespace,
},
dynamic: false,
},
settings: {
auto_expand_replicas: '0-1',
hidden: true,
...(useDataStream
? {}
: {
'index.lifecycle': {
name: 'test-ilm-policy',
rollover_alias: `.alerts-test.alerts-${namespace}`,
},
}),
'index.mapping.ignore_malformed': true,
'index.mapping.total_fields.limit': 2500,
},
},
priority: namespace.length,
});
const SimulateTemplateResponse = {

View file

@ -9,7 +9,7 @@ import {
IndicesPutIndexTemplateRequest,
MappingTypeMapping,
Metadata,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import { Logger, ElasticsearchClient } from '@kbn/core/server';
import { isEmpty } from 'lodash';
import { IIndexPatternString } from '../resource_installer_utils';
@ -57,42 +57,40 @@ export const getIndexTemplate = ({
return {
name: indexPatterns.template,
body: {
...(dataStreamFields.data_stream ? { data_stream: dataStreamFields.data_stream } : {}),
index_patterns: dataStreamFields.index_patterns,
composed_of: componentTemplateRefs,
template: {
settings: {
auto_expand_replicas: '0-1',
hidden: true,
...(dataStreamAdapter.isUsingDataStreams()
? {}
: {
'index.lifecycle': indexLifecycle,
}),
'index.mapping.ignore_malformed': true,
'index.mapping.total_fields.limit': totalFieldsLimit,
},
mappings: {
dynamic: false,
_meta: indexMetadata,
},
...(indexPatterns.secondaryAlias
? {
aliases: {
[indexPatterns.secondaryAlias]: {
is_write_index: false,
},
},
}
: {}),
...(dataStreamFields.data_stream ? { data_stream: dataStreamFields.data_stream } : {}),
index_patterns: dataStreamFields.index_patterns,
composed_of: componentTemplateRefs,
template: {
settings: {
auto_expand_replicas: '0-1',
hidden: true,
...(dataStreamAdapter.isUsingDataStreams()
? {}
: {
'index.lifecycle': indexLifecycle,
}),
'index.mapping.ignore_malformed': true,
'index.mapping.total_fields.limit': totalFieldsLimit,
},
_meta: indexMetadata,
// By setting the priority to namespace.length, we ensure that if one namespace is a prefix of another namespace
// then newly created indices will use the matching template with the *longest* namespace
priority: namespace.length,
mappings: {
dynamic: false,
_meta: indexMetadata,
},
...(indexPatterns.secondaryAlias
? {
aliases: {
[indexPatterns.secondaryAlias]: {
is_write_index: false,
},
},
}
: {}),
},
_meta: indexMetadata,
// By setting the priority to namespace.length, we ensure that if one namespace is a prefix of another namespace
// then newly created indices will use the matching template with the *longest* namespace
priority: namespace.length,
};
};

View file

@ -208,11 +208,9 @@ async function createAliasStream(opts: CreateConcreteWriteIndexOpts): Promise<vo
() =>
esClient.indices.create({
index: indexPatterns.name,
body: {
aliases: {
[indexPatterns.alias]: {
is_write_index: true,
},
aliases: {
[indexPatterns.alias]: {
is_write_index: true,
},
},
}),

View file

@ -59,42 +59,45 @@ describe('setAlertsToUntracked()', () => {
Array [
Object {
"allow_no_indices": true,
"body": Object {
"conflicts": "proceed",
"query": Object {
"bool": Object {
"must": Array [
Object {
"term": Object {
"kibana.alert.status": Object {
"value": "active",
},
"conflicts": "proceed",
"index": Array [
"test-index",
],
"query": Object {
"bool": Object {
"must": Array [
Object {
"term": Object {
"kibana.alert.status": Object {
"value": "active",
},
},
Object {
"bool": Object {
"should": Array [
Object {
"term": Object {
"kibana.alert.rule.uuid": Object {
"value": "test-rule",
},
},
Object {
"bool": Object {
"should": Array [
Object {
"term": Object {
"kibana.alert.rule.uuid": Object {
"value": "test-rule",
},
},
],
},
},
],
},
Object {
"bool": Object {
"should": Array [],
},
},
Object {
"bool": Object {
"should": Array [],
},
],
},
},
],
},
"script": Object {
"lang": "painless",
"source": "
},
"refresh": true,
"script": Object {
"lang": "painless",
"source": "
if (!ctx._source.containsKey('kibana.alert.status') || ctx._source['kibana.alert.status'].empty) {
ctx._source.kibana.alert.status = 'untracked';
ctx._source.kibana.alert.end = '2023-03-28T22:27:28.159Z';
@ -104,12 +107,7 @@ describe('setAlertsToUntracked()', () => {
ctx._source['kibana.alert.end'] = '2023-03-28T22:27:28.159Z';
ctx._source['kibana.alert.time_range'].lte = '2023-03-28T22:27:28.159Z';
}",
},
},
"index": Array [
"test-index",
],
"refresh": true,
},
]
`);
@ -128,42 +126,45 @@ describe('setAlertsToUntracked()', () => {
Array [
Object {
"allow_no_indices": true,
"body": Object {
"conflicts": "proceed",
"query": Object {
"bool": Object {
"must": Array [
Object {
"term": Object {
"kibana.alert.status": Object {
"value": "active",
},
"conflicts": "proceed",
"index": Array [
"test-index",
],
"query": Object {
"bool": Object {
"must": Array [
Object {
"term": Object {
"kibana.alert.status": Object {
"value": "active",
},
},
Object {
"bool": Object {
"should": Array [],
},
},
Object {
"bool": Object {
"should": Array [],
},
Object {
"bool": Object {
"should": Array [
Object {
"term": Object {
"kibana.alert.uuid": Object {
"value": "test-alert",
},
},
Object {
"bool": Object {
"should": Array [
Object {
"term": Object {
"kibana.alert.uuid": Object {
"value": "test-alert",
},
},
],
},
},
],
},
],
},
},
],
},
"script": Object {
"lang": "painless",
"source": "
},
"refresh": true,
"script": Object {
"lang": "painless",
"source": "
if (!ctx._source.containsKey('kibana.alert.status') || ctx._source['kibana.alert.status'].empty) {
ctx._source.kibana.alert.status = 'untracked';
ctx._source.kibana.alert.end = '2023-03-28T22:27:28.159Z';
@ -173,12 +174,7 @@ describe('setAlertsToUntracked()', () => {
ctx._source['kibana.alert.end'] = '2023-03-28T22:27:28.159Z';
ctx._source['kibana.alert.time_range'].lte = '2023-03-28T22:27:28.159Z';
}",
},
},
"index": Array [
"test-index",
],
"refresh": true,
},
]
`);
@ -457,63 +453,59 @@ describe('setAlertsToUntracked()', () => {
expect(clusterClient.updateByQuery).toHaveBeenCalledWith(
expect.objectContaining({
body: expect.objectContaining({
query: {
bool: {
must: [
{
term: {
'kibana.alert.status': {
value: 'active', // This has to be active
query: {
bool: {
must: [
{
term: {
'kibana.alert.status': {
value: 'active', // This has to be active
},
},
},
],
filter: [
{
bool: {
must: {
term: {
'kibana.alert.rule.name': 'test',
},
},
},
],
filter: [
{
bool: {
must: {
term: {
'kibana.alert.rule.name': 'test',
},
},
},
},
],
},
},
],
},
}),
},
})
);
expect(clusterClient.search).toHaveBeenCalledWith(
expect.objectContaining({
body: expect.objectContaining({
query: {
bool: {
must: [
{
term: {
'kibana.alert.status': {
value: 'untracked', // This has to be untracked
query: {
bool: {
must: [
{
term: {
'kibana.alert.status': {
value: 'untracked', // This has to be untracked
},
},
},
],
filter: [
{
bool: {
must: {
term: {
'kibana.alert.rule.name': 'test',
},
},
},
],
filter: [
{
bool: {
must: {
term: {
'kibana.alert.rule.name': 'test',
},
},
},
},
],
},
},
],
},
}),
},
})
);
@ -596,32 +588,30 @@ describe('setAlertsToUntracked()', () => {
expect(clusterClient.updateByQuery).toHaveBeenCalledWith(
expect.objectContaining({
body: expect.objectContaining({
query: {
bool: {
must: [
{
term: {
'kibana.alert.status': {
value: 'active', // This has to be active
query: {
bool: {
must: [
{
term: {
'kibana.alert.status': {
value: 'active', // This has to be active
},
},
},
],
filter: [
{
bool: {
must: {
term: {
'kibana.alert.rule.name': 'test',
},
},
},
],
filter: [
{
bool: {
must: {
term: {
'kibana.alert.rule.name': 'test',
},
},
},
},
],
},
},
],
},
}),
},
})
);

View file

@ -20,7 +20,7 @@ import {
ALERT_UUID,
AlertStatus,
} from '@kbn/rule-data-utils';
import type { QueryDslQueryContainer } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type { QueryDslQueryContainer } from '@elastic/elasticsearch/lib/api/types';
import type { RulesClientContext } from '../../rules_client';
import { AlertingAuthorizationEntity } from '../../authorization/types';
@ -125,14 +125,12 @@ const ensureAuthorizedToUntrack = async (params: SetAlertsToUntrackedParamsWithD
const response = await esClient.search<never, ConsumersAndRuleTypesAggregation>({
index: indices,
allow_no_indices: true,
body: {
size: 0,
query: getUntrackQuery(params, ALERT_STATUS_ACTIVE),
aggs: {
ruleTypeIds: {
terms: { field: ALERT_RULE_TYPE_ID },
aggs: { consumers: { terms: { field: ALERT_RULE_CONSUMER } } },
},
size: 0,
query: getUntrackQuery(params, ALERT_STATUS_ACTIVE),
aggs: {
ruleTypeIds: {
terms: { field: ALERT_RULE_TYPE_ID },
aggs: { consumers: { terms: { field: ALERT_RULE_CONSUMER } } },
},
},
});
@ -218,14 +216,12 @@ export async function setAlertsToUntracked(
const response = await esClient.updateByQuery({
index: indices,
allow_no_indices: true,
body: {
conflicts: 'proceed',
script: {
source: getUntrackUpdatePainlessScript(new Date()),
lang: 'painless',
},
query: getUntrackQuery(params, ALERT_STATUS_ACTIVE),
conflicts: 'proceed',
script: {
source: getUntrackUpdatePainlessScript(new Date()),
lang: 'painless',
},
query: getUntrackQuery(params, ALERT_STATUS_ACTIVE),
refresh: true,
});
@ -259,11 +255,9 @@ export async function setAlertsToUntracked(
const searchResponse = await esClient.search({
index: indices,
allow_no_indices: true,
body: {
_source: [ALERT_RULE_UUID, ALERT_UUID],
size: total,
query: getUntrackQuery(params, ALERT_STATUS_UNTRACKED),
},
_source: [ALERT_RULE_UUID, ALERT_UUID],
size: total,
query: getUntrackQuery(params, ALERT_STATUS_UNTRACKED),
});
return searchResponse.hits.hits.map((hit) => hit._source) as UntrackedAlertsResult;

View file

@ -4,7 +4,7 @@
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import type { AggregationsAggregationContainer } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type { AggregationsAggregationContainer } from '@elastic/elasticsearch/lib/api/types';
import { TypeOf } from '@kbn/config-schema';
import { KueryNode } from '@kbn/es-query';
import { aggregateOptionsSchema } from '../schemas';

View file

@ -6,7 +6,7 @@
*/
import Boom from '@hapi/boom';
import type { AggregationsAggregationContainer } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type { AggregationsAggregationContainer } from '@elastic/elasticsearch/lib/api/types';
const ALLOW_FIELDS = [
'alert.attributes.executionStatus.status',

View file

@ -8,7 +8,7 @@
import { remove } from 'lodash';
import { EsQueryConfig, nodeBuilder, toElasticsearchQuery, KueryNode } from '@kbn/es-query';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { AuthorizedRuleTypes } from './alerting_authorization';
export enum AlertingAuthorizationFilterType {

View file

@ -21,7 +21,7 @@ import {
import {
AggregationsStringTermsBucketKeys,
AggregationsTermsAggregateBase,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import { ACTION_TASK_PARAMS_SAVED_OBJECT_TYPE } from '@kbn/actions-plugin/server/constants/saved_objects';
import { InvalidateAPIKeyResult } from '../rules_client';
import { AlertingConfig } from '../config';

View file

@ -5,11 +5,7 @@
* 2.0.
*/
import type {
Sort,
FieldSort,
SortCombinations,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type { Sort, FieldSort, SortCombinations } from '@elastic/elasticsearch/lib/api/types';
const getFormattedSort = (sort: SortCombinations) => {
if (typeof sort === 'string') {

View file

@ -7,7 +7,7 @@
import { i18n } from '@kbn/i18n';
import { KueryNode } from '@kbn/es-query';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import Boom from '@hapi/boom';
import { flatMap, get, isEmpty } from 'lodash';
import { AggregateEventsBySavedObjectResult } from '@kbn/event-log-plugin/server';

View file

@ -11,7 +11,7 @@ import { elasticsearchServiceMock } from '@kbn/core/server/mocks';
import { createWrappedScopedClusterClientFactory } from './wrap_scoped_cluster_client';
const esQuery = {
body: { query: { bool: { filter: { range: { '@timestamp': { gte: 0 } } } } } },
query: { bool: { filter: { range: { '@timestamp': { gte: 0 } } } } },
};
const eqlQuery = {
index: 'foo',
@ -20,9 +20,7 @@ const eqlQuery = {
const esqlQueryRequest = {
method: 'POST',
path: '/_query',
body: {
query: 'from .kibana_task_manager',
},
query: 'from .kibana_task_manager',
};
let logger = loggingSystemMock.create().get();
@ -73,7 +71,7 @@ describe('wrapScopedClusterClient', () => {
expect(scopedClusterClient.asInternalUser.search).not.toHaveBeenCalled();
expect(scopedClusterClient.asCurrentUser.search).not.toHaveBeenCalled();
expect(loggingSystemMock.collect(logger).debug[0][0]).toEqual(
`executing query for rule .test-rule-type:abcdefg in space my-space - {\"body\":{\"query\":{\"bool\":{\"filter\":{\"range\":{\"@timestamp\":{\"gte\":0}}}}}}} - with options {} and 5000ms requestTimeout`
`executing query for rule .test-rule-type:abcdefg in space my-space - {\"query\":{\"bool\":{\"filter\":{\"range\":{\"@timestamp\":{\"gte\":0}}}}}} - with options {} and 5000ms requestTimeout`
);
expect(loggingSystemMock.collect(logger).trace[0][0]).toEqual(
`result of executing query for rule .test-rule-type:abcdefg in space my-space: {\"body\":{},\"statusCode\":200,\"headers\":{\"x-elastic-product\":\"Elasticsearch\"},\"warnings\":[],\"meta\":{}}`
@ -102,7 +100,7 @@ describe('wrapScopedClusterClient', () => {
expect(scopedClusterClient.asInternalUser.search).not.toHaveBeenCalled();
expect(scopedClusterClient.asCurrentUser.search).not.toHaveBeenCalled();
expect(loggingSystemMock.collect(logger).debug[0][0]).toEqual(
`executing query for rule .test-rule-type:abcdefg in space my-space - {\"body\":{\"query\":{\"bool\":{\"filter\":{\"range\":{\"@timestamp\":{\"gte\":0}}}}}}} - with options {} and 5000ms requestTimeout`
`executing query for rule .test-rule-type:abcdefg in space my-space - {\"query\":{\"bool\":{\"filter\":{\"range\":{\"@timestamp\":{\"gte\":0}}}}}} - with options {} and 5000ms requestTimeout`
);
expect(loggingSystemMock.collect(logger).trace[0][0]).toEqual(
`result of executing query for rule .test-rule-type:abcdefg in space my-space: {\"body\":{},\"statusCode\":200,\"headers\":{\"x-elastic-product\":\"Elasticsearch\"},\"warnings\":[],\"meta\":{}}`
@ -136,7 +134,7 @@ describe('wrapScopedClusterClient', () => {
expect(scopedClusterClient.asCurrentUser.search).not.toHaveBeenCalled();
expect(loggingSystemMock.collect(logger).debug[0][0]).toEqual(
`executing query for rule .test-rule-type:abcdefg in space my-space - {\"body\":{\"query\":{\"bool\":{\"filter\":{\"range\":{\"@timestamp\":{\"gte\":0}}}}}}} - with options {\"ignore\":[404],\"requestTimeout\":10000} and 5000ms requestTimeout`
`executing query for rule .test-rule-type:abcdefg in space my-space - {\"query\":{\"bool\":{\"filter\":{\"range\":{\"@timestamp\":{\"gte\":0}}}}}} - with options {\"ignore\":[404],\"requestTimeout\":10000} and 5000ms requestTimeout`
);
expect(loggingSystemMock.collect(logger).trace[0][0]).toEqual(
`result of executing query for rule .test-rule-type:abcdefg in space my-space: {\"body\":{},\"statusCode\":200,\"headers\":{\"x-elastic-product\":\"Elasticsearch\"},\"warnings\":[],\"meta\":{}}`
@ -161,11 +159,11 @@ describe('wrapScopedClusterClient', () => {
).rejects.toThrowErrorMatchingInlineSnapshot(`"something went wrong!"`);
expect(loggingSystemMock.collect(logger).debug[0][0]).toEqual(
`executing query for rule .test-rule-type:abcdefg in space my-space - {\"body\":{\"query\":{\"bool\":{\"filter\":{\"range\":{\"@timestamp\":{\"gte\":0}}}}}}} - with options {}`
`executing query for rule .test-rule-type:abcdefg in space my-space - {\"query\":{\"bool\":{\"filter\":{\"range\":{\"@timestamp\":{\"gte\":0}}}}}} - with options {}`
);
expect(logger.trace).not.toHaveBeenCalled();
expect(logger.warn).toHaveBeenCalledWith(
`executing query for rule .test-rule-type:abcdefg in space my-space - {\"body\":{\"query\":{\"bool\":{\"filter\":{\"range\":{\"@timestamp\":{\"gte\":0}}}}}}} - with options {}`
`executing query for rule .test-rule-type:abcdefg in space my-space - {\"query\":{\"bool\":{\"filter\":{\"range\":{\"@timestamp\":{\"gte\":0}}}}}} - with options {}`
);
});
@ -195,7 +193,7 @@ describe('wrapScopedClusterClient', () => {
expect(stats.esSearchDurationMs).toEqual(0);
expect(loggingSystemMock.collect(logger).debug[0][0]).toEqual(
`executing query for rule .test-rule-type:abcdefg in space my-space - {\"body\":{\"query\":{\"bool\":{\"filter\":{\"range\":{\"@timestamp\":{\"gte\":0}}}}}}} - with options {}`
`executing query for rule .test-rule-type:abcdefg in space my-space - {\"query\":{\"bool\":{\"filter\":{\"range\":{\"@timestamp\":{\"gte\":0}}}}}} - with options {}`
);
expect(loggingSystemMock.collect(logger).trace[0][0]).toEqual(
`result of executing query for rule .test-rule-type:abcdefg in space my-space: {}`
@ -230,7 +228,7 @@ describe('wrapScopedClusterClient', () => {
expect(stats.esSearchDurationMs).toEqual(999);
expect(loggingSystemMock.collect(logger).debug[0][0]).toEqual(
`executing query for rule .test-rule-type:abcdefg in space my-space - {\"body\":{\"query\":{\"bool\":{\"filter\":{\"range\":{\"@timestamp\":{\"gte\":0}}}}}}} - with options {}`
`executing query for rule .test-rule-type:abcdefg in space my-space - {\"query\":{\"bool\":{\"filter\":{\"range\":{\"@timestamp\":{\"gte\":0}}}}}} - with options {}`
);
expect(loggingSystemMock.collect(logger).trace[0][0]).toEqual(
`result of executing query for rule .test-rule-type:abcdefg in space my-space: {\"took\":333}`
@ -258,7 +256,7 @@ describe('wrapScopedClusterClient', () => {
);
expect(loggingSystemMock.collect(logger).debug[0][0]).toEqual(
`executing query for rule .test-rule-type:abcdefg in space my-space - {\"body\":{\"query\":{\"bool\":{\"filter\":{\"range\":{\"@timestamp\":{\"gte\":0}}}}}}} - with options {}`
`executing query for rule .test-rule-type:abcdefg in space my-space - {\"query\":{\"bool\":{\"filter\":{\"range\":{\"@timestamp\":{\"gte\":0}}}}}} - with options {}`
);
expect(logger.trace).not.toHaveBeenCalled();
expect(logger.warn).not.toHaveBeenCalled();
@ -459,7 +457,7 @@ describe('wrapScopedClusterClient', () => {
expect(scopedClusterClient.asCurrentUser.search).not.toHaveBeenCalled();
expect(loggingSystemMock.collect(logger).debug[0][0]).toEqual(
'executing ES|QL query for rule .test-rule-type:abcdefg in space my-space - {"method":"POST","path":"/_query","body":{"query":"from .kibana_task_manager"}} - with options {} and 5000ms requestTimeout'
'executing ES|QL query for rule .test-rule-type:abcdefg in space my-space - {"method":"POST","path":"/_query","query":"from .kibana_task_manager"} - with options {} and 5000ms requestTimeout'
);
expect(logger.warn).not.toHaveBeenCalled();
});
@ -485,7 +483,7 @@ describe('wrapScopedClusterClient', () => {
expect(scopedClusterClient.asInternalUser.search).not.toHaveBeenCalled();
expect(scopedClusterClient.asCurrentUser.search).not.toHaveBeenCalled();
expect(loggingSystemMock.collect(logger).debug[0][0]).toEqual(
'executing ES|QL query for rule .test-rule-type:abcdefg in space my-space - {"method":"POST","path":"/_query","body":{"query":"from .kibana_task_manager"}} - with options {} and 5000ms requestTimeout'
'executing ES|QL query for rule .test-rule-type:abcdefg in space my-space - {"method":"POST","path":"/_query","query":"from .kibana_task_manager"} - with options {} and 5000ms requestTimeout'
);
expect(logger.warn).not.toHaveBeenCalled();
});
@ -516,7 +514,7 @@ describe('wrapScopedClusterClient', () => {
expect(scopedClusterClient.asCurrentUser.search).not.toHaveBeenCalled();
expect(loggingSystemMock.collect(logger).debug[0][0]).toEqual(
'executing ES|QL query for rule .test-rule-type:abcdefg in space my-space - {"method":"POST","path":"/_query","body":{"query":"from .kibana_task_manager"}} - with options {"ignore":[404],"requestTimeout":10000} and 5000ms requestTimeout'
'executing ES|QL query for rule .test-rule-type:abcdefg in space my-space - {"method":"POST","path":"/_query","query":"from .kibana_task_manager"} - with options {"ignore":[404],"requestTimeout":10000} and 5000ms requestTimeout'
);
expect(logger.warn).not.toHaveBeenCalled();
});
@ -572,7 +570,7 @@ describe('wrapScopedClusterClient', () => {
expect(stats.totalSearchDurationMs).toBeGreaterThan(-1);
expect(loggingSystemMock.collect(logger).debug[0][0]).toEqual(
`executing ES|QL query for rule .test-rule-type:abcdefg in space my-space - {\"method\":\"POST\",\"path\":\"/_query\",\"body\":{\"query\":\"from .kibana_task_manager\"}} - with options {}`
`executing ES|QL query for rule .test-rule-type:abcdefg in space my-space - {\"method\":\"POST\",\"path\":\"/_query\",\"query\":\"from .kibana_task_manager\"} - with options {}`
);
expect(logger.warn).not.toHaveBeenCalled();
});

View file

@ -23,7 +23,7 @@ import type {
SearchRequest as SearchRequestWithBody,
AggregationsAggregate,
EqlSearchRequest as EqlSearchRequestWithBody,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import type { IScopedClusterClient, ElasticsearchClient, Logger } from '@kbn/core/server';
import { SearchMetrics, RuleInfo } from './types';

View file

@ -7,7 +7,7 @@
import type {
AggregationsKeyedPercentiles,
AggregationsPercentilesAggregateBase,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import { MonitoringCollectionSetup } from '@kbn/monitoring-collection-plugin/server';
import { aggregateTaskOverduePercentilesForType } from '@kbn/task-manager-plugin/server';
import { CoreSetup } from '@kbn/core/server';

View file

@ -12,7 +12,7 @@ import { getRequestAbortedSignal } from '@kbn/data-plugin/server';
import { termsAggSuggestions } from '@kbn/unified-search-plugin/server/autocomplete/terms_agg';
import type { ConfigSchema } from '@kbn/unified-search-plugin/server/config';
import { getKbnServerError, reportServerError } from '@kbn/kibana-utils-plugin/server';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { ALERT_RULE_CONSUMER, ALERT_RULE_TYPE_ID, SPACE_IDS } from '@kbn/rule-data-utils';
import { verifyAccessAndContext } from '../lib';

View file

@ -14,7 +14,7 @@ import type { ConfigSchema } from '@kbn/unified-search-plugin/server/config';
import { UsageCounter } from '@kbn/usage-collection-plugin/server';
import { getKbnServerError, reportServerError } from '@kbn/kibana-utils-plugin/server';
import { ALERTING_CASES_SAVED_OBJECT_INDEX } from '@kbn/core-saved-objects-server/src/saved_objects_index_pattern';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { verifyAccessAndContext } from '../lib';
import { ILicenseState } from '../../lib';

View file

@ -6,7 +6,7 @@
*/
import { KueryNode } from '@kbn/es-query';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { SanitizedRuleWithLegacyId } from '../../types';
import { convertEsSortToEventLogSort } from '../../lib';
import {

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { KueryNode } from '@kbn/es-query';
import { SanitizedRuleWithLegacyId } from '../../types';
import {

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { RulesClient, ConstructorOptions } from '../rules_client';
import {
savedObjectsClientMock,

View file

@ -477,7 +477,7 @@ describe('Ad Hoc Task Runner', () => {
index: '.alerts-test.alerts-default',
refresh: 'wait_for',
require_alias: !useDataStreamForAlerts,
body: [
operations: [
{
create: {
_id: UUID,
@ -745,13 +745,13 @@ describe('Ad Hoc Task Runner', () => {
const bulkCall = clusterClient.bulk.mock.calls[0][0];
// @ts-ignore
expect(bulkCall.body[1][TIMESTAMP]).toEqual(schedule4.runAt);
expect(bulkCall.operations[1][TIMESTAMP]).toEqual(schedule4.runAt);
// @ts-ignore
expect(bulkCall.body[1][ALERT_START]).toEqual(schedule4.runAt);
expect(bulkCall.operations[1][ALERT_START]).toEqual(schedule4.runAt);
// @ts-ignore
expect(bulkCall.body[1][ALERT_TIME_RANGE]).toEqual({ gte: schedule4.runAt });
expect(bulkCall.operations[1][ALERT_TIME_RANGE]).toEqual({ gte: schedule4.runAt });
// @ts-ignore
expect(bulkCall.body[1][ALERT_RULE_EXECUTION_TIMESTAMP]).toEqual(DATE_1970);
expect(bulkCall.operations[1][ALERT_RULE_EXECUTION_TIMESTAMP]).toEqual(DATE_1970);
expect(internalSavedObjectsRepository.update).toHaveBeenCalledWith(
AD_HOC_RUN_SAVED_OBJECT_TYPE,
@ -852,13 +852,13 @@ describe('Ad Hoc Task Runner', () => {
const bulkCall = clusterClient.bulk.mock.calls[0][0];
// @ts-ignore
expect(bulkCall.body[1][TIMESTAMP]).toEqual(schedule5.runAt);
expect(bulkCall.operations[1][TIMESTAMP]).toEqual(schedule5.runAt);
// @ts-ignore
expect(bulkCall.body[1][ALERT_START]).toEqual(schedule5.runAt);
expect(bulkCall.operations[1][ALERT_START]).toEqual(schedule5.runAt);
// @ts-ignore
expect(bulkCall.body[1][ALERT_TIME_RANGE]).toEqual({ gte: schedule5.runAt });
expect(bulkCall.operations[1][ALERT_TIME_RANGE]).toEqual({ gte: schedule5.runAt });
// @ts-ignore
expect(bulkCall.body[1][ALERT_RULE_EXECUTION_TIMESTAMP]).toEqual(DATE_1970);
expect(bulkCall.operations[1][ALERT_RULE_EXECUTION_TIMESTAMP]).toEqual(DATE_1970);
expect(internalSavedObjectsRepository.update).toHaveBeenCalledWith(
AD_HOC_RUN_SAVED_OBJECT_TYPE,

View file

@ -593,7 +593,7 @@ describe('Task Runner', () => {
index: '.alerts-test.alerts-default',
refresh: 'wait_for',
require_alias: !useDataStreamForAlerts,
body: [
operations: [
{
create: {
_id: '5f6aa57d-3e22-484e-bae8-cbed868f4d28',

View file

@ -8,7 +8,7 @@
import type {
AggregationsTermsAggregateBase,
AggregationsStringTermsBucketKeys,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import { ElasticsearchClient, Logger } from '@kbn/core/server';
import { NUM_ALERTING_RULE_TYPES } from '../alerting_usage_collector';
@ -38,16 +38,14 @@ export async function getTotalAlertsCountAggregations({
const query = {
index: AAD_INDEX_PATTERN,
size: 0,
body: {
query: {
match_all: {},
},
aggs: {
by_rule_type_id: {
terms: {
field: 'kibana.alert.rule.rule_type_id',
size: NUM_ALERTING_RULE_TYPES,
},
query: {
match_all: {},
},
aggs: {
by_rule_type_id: {
terms: {
field: 'kibana.alert.rule.rule_type_id',
size: NUM_ALERTING_RULE_TYPES,
},
},
},

View file

@ -14,7 +14,7 @@ import type {
AggregationsTermsAggregateBase,
AggregationsStringTermsBucketKeys,
AggregationsBuckets,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import { ElasticsearchClient, Logger } from '@kbn/core/server';
import {
NUM_ALERTING_RULE_TYPES,
@ -136,21 +136,19 @@ export async function getExecutionsPerDayCount({
const query = {
index: eventLogIndex,
size: 0,
body: {
query: getProviderAndActionFilterForTimeRange('execute'),
aggs: {
...eventLogAggs,
by_rule_type_id: {
terms: {
field: 'rule.category',
size: NUM_ALERTING_RULE_TYPES,
},
aggs: eventLogAggs,
query: getProviderAndActionFilterForTimeRange('execute'),
aggs: {
...eventLogAggs,
by_rule_type_id: {
terms: {
field: 'rule.category',
size: NUM_ALERTING_RULE_TYPES,
},
by_execution_status: {
terms: {
field: 'event.outcome',
},
aggs: eventLogAggs,
},
by_execution_status: {
terms: {
field: 'event.outcome',
},
},
},
@ -229,14 +227,12 @@ export async function getExecutionTimeoutsPerDayCount({
const query = {
index: eventLogIndex,
size: 0,
body: {
query: getProviderAndActionFilterForTimeRange('execute-timeout'),
aggs: {
by_rule_type_id: {
terms: {
field: 'rule.category',
size: NUM_ALERTING_RULE_TYPES,
},
query: getProviderAndActionFilterForTimeRange('execute-timeout'),
aggs: {
by_rule_type_id: {
terms: {
field: 'rule.category',
size: NUM_ALERTING_RULE_TYPES,
},
},
},

View file

@ -10,7 +10,7 @@ import type {
AggregationsCardinalityAggregate,
AggregationsTermsAggregateBase,
AggregationsStringTermsBucketKeys,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import { ElasticsearchClient, Logger, ISavedObjectsRepository } from '@kbn/core/server';
import {
@ -83,18 +83,17 @@ export async function getTotalCountAggregations({
const query = {
index: alertIndex,
size: 0,
body: {
query: {
bool: {
// Aggregate over all rule saved objects
filter: [{ term: { type: 'alert' } }],
},
query: {
bool: {
// Aggregate over all rule saved objects
filter: [{ term: { type: 'alert' } }],
},
runtime_mappings: {
rule_action_count: {
type: 'long',
script: {
source: `
},
runtime_mappings: {
rule_action_count: {
type: 'long',
script: {
source: `
def alert = params._source['alert'];
if (alert != null) {
def actions = alert.actions;
@ -104,13 +103,13 @@ export async function getTotalCountAggregations({
emit(0);
}
}`,
},
},
// Convert schedule interval duration string from rule saved object to interval in seconds
rule_schedule_interval: {
type: 'long',
script: {
source: `
},
// Convert schedule interval duration string from rule saved object to interval in seconds
rule_schedule_interval: {
type: 'long',
script: {
source: `
int parsed = 0;
if (doc['alert.schedule.interval'].size() > 0) {
def interval = doc['alert.schedule.interval'].value;
@ -140,13 +139,13 @@ export async function getTotalCountAggregations({
}
emit(parsed);
`,
},
},
// Convert throttle interval duration string from rule saved object to interval in seconds
rule_throttle_interval: {
type: 'long',
script: {
source: `
},
// Convert throttle interval duration string from rule saved object to interval in seconds
rule_throttle_interval: {
type: 'long',
script: {
source: `
int parsed = 0;
if (doc['alert.throttle'].size() > 0) {
def throttle = doc['alert.throttle'].value;
@ -176,12 +175,12 @@ export async function getTotalCountAggregations({
}
emit(parsed);
`,
},
},
rule_with_tags: {
type: 'long',
script: {
source: `
},
rule_with_tags: {
type: 'long',
script: {
source: `
def rule = params._source['alert'];
if (rule != null && rule.tags != null) {
if (rule.tags.size() > 0) {
@ -190,12 +189,12 @@ export async function getTotalCountAggregations({
emit(0);
}
}`,
},
},
rule_snoozed: {
type: 'long',
script: {
source: `
},
rule_snoozed: {
type: 'long',
script: {
source: `
def rule = params._source['alert'];
if (rule != null && rule.snoozeSchedule != null) {
if (rule.snoozeSchedule.size() > 0) {
@ -204,23 +203,23 @@ export async function getTotalCountAggregations({
emit(0);
}
}`,
},
},
rule_muted: {
type: 'long',
script: {
source: `
},
rule_muted: {
type: 'long',
script: {
source: `
if (doc['alert.muteAll'].value == true) {
emit(1);
} else {
emit(0);
}`,
},
},
rule_with_muted_alerts: {
type: 'long',
script: {
source: `
},
rule_with_muted_alerts: {
type: 'long',
script: {
source: `
def rule = params._source['alert'];
if (rule != null && rule.mutedInstanceIds != null) {
if (rule.mutedInstanceIds.size() > 0) {
@ -229,64 +228,63 @@ export async function getTotalCountAggregations({
emit(0);
}
}`,
},
},
},
aggs: {
by_rule_type_id: {
terms: {
field: 'alert.alertTypeId',
size: NUM_ALERTING_RULE_TYPES,
},
},
aggs: {
by_rule_type_id: {
terms: {
field: 'alert.alertTypeId',
size: NUM_ALERTING_RULE_TYPES,
},
max_throttle_time: { max: { field: 'rule_throttle_interval' } },
min_throttle_time: { min: { field: 'rule_throttle_interval' } },
avg_throttle_time: { avg: { field: 'rule_throttle_interval' } },
max_interval_time: { max: { field: 'rule_schedule_interval' } },
min_interval_time: { min: { field: 'rule_schedule_interval' } },
avg_interval_time: { avg: { field: 'rule_schedule_interval' } },
max_actions_count: { max: { field: 'rule_action_count' } },
min_actions_count: { min: { field: 'rule_action_count' } },
avg_actions_count: { avg: { field: 'rule_action_count' } },
by_execution_status: {
terms: {
field: 'alert.executionStatus.status',
},
},
max_throttle_time: { max: { field: 'rule_throttle_interval' } },
min_throttle_time: { min: { field: 'rule_throttle_interval' } },
avg_throttle_time: { avg: { field: 'rule_throttle_interval' } },
max_interval_time: { max: { field: 'rule_schedule_interval' } },
min_interval_time: { min: { field: 'rule_schedule_interval' } },
avg_interval_time: { avg: { field: 'rule_schedule_interval' } },
max_actions_count: { max: { field: 'rule_action_count' } },
min_actions_count: { min: { field: 'rule_action_count' } },
avg_actions_count: { avg: { field: 'rule_action_count' } },
by_execution_status: {
terms: {
field: 'alert.executionStatus.status',
},
by_notify_when: {
terms: {
field: 'alert.notifyWhen',
},
},
by_notify_when: {
terms: {
field: 'alert.notifyWhen',
},
connector_types_by_consumers: {
terms: {
field: 'alert.consumer',
},
aggs: {
actions: {
nested: {
path: 'alert.actions',
},
aggs: {
connector_types: {
terms: {
field: 'alert.actions.actionTypeId',
},
},
connector_types_by_consumers: {
terms: {
field: 'alert.consumer',
},
aggs: {
actions: {
nested: {
path: 'alert.actions',
},
aggs: {
connector_types: {
terms: {
field: 'alert.actions.actionTypeId',
},
},
},
},
},
by_search_type: {
terms: {
field: 'alert.params.searchType',
},
},
sum_rules_with_tags: { sum: { field: 'rule_with_tags' } },
sum_rules_snoozed: { sum: { field: 'rule_snoozed' } },
sum_rules_muted: { sum: { field: 'rule_muted' } },
sum_rules_with_muted_alerts: { sum: { field: 'rule_with_muted_alerts' } },
},
by_search_type: {
terms: {
field: 'alert.params.searchType',
},
},
sum_rules_with_tags: { sum: { field: 'rule_with_tags' } },
sum_rules_snoozed: { sum: { field: 'rule_snoozed' } },
sum_rules_muted: { sum: { field: 'rule_muted' } },
sum_rules_with_muted_alerts: { sum: { field: 'rule_with_muted_alerts' } },
},
};
@ -439,25 +437,23 @@ export async function getTotalCountInUse({
const query = {
index: alertIndex,
size: 0,
body: {
query: {
bool: {
// Aggregate over only enabled rule saved objects
filter: [{ term: { type: 'alert' } }, { term: { 'alert.enabled': true } }],
query: {
bool: {
// Aggregate over only enabled rule saved objects
filter: [{ term: { type: 'alert' } }, { term: { 'alert.enabled': true } }],
},
},
aggs: {
namespaces_count: { cardinality: { field: 'namespaces' } },
by_rule_type_id: {
terms: {
field: 'alert.alertTypeId',
size: NUM_ALERTING_RULE_TYPES,
},
},
aggs: {
namespaces_count: { cardinality: { field: 'namespaces' } },
by_rule_type_id: {
terms: {
field: 'alert.alertTypeId',
size: NUM_ALERTING_RULE_TYPES,
},
},
by_search_type: {
terms: {
field: 'alert.params.searchType',
},
by_search_type: {
terms: {
field: 'alert.params.searchType',
},
},
},

View file

@ -10,7 +10,7 @@ import type {
AggregationsTermsAggregateBase,
AggregationsStringTermsBucketKeys,
AggregationsBuckets,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import { ElasticsearchClient, Logger } from '@kbn/core/server';
import { replaceDotSymbols } from './replace_dots_with_underscores';
import { NUM_ALERTING_RULE_TYPES } from '../alerting_usage_collector';
@ -42,58 +42,56 @@ export async function getFailedAndUnrecognizedTasksPerDay({
const query = {
index: taskManagerIndex,
size: 0,
body: {
query: {
bool: {
must: [
{
bool: {
should: [
{
term: {
'task.status': 'unrecognized',
},
query: {
bool: {
must: [
{
bool: {
should: [
{
term: {
'task.status': 'unrecognized',
},
{
term: {
'task.status': 'failed',
},
},
{
term: {
'task.status': 'failed',
},
],
},
},
{
wildcard: {
'task.taskType': {
value: 'alerting:*',
},
},
],
},
{
range: {
'task.runAt': {
gte: 'now-1d',
},
},
},
],
},
},
aggs: {
by_status: {
terms: {
field: 'task.status',
size: 10,
},
aggs: {
by_task_type: {
terms: {
field: 'task.taskType',
// Use number of alerting rule types because we're filtering by 'alerting:'
size: NUM_ALERTING_RULE_TYPES,
{
wildcard: {
'task.taskType': {
value: 'alerting:*',
},
},
},
{
range: {
'task.runAt': {
gte: 'now-1d',
},
},
},
],
},
},
aggs: {
by_status: {
terms: {
field: 'task.status',
size: 10,
},
aggs: {
by_task_type: {
terms: {
field: 'task.taskType',
// Use number of alerting rule types because we're filtering by 'alerting:'
size: NUM_ALERTING_RULE_TYPES,
},
},
},
},
},

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import { AggregationsBuckets } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { AggregationsBuckets } from '@elastic/elasticsearch/lib/api/types';
import { replaceDotSymbols } from './replace_dots_with_underscores';
export interface ConnectorsByConsumersBucket {

View file

@ -8,7 +8,7 @@
import {
AggregationsBuckets,
AggregationsStringTermsBucketKeys,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import { replaceDotSymbols } from './replace_dots_with_underscores';
export function parseSimpleRuleTypeBucket(

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
export * from '../../common/ui';

View file

@ -7,7 +7,7 @@
import { get } from 'lodash';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import type { SingleCaseMetricsResponse } from '../../../../../common/types/api';
import type { AggregationBuilder, AggregationResponse } from '../../types';

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import type {
CasesMetricsFeatureField,
SingleCaseMetricsFeatureField,

View file

@ -13,7 +13,7 @@ import type {
SavedObjectsUpdateResponse,
} from '@kbn/core/server';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { fromKueryExpression } from '@kbn/es-query';
import { AttachmentAttributesRt, AttachmentType } from '../../../common/types/domain';
import { decodeOrThrow } from '../../common/runtime_types';

View file

@ -10,7 +10,7 @@ import type {
SavedObjectsBulkResponse,
SavedObjectsFindResponse,
} from '@kbn/core/server';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { FILE_SO_TYPE } from '@kbn/files-plugin/common';
import { isSOError } from '../../../common/error';
import { decodeOrThrow } from '../../../common/runtime_types';

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import type {
Logger,
SavedObject,

View file

@ -18,7 +18,7 @@ import type {
SavedObjectsBulkDeleteOptions,
} from '@kbn/core/server';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { nodeBuilder } from '@kbn/es-query';
import type { Case, CaseStatuses, User } from '../../../common/types/domain';

View file

@ -11,7 +11,7 @@ import type {
SavedObjectsRawDoc,
} from '@kbn/core/server';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import type { KueryNode } from '@kbn/es-query';
import type { CaseUserActionDeprecatedResponse } from '../../../common/types/api';
import { UserActionTypes } from '../../../common/types/domain';

View file

@ -11,7 +11,7 @@ import { reject, isUndefined, isNumber, pick, isEmpty, get } from 'lodash';
import type { PublicMethodsOf } from '@kbn/utility-types';
import { Logger, ElasticsearchClient } from '@kbn/core/server';
import util from 'util';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { fromKueryExpression, toElasticsearchQuery, KueryNode, nodeBuilder } from '@kbn/es-query';
import { IEvent, IValidatedEvent, SAVED_OBJECT_REL_PRIMARY } from '../types';
import { AggregateOptionsType, FindOptionsType, QueryOptionsType } from '../event_log_client';
@ -399,7 +399,7 @@ export class ClusterClientAdapter<TDoc extends { body: AliasAny; index: string }
pick(queryOptions.findOptions, ['start', 'end', 'filter'])
);
const body: estypes.SearchRequest['body'] = {
const body: estypes.SearchRequest = {
size: perPage,
from: (page - 1) * perPage,
query,
@ -443,7 +443,7 @@ export class ClusterClientAdapter<TDoc extends { body: AliasAny; index: string }
pick(queryOptions.findOptions, ['start', 'end', 'filter'])
);
const body: estypes.SearchRequest['body'] = {
const body: estypes.SearchRequest = {
size: perPage,
from: (page - 1) * perPage,
query,
@ -487,7 +487,7 @@ export class ClusterClientAdapter<TDoc extends { body: AliasAny; index: string }
pick(queryOptions.aggregateOptions, ['start', 'end', 'filter'])
);
const body: estypes.SearchRequest['body'] = {
const body: estypes.SearchRequest = {
size: 0,
query,
aggs,
@ -523,7 +523,7 @@ export class ClusterClientAdapter<TDoc extends { body: AliasAny; index: string }
pick(queryOptions.aggregateOptions, ['start', 'end', 'filter'])
);
const body: estypes.SearchRequest['body'] = {
const body: estypes.SearchRequest = {
size: 0,
query,
aggs,

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { asyncForEach } from '@kbn/std';
import { groupBy } from 'lodash';
import pRetry, { FailedAttemptError } from 'p-retry';

View file

@ -9,7 +9,7 @@ import { omit } from 'lodash';
import { Observable } from 'rxjs';
import { schema, TypeOf } from '@kbn/config-schema';
import { IClusterClient, KibanaRequest } from '@kbn/core/server';
import * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import * as estypes from '@elastic/elasticsearch/lib/api/types';
import { SpacesServiceStart } from '@kbn/spaces-plugin/server';
import { KueryNode } from '@kbn/es-query';

View file

@ -93,8 +93,8 @@ export class ResourceInstaller {
logger,
esClient: clusterClient,
template: {
...ecsComponentTemplate,
name: ECS_COMPONENT_TEMPLATE_NAME,
body: ecsComponentTemplate,
},
totalFieldsLimit: TOTAL_FIELDS_LIMIT,
}),
@ -103,8 +103,8 @@ export class ResourceInstaller {
logger,
esClient: clusterClient,
template: {
...technicalComponentTemplate,
name: TECHNICAL_COMPONENT_TEMPLATE_NAME,
body: technicalComponentTemplate,
},
totalFieldsLimit: TOTAL_FIELDS_LIMIT,
}),
@ -168,13 +168,11 @@ export class ResourceInstaller {
esClient: clusterClient,
template: {
name: indexInfo.getComponentTemplateName(ct.name),
body: {
template: {
settings: ct.settings ?? {},
mappings: ct.mappings,
},
_meta: ct._meta,
template: {
settings: ct.settings ?? {},
mappings: ct.mappings,
},
_meta: ct._meta,
},
totalFieldsLimit: TOTAL_FIELDS_LIMIT,
});

View file

@ -4,7 +4,7 @@
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import type { ESSearchRequest } from '@kbn/es-types';
interface BuildSortedEventsQueryOpts {

View file

@ -6,7 +6,7 @@
*/
import { i18n } from '@kbn/i18n';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { AlertInstanceContext } from '@kbn/alerting-plugin/server';
import { EsQueryRuleParams } from './rule_type_params';
import { Comparator } from '../../../common/comparator_types';

View file

@ -6,7 +6,7 @@
*/
import { i18n } from '@kbn/i18n';
import { SearchResponse } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { SearchResponse } from '@elastic/elasticsearch/lib/api/types';
import { OnlyEsQueryRuleParams } from './types';
import { EsQueryRuleParams } from './rule_type_params';

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { validateConfig, validateParams } from '@kbn/actions-plugin/server/lib';
import { ConnectorUsageCollector } from '@kbn/actions-plugin/server/types';
import { actionsMock } from '@kbn/actions-plugin/server/mocks';
@ -202,24 +202,24 @@ describe('execute()', () => {
});
expect(scopedClusterClient.bulk.mock.calls).toMatchInlineSnapshot(`
Array [
Array [
Array [
Array [
Object {
"index": "index-value",
"operations": Array [
Object {
"body": Array [
Object {
"index": Object {
"op_type": "create",
},
},
Object {
"jim": "bob",
},
],
"index": "index-value",
"refresh": false,
"index": Object {
"op_type": "create",
},
},
Object {
"jim": "bob",
},
],
]
"refresh": false,
},
],
]
`);
// full params
@ -247,30 +247,30 @@ describe('execute()', () => {
const calls = scopedClusterClient.bulk.mock.calls;
const timeValue = (
((calls[0][0] as estypes.BulkRequest)?.body as unknown[])[1] as Record<string, unknown>
(calls[0][0] as estypes.BulkRequest)?.operations?.[1] as Record<string, unknown>
).field_to_use_for_time;
expect(timeValue).toBeInstanceOf(Date);
delete (((calls[0][0] as estypes.BulkRequest)?.body as unknown[])[1] as Record<string, unknown>)
delete ((calls[0][0] as estypes.BulkRequest)?.operations?.[1] as Record<string, unknown>)
.field_to_use_for_time;
expect(calls).toMatchInlineSnapshot(`
Array [
Array [
Array [
Object {
"body": Array [
Object {
"index": Object {
"op_type": "create",
},
Object {
"index": "index-value",
"operations": Array [
Object {
"index": Object {
"op_type": "create",
},
Object {
"jimbob": "jr",
},
],
"index": "index-value",
"refresh": true,
},
],
]
},
Object {
"jimbob": "jr",
},
],
"refresh": true,
},
],
]
`);
// minimal params
@ -301,7 +301,8 @@ describe('execute()', () => {
Array [
Array [
Object {
"body": Array [
"index": "index-value",
"operations": Array [
Object {
"index": Object {
"op_type": "create",
@ -311,7 +312,6 @@ describe('execute()', () => {
"jim": "bob",
},
],
"index": "index-value",
"refresh": false,
},
],
@ -342,32 +342,32 @@ describe('execute()', () => {
});
expect(scopedClusterClient.bulk.mock.calls).toMatchInlineSnapshot(`
Array [
Array [
Array [
Array [
Object {
"index": "index-value",
"operations": Array [
Object {
"body": Array [
Object {
"index": Object {
"op_type": "create",
},
},
Object {
"a": 1,
},
Object {
"index": Object {
"op_type": "create",
},
},
Object {
"b": 2,
},
],
"index": "index-value",
"refresh": false,
"index": Object {
"op_type": "create",
},
},
Object {
"a": 1,
},
Object {
"index": Object {
"op_type": "create",
},
},
Object {
"b": 2,
},
],
]
"refresh": false,
},
],
]
`);
});

View file

@ -25,10 +25,7 @@ import {
ALERT_HISTORY_PREFIX,
buildAlertHistoryDocument,
} from '@kbn/actions-plugin/common';
import {
BulkOperationType,
BulkResponseItem,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { BulkOperationType, BulkResponseItem } from '@elastic/elasticsearch/lib/api/types';
export type ESIndexConnectorType = ConnectorType<
ConnectorTypeConfigType,
@ -108,20 +105,20 @@ async function executor(
const { actionId, config, params, services, logger } = execOptions;
const index = params.indexOverride || config.index;
const bulkBody = [];
const operations = [];
for (const document of params.documents) {
const timeField = config.executionTimeField == null ? '' : config.executionTimeField.trim();
if (timeField !== '') {
document[timeField] = new Date();
}
bulkBody.push({ index: { op_type: 'create' } });
bulkBody.push(document);
operations.push({ index: { op_type: 'create' } });
operations.push(document);
}
const bulkParams = {
index,
body: bulkBody,
operations,
refresh: config.refresh,
};

View file

@ -7,7 +7,7 @@
import { Logger } from '@kbn/core/server';
import { map } from 'lodash';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { Subject, race, from } from 'rxjs';
import { bufferWhen, filter, bufferCount, flatMap, mapTo, first } from 'rxjs';
import { SavedObjectError } from '@kbn/core-saved-objects-common';

View file

@ -10,7 +10,7 @@ import {
AggregationsStringTermsBucket,
AggregationsStringTermsBucketKeys,
AggregationsTermsAggregateBase,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import { Observable, Subject } from 'rxjs';
import { TaskStore } from '../task_store';
import {

View file

@ -21,7 +21,7 @@ import { times } from 'lodash';
import { taskStoreMock } from '../task_store.mock';
import { of, Subject } from 'rxjs';
import { sleep } from '../test_utils';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { TaskTypeDictionary } from '../task_type_dictionary';
type ResponseWithAggs = Omit<estypes.SearchResponse<ConcreteTaskInstance>, 'aggregations'> & {

View file

@ -10,7 +10,7 @@ import { mergeMap, map, filter, switchMap, catchError } from 'rxjs';
import { Logger } from '@kbn/core/server';
import { JsonObject } from '@kbn/utility-types';
import { keyBy, mapValues } from 'lodash';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import type { AggregationResultOf } from '@kbn/es-types';
import { AggregatedStatProvider } from '../lib/runtime_statistics_aggregator';
import { parseIntervalAsSecond, asInterval, parseIntervalAsMillisecond } from '../lib/intervals';

View file

@ -7,7 +7,7 @@
import { combineLatest, Observable, Subject, BehaviorSubject } from 'rxjs';
import { map, distinctUntilChanged } from 'rxjs';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import type {
UsageCollectionSetup,
UsageCollectionStart,

View file

@ -9,7 +9,7 @@ import type {
AggregationsAggregationContainer,
QueryDslQueryContainer,
MappingRuntimeFields,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import {
IdleTaskWithExpiredRunAt,
RunningOrClaimingTaskWithExpiredRetryAt,

View file

@ -4,7 +4,7 @@
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { TaskTypeDictionary } from '../task_type_dictionary';
import { TaskStatus, TaskPriority, ConcreteTaskInstance } from '../task';
import {

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
export interface MustCondition {
bool: Pick<estypes.QueryDslBoolQuery, 'must'>;

View file

@ -8,7 +8,7 @@
import { mockLogger } from '../test_utils';
import { coreMock, elasticsearchServiceMock } from '@kbn/core/server/mocks';
import { SCHEDULE_INTERVAL, taskRunner } from './mark_removed_tasks_as_unrecognized';
import { SearchHit } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { SearchHit } from '@elastic/elasticsearch/lib/api/types';
const createTaskDoc = (id: string = '1'): SearchHit<unknown> => ({
_index: '.kibana_task_manager_9.0.0_001',

View file

@ -8,7 +8,7 @@
import { Logger } from '@kbn/logging';
import { CoreStart } from '@kbn/core-lifecycle-server';
import { ElasticsearchClient } from '@kbn/core-elasticsearch-server';
import { SearchHit } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { SearchHit } from '@elastic/elasticsearch/lib/api/types';
import { TaskScheduling } from '../task_scheduling';
import { TaskTypeDictionary } from '../task_type_dictionary';
import { ConcreteTaskInstance, TaskManagerStartContract } from '..';

View file

@ -15,7 +15,7 @@ import { usageCountersServiceMock } from '@kbn/usage-collection-plugin/server/us
import { MonitoringStats } from '../monitoring';
import { configSchema, TaskManagerConfig } from '../config';
import { backgroundTaskUtilizationRoute } from './background_task_utilization';
import { SecurityHasPrivilegesResponse } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { SecurityHasPrivilegesResponse } from '@elastic/elasticsearch/lib/api/types';
const mockUsageCountersSetup = usageCountersServiceMock.createSetupContract();
const mockUsageCounter = mockUsageCountersSetup.createUsageCounter('test');

View file

@ -6,7 +6,7 @@
*/
import type { SavedObjectsServiceSetup } from '@kbn/core/server';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { backgroundTaskNodeMapping, taskMappings } from './mappings';
import { getMigrations } from './migrations';
import { TaskManagerConfig } from '../config';

View file

@ -7,7 +7,7 @@
import { schema } from '@kbn/config-schema';
import { Client } from '@elastic/elasticsearch';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import _ from 'lodash';
import { first } from 'rxjs';

View file

@ -14,7 +14,7 @@ import { Subject } from 'rxjs';
import { omit, defaults, get } from 'lodash';
import { SavedObjectError } from '@kbn/core-saved-objects-common';
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import type { SavedObjectsBulkDeleteResponse, Logger } from '@kbn/core/server';
import {

View file

@ -4,7 +4,7 @@
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { AggregationsAggregationContainer } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { AggregationsAggregationContainer } from '@elastic/elasticsearch/lib/api/types';
import { DateRangeInfo, getDateRangeInfo } from './date_range_info';
export interface BuildAggregationOpts {

View file

@ -10,7 +10,7 @@ import {
SearchHit,
SearchHitsMetadata,
AggregationsSingleMetricAggregateBase,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import type { Group } from '@kbn/observability-alerting-rule-utils';
export const UngroupedGroupId = 'all documents';

View file

@ -8,7 +8,7 @@
/* eslint-disable @typescript-eslint/naming-convention */
import { HttpSetup } from '@kbn/core/public';
import type { SortOrder } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type { SortOrder } from '@elastic/elasticsearch/lib/api/types';
import {
IExecutionLog,
ExecutionLogSortFields,

View file

@ -6,7 +6,7 @@
*/
import { HttpSetup } from '@kbn/core/public';
import type { SortOrder } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type { SortOrder } from '@elastic/elasticsearch/lib/api/types';
import { IExecutionErrorsResult, ActionErrorLogSortFields } from '@kbn/alerting-plugin/common';
import { INTERNAL_BASE_ALERTING_API_PATH } from '../../constants';
import { getFilter } from './get_filter';

View file

@ -8,7 +8,7 @@
/* eslint-disable @typescript-eslint/naming-convention */
import { HttpSetup } from '@kbn/core/public';
import type { SortOrder } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type { SortOrder } from '@elastic/elasticsearch/lib/api/types';
import {
IExecutionLog,
ExecutionLogSortFields,

View file

@ -19,7 +19,7 @@ import {
EuiCopy,
EuiDataGridControlColumn,
} from '@elastic/eui';
import type { MappingRuntimeFields } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type { MappingRuntimeFields } from '@elastic/elasticsearch/lib/api/types';
import { ALERT_CASE_IDS, ALERT_MAINTENANCE_WINDOW_IDS } from '@kbn/rule-data-utils';
import type { RuleRegistrySearchRequestPagination } from '@kbn/rule-registry-plugin/common';
import type { BrowserFields } from '@kbn/alerting-types';
@ -27,7 +27,7 @@ import { Storage } from '@kbn/kibana-utils-plugin/public';
import type {
QueryDslQueryContainer,
SortCombinations,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
} from '@elastic/elasticsearch/lib/api/types';
import { QueryClientProvider } from '@tanstack/react-query';
import { useSearchAlertsQuery } from '@kbn/alerts-ui-shared/src/common/hooks/use_search_alerts_query';
import { DEFAULT_ALERTS_PAGE_SIZE } from '@kbn/alerts-ui-shared/src/common/constants';

View file

@ -19,7 +19,7 @@ import {
ALERT_STATUS,
TIMESTAMP,
} from '@kbn/rule-data-utils';
import { SortCombinations } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { SortCombinations } from '@elastic/elasticsearch/lib/api/types';
import { FieldFormatsRegistry } from '@kbn/field-formats-plugin/common';
import { i18n } from '@kbn/i18n';
import { FEATURE_LABEL } from '../translations';

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import type { SortCombinations } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type { SortCombinations } from '@elastic/elasticsearch/lib/api/types';
export const DefaultSort: SortCombinations[] = [
{

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import { useCallback, useContext, useEffect, useMemo } from 'react';
import { QueryDslQueryContainer } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { QueryDslQueryContainer } from '@elastic/elasticsearch/lib/api/types';
import { useKibana } from '@kbn/kibana-react-plugin/public';
import { ALERT_CASE_IDS, isSiemRuleType } from '@kbn/rule-data-utils';
import { AlertsTableContext } from '../contexts/alerts_table_context';

View file

@ -7,7 +7,7 @@
import { i18n } from '@kbn/i18n';
import { useMutation } from '@tanstack/react-query';
import { QueryDslQueryContainer } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { QueryDslQueryContainer } from '@elastic/elasticsearch/lib/api/types';
import { INTERNAL_BASE_ALERTING_API_PATH } from '@kbn/alerting-plugin/common';
import { AlertsQueryContext } from '@kbn/alerts-ui-shared/src/common/contexts/alerts_query_context';
import { useKibana } from '../../../../common';

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import type { SortCombinations } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type { SortCombinations } from '@elastic/elasticsearch/lib/api/types';
import type { EuiDataGridSorting } from '@elastic/eui';
import { useCallback, useMemo, useState } from 'react';

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import { MappingRuntimeFields } from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { MappingRuntimeFields } from '@elastic/elasticsearch/lib/api/types';
import { BrowserFields } from '@kbn/rule-registry-plugin/common';
const DEFAULT_INDEX_PATTERN = [

View file

@ -5,10 +5,7 @@
* 2.0.
*/
import {
QueryDslQueryContainer,
SortCombinations,
} from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import { QueryDslQueryContainer, SortCombinations } from '@elastic/elasticsearch/lib/api/types';
import type {
EuiDataGridCellPopoverElementProps,
EuiDataGridCellProps,

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import * as estypes from '@elastic/elasticsearch/lib/api/types';
import { loggingSystemMock } from '@kbn/core/server/mocks';
import { Logger } from '@kbn/core/server';
import { TimeSeriesQuery, timeSeriesQuery, getResultFromEs } from './time_series_query';

View file

@ -5,7 +5,7 @@
* 2.0.
*/
import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { Logger } from '@kbn/core/server';
import type { ElasticsearchClient } from '@kbn/core/server';
import { getEsErrorMessage } from '@kbn/alerting-plugin/server';

View file

@ -181,14 +181,12 @@ const assertIndexTemplate = (namespace: string) => {
expect(createOrUpdateIndexTemplate).toHaveBeenCalledWith({
logger,
esClient,
template: {
template: expect.objectContaining({
name: `.risk-score.risk-score-${namespace}-index-template`,
body: expect.objectContaining({
data_stream: { hidden: true },
index_patterns: [`risk-score.risk-score-${namespace}`],
composed_of: [`.risk-score-mappings-${namespace}`],
}),
},
data_stream: { hidden: true },
index_patterns: [`risk-score.risk-score-${namespace}`],
composed_of: [`.risk-score-mappings-${namespace}`],
}),
});
};

Some files were not shown because too many files have changed in this diff Show more