- HTTP request
- Path parameters
- Request body
- Response body
- Authorization scopes
- IAM Permissions
- CompositeAlertHandling
Full name: projects.locations.instances.legacy.legacyStreamDetectionAlerts
Legacy StreamDetectionAlerts continuously streams new detection alerts as they are discovered. A detection alert is a special kind of detection. A detection is considered a "detection alert" if the rule that detected it had alerting enabled at the time of detection.
HTTP request
POST https://chronicle.googleapis.com/v1alpha/{instance}/legacy:legacyStreamDetectionAlerts
Path parameters
Parameters | |
---|---|
instance |
Required. Chronicle instance this request is sent to. Format: projects/{project}/locations/{location}/instances/{instance} |
Request body
The request body contains data with the following structure:
JSON representation |
---|
{
"continuation_time": string,
"detection_batch_size": integer,
"max_detections": integer,
"page_token": string,
"page_start_time": string,
"composite_alert_handling": enum ( |
Fields | |
---|---|
continuation_time |
Optional. DEPRECATED: Prefer using All detection alerts discovered after If the value is older than 1 week, the connection request will be rejected; other RPCs should be used to get older detections. Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
detection_batch_size |
Optional. The maximum number of detections to return in each detection batch. Each batch may contain fewer than this value. If unspecified, at most 10000 detection alerts will be returned in each batch. The maximum value is 10000; values above 10000 will be coerced to 10000. |
max_detections |
Optional. The maximum number of detections to return before closing the connection. If unspecified, this field will have no effect on the connection. If provided, the connection will be gracefully closed after this number of detections have been returned. Valid values are 1 - 1,000. Values above 1,000 will be coerced to 1,000. Specifying a matching detection_batch_size is strongly recommended. Failing to do so may result in the return of an incorrect continuation timestamp and missed detections. |
page_token |
Optional. A page token, from a previous When using |
page_start_time |
Optional. A page start timestamp that indicates when to start listing alerts. This field is the equivalent of allowing the API to use connection timestamp but requires the client to specify the timestamp in order to use the Each request must provide zero, or exactly one of ( When initiating the very first connection, clients should leave all of these fields unspecified to use The default option is Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
composite_alert_handling |
Optional. How composite alerts will be processed in the response. If unset or unspecified composite alerts will be treated the same as standard alerts. |
Response body
LegacyStreamDetectionAlerts response message. This represents a single detection batch. Many detection batches will be sent over the stream response.
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"detections": [
{
object ( |
Fields | |
---|---|
detections[] |
List of detection alerts that were discovered since the last detection batch was streamed. |
continuation_time |
DEPRECATED: Prefer using A continuation timestamp that can be sent as Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
heartbeat |
A boolean indicating if the response is a "heartbeat" meant to keep the connection alive. |
next_page_token |
A page token that can be sent as |
next_page_start_time |
A page start timestamp that can be sent as Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview.
IAM Permissions
Requires the following IAM permission on the instance
resource:
chronicle.legacies.legacyStreamDetectionAlerts
For more information, see the IAM documentation.
CompositeAlertHandling
CompositeAlertHandling specifies how composite alerts will be included in the response.
Enums | |
---|---|
COMPOSITE_ALERT_HANDLING_UNSPECIFIED |
Unspecified or unknown composite alert handling. |
FLATTEN_EVENTS_ENTITIES |
Flatten_events_entities Events and entities in nested detections and alerts will be bubbled up to the top-level alert. The count of events and entities in the composite alert is capped at 500. |