- Home
- API Enriched
- Ddos
- infraprotect
- Event alerts.
Event alerts.
const url = 'https://example-corp.console.ves.volterra.io/api/v1/api/production/us-east-1/namespaces/default/api/infraprotect/namespaces/example/infraprotect/event/example/alerts';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example-corp.console.ves.volterra.io/api/v1/api/production/us-east-1/namespaces/default/api/infraprotect/namespaces/example/infraprotect/event/example/alerts \ --header 'Authorization: <Authorization>'Returns a list of alerts triggers while an event is active.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Namespace This request is supported only in system namespace.
Event ID ID of the event we want to GET alerts for.
Responses
Section titled “Responses”A successful response.
Response, list of alerts associated with an event.
object
List of alerts related to the event.
Detail of an alert.
object
L3/L4 provider alert identifier.
Bandwidth that triggered the alert in BPS.
Creator of the alert (or SOC if created manually)
End time of the alert. This is when the threshold was restored.
List of associated alerts. These alerts are normally manually associated.
Event (an attack record) that holds info an attack and its mitigation(s)
object
Attachments on an event.
Event attachment record (pcap, or any arbitrary file)
object
ID of the attachment.
End time as an RFC3339 string.
Generic object storage name of the attachment.
Generic object storage version of the attachment.
Name of the attachment.
Size of the attachment.
Start time as an RFC3339 string.
Creator of the event.
More detailed description of the event. Most of the time list of actions taken.
End time as an RFC3339 string.
True if event has any attachment other than PCAP files.
True if the event already has details assigned, otherwise false.
ID of the event used to uniquely identify it.
Target IP
Mitigation the event is related to.
Name of an event.
Network the event is related to.
Start time as an RFC3339 string.
ID of the alert used to uniquely identify it.
IP the alert is triggered for. This is the “protected” IP.
Network the alert is related to.
Start time of the alert. This is when a threshold was exceeded.
Type of the alert, e.g. DoS host alert.
Example
{ "alerts": [ { "events": [ { "attachments": [ { "attachment_type": "ATTACHMENT_TYPE_UNKNOWN" } ] } ], "source_type": "ALERT_SOURCE_TYPE_UNKNOWN" } ]}Returned when operation is not authorized.
Examplegenerated
exampleReturned when there is no permission to access resource.
Examplegenerated
exampleReturned when resource is not found.
Examplegenerated
exampleReturned when operation on resource is conflicting with current value.
Examplegenerated
exampleReturned when operation has been rejected as it is happening too frequently.
Examplegenerated
exampleReturned when server encountered an error in processing API.
Examplegenerated
exampleReturned when service is unavailable temporarily.
Examplegenerated
exampleReturned when server timed out processing request.
Examplegenerated
example