We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99175e8 commit 81ce58aCopy full SHA for 81ce58a
1 file changed
x-pack/plugins/osquery/server/search_strategy/osquery/index.ts
@@ -37,9 +37,13 @@ export const osquerySearchStrategyProvider = <T extends FactoryQueryTypes>(
37
return forkJoin({
38
actionsIndexExists: esClient.asInternalUser.indices.exists({
39
index: `${ACTIONS_INDEX}*`,
40
+ allow_no_indices: false,
41
+ expand_wildcards: 'all',
42
}),
43
newDataStreamIndexExists: esClient.asInternalUser.indices.exists({
44
index: `${ACTION_RESPONSES_DATA_STREAM_INDEX}*`,
45
46
47
48
}).pipe(
49
mergeMap(({ actionsIndexExists, newDataStreamIndexExists }) => {
0 commit comments