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
Copy file name to clipboardExpand all lines: .generator/schemas/v2/openapi.yaml
+96-32Lines changed: 96 additions & 32 deletions
Original file line number
Diff line number
Diff line change
@@ -60787,7 +60787,11 @@ components:
60787
60787
- DONE
60788
60788
- TIMEOUT
60789
60789
SecurityMonitoringContentPackActivation:
60790
-
description: The activation status of a content pack
60790
+
description: |-
60791
+
The activation lifecycle state of a content pack:
60792
+
- `never_activated`: Pack has never been activated for this organization.
60793
+
- `activated`: Pack is currently active.
60794
+
- `deactivated`: Pack was previously activated but is now deactivated.
60791
60795
enum:
60792
60796
- never_activated
60793
60797
- activated
@@ -60799,7 +60803,13 @@ components:
60799
60803
- ACTIVATED
60800
60804
- DEACTIVATED
60801
60805
SecurityMonitoringContentPackIntegrationStatus:
60802
-
description: The installation status of the related integration
60806
+
description: |-
60807
+
The installation status of the related Datadog integration:
60808
+
- `installed`: Integration is fully installed.
60809
+
- `available`: Integration exists in catalog but not installed.
60810
+
- `partially_installed`: Integration is partially configured.
60811
+
- `detected`: Integration detected (for example, logs flowing) but not explicitly installed.
60812
+
- `error`: Integration in error state.
60803
60813
enum:
60804
60814
- installed
60805
60815
- available
@@ -60818,21 +60828,24 @@ components:
60818
60828
description: Attributes of a content pack state
60819
60829
properties:
60820
60830
cloud_siem_index_incorrect:
60821
-
description: Whether the cloud SIEM index configuration is incorrect (only applies to certain pricing models)
60831
+
description: >-
60832
+
Whether the Cloud SIEM index is incorrectly configured at the content pack level, for example positioned below the catch-all `*` index so it cannot receive logs. Only meaningful for Standalone SKU. When `true`, the content pack status is `broken` regardless of other fields.
description: Whether filters (Security Filters or Index Query depending on the pricing model) are configured for logs
60838
+
description: >-
60839
+
Whether the content pack's index query (Legacy SKU) or security filter (Standalone/Add-On SKU) is present and correctly configured to route logs into Cloud SIEM.
description: Whether logs have been seen from any index
60847
+
description: >-
60848
+
Whether logs for this content pack have been seen in any Datadog index within the last 72 hours, regardless of whether the Cloud SIEM index or security filter is configured. Used to distinguish `install` (no logs anywhere) from `activate` (logs detected but pack not yet enabled).
60836
60849
example: true
60837
60850
type: boolean
60838
60851
state:
@@ -60897,7 +60910,19 @@ components:
60897
60910
- meta
60898
60911
type: object
60899
60912
SecurityMonitoringContentPackStatus:
60900
-
description: The current status of a content pack
60913
+
description: |-
60914
+
The current operational status of a content pack:
60915
+
- `install`: Pack is not activated and no logs have been detected in any index within the last 72 hours.
60916
+
- `activate`: Pack is not activated but logs are already flowing into a Datadog index, indicating the integration
60917
+
is sending data. Activating the pack will route those logs through Cloud SIEM.
60918
+
- `initializing`: Pack has been activated and the security filter or index query is configured correctly,
60919
+
but no logs have been received yet. Typically a transient state after first activation.
60920
+
- `active`: Pack is activated and logs were received within the last 24 hours.
60921
+
- `warning`: Pack is activated but degraded — either the integration tile is not installed and no logs have
60922
+
been seen, or logs were last seen between 24 and 72 hours ago.
60923
+
- `broken`: Pack is activated but not functioning — logs have not been seen for over 72 hours, the security
60924
+
filter or index query is missing, or the Cloud SIEM index is positioned below the catch-all `*` index
60925
+
(Standalone SKU only).
60901
60926
enum:
60902
60927
- install
60903
60928
- activate
@@ -60915,7 +60940,14 @@ components:
60915
60940
- WARNING
60916
60941
- BROKEN
60917
60942
SecurityMonitoringContentPackTimestampBucket:
60918
-
description: Timestamp bucket indicating when logs were last collected
60943
+
description: |-
60944
+
Timestamp bucket indicating when logs were last collected through the content pack's Cloud SIEM filter or index query.
60945
+
This field drives the `state` value for activated packs:
60946
+
- `not_seen`: No logs observed through Cloud SIEM. Contributes to `initializing`, `warning`, or `broken` state.
60947
+
- `within_24_hours`: Logs received within the last 24 hours. Contributes to `active` state.
60948
+
- `within_24_to_72_hours`: Logs last seen 24 to 72 hours ago. Contributes to `warning` state.
60949
+
- `over_72h_to_30d`: Logs last seen 3 to 30 days ago. Contributes to `broken` state.
60950
+
- `over_30d`: Logs last seen more than 30 days ago. Contributes to `install` (Legacy SKU) or `broken` state.
0 commit comments