You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: IDs of reference datasets used by this query.
38204
+
items:
38205
+
description: Dataset ID.
38206
+
type: string
38207
+
type: array
38187
38208
distinctFields:
38188
38209
description: Field for which the cardinality is measured. Sent as an array.
38189
38210
items:
@@ -38201,6 +38222,15 @@ components:
38201
38222
description: When false, events without a group-by value are ignored by the query. When true, events with missing group-by fields are processed with `N/A`, replacing the missing values.
38202
38223
example: false
38203
38224
type: boolean
38225
+
index:
38226
+
description: Index used to load the data for this query.
38227
+
type: string
38228
+
indexes:
38229
+
description: Indexes used to load the data for this query. Mutually exclusive with `index`.
38230
+
items:
38231
+
description: Index name.
38232
+
type: string
38233
+
type: array
38204
38234
metrics:
38205
38235
description: Group of target fields to aggregate over when using the sum, max, geo data, or new value aggregations. The sum, max, and geo data aggregations only accept one value in this list, whereas the new value aggregation accepts up to five values.
38206
38236
items:
@@ -38214,6 +38244,9 @@ components:
38214
38244
description: Query to run on logs.
38215
38245
example: a > 3
38216
38246
type: string
38247
+
queryLanguage:
38248
+
description: Language used to parse the query string.
38249
+
type: string
38217
38250
type: object
38218
38251
HistoricalJobResponse:
38219
38252
description: Historical job response.
@@ -38247,6 +38280,10 @@ components:
38247
38280
modifiedAt:
38248
38281
description: Last modification time of the job.
38249
38282
type: string
38283
+
progressRate:
38284
+
description: Job execution progress as a value between 0 and 1. Available for ongoing jobs.
38285
+
format: double
38286
+
type: number
38250
38287
signalOutput:
38251
38288
description: Whether the job outputs signals.
38252
38289
type: boolean
@@ -43777,9 +43814,10 @@ components:
43777
43814
$ref: "#/components/schemas/CalculatedField"
43778
43815
type: array
43779
43816
cases:
43780
-
description: Cases used for generating job results.
43817
+
description: Cases used for generating job results. Up to 10 cases are allowed.
description: Starting time of data analyzed by the job.
@@ -43809,9 +43847,10 @@ components:
43809
43847
options:
43810
43848
$ref: "#/components/schemas/HistoricalJobOptions"
43811
43849
queries:
43812
-
description: Queries for selecting logs analyzed by the job.
43850
+
description: Queries for selecting logs analyzed by the job. Up to 10 queries are allowed.
43813
43851
items:
43814
43852
$ref: "#/components/schemas/HistoricalJobQuery"
43853
+
maxItems: 10
43815
43854
type: array
43816
43855
referenceTables:
43817
43856
description: Reference tables used in the queries.
@@ -43825,10 +43864,11 @@ components:
43825
43864
type: string
43826
43865
type: array
43827
43866
thirdPartyCases:
43828
-
description: Cases for generating results from third-party detection method. Only available for third-party detection method.
43867
+
description: Cases for generating results from third-party detection method. Only available for third-party detection method. Up to 10 cases are allowed.
description: Ending time of data analyzed by the job.
@@ -43850,6 +43890,12 @@ components:
43850
43890
JobDefinitionFromRule:
43851
43891
description: Definition of a historical job based on a security monitoring rule.
43852
43892
properties:
43893
+
caseIndex:
43894
+
description: Zero-based index of the rule case to use as the job's signal condition. When omitted, all cases are evaluated. Up to 10 cases are supported, so valid values are 0 to 9.
43895
+
format: int32
43896
+
maximum: 9
43897
+
minimum: 0
43898
+
type: integer
43853
43899
from:
43854
43900
description: Starting time of data analyzed by the job.
:param correlated_by_fields: Fields used to correlate results across queries in sequence detection rules.
110
+
:type correlated_by_fields: [str], optional
111
+
112
+
:param correlated_query_index: Zero-based index of the query to correlate with in sequence detection rules. Up to 10 queries are supported, so valid values are 0 to 9.
113
+
:type correlated_query_index: int, optional
114
+
115
+
:param custom_query_extension: Custom query extension used to refine the base query.
116
+
:type custom_query_extension: str, optional
117
+
75
118
:param data_source: Source of events, either logs, audit trail, security signals, or Datadog events. ``app_sec_spans`` is deprecated in favor of ``spans``.
:param dataset_ids: IDs of reference datasets used by this query.
122
+
:type dataset_ids: [str], optional
123
+
78
124
:param distinct_fields: Field for which the cardinality is measured. Sent as an array.
79
125
:type distinct_fields: [str], optional
80
126
@@ -84,6 +130,12 @@ def __init__(
84
130
:param has_optional_group_by_fields: When false, events without a group-by value are ignored by the query. When true, events with missing group-by fields are processed with ``N/A`` , replacing the missing values.
:param index: Index used to load the data for this query.
134
+
:type index: str, optional
135
+
136
+
:param indexes: Indexes used to load the data for this query. Mutually exclusive with ``index``.
137
+
:type indexes: [str], optional
138
+
87
139
:param metrics: Group of target fields to aggregate over when using the sum, max, geo data, or new value aggregations. The sum, max, and geo data aggregations only accept one value in this list, whereas the new value aggregation accepts up to five values.
88
140
:type metrics: [str], optional
89
141
@@ -92,21 +144,40 @@ def __init__(
92
144
93
145
:param query: Query to run on logs.
94
146
:type query: str, optional
147
+
148
+
:param query_language: Language used to parse the query string.
0 commit comments