SAP HANA · Schema
AlertEvent
An alert event representing a triggered alert condition on an SAP HANA Cloud service instance. Alerts monitor database health, resources, and operational thresholds.
AnalyticsCloudDatabaseEnterpriseIn-Memory
Properties
| Name | Type | Description |
|---|---|---|
| alertId | string | The unique identifier of the alert event. |
| alertRuleId | string | The identifier of the alert rule that triggered this event. |
| alertName | string | The human-readable name of the alert (e.g., Memory Usage, Disk Usage, Long-Running Statements). |
| alertState | string | The current state of the alert event. |
| severity | string | The severity level of the alert. |
| description | string | A detailed description of the alert condition. |
| triggeredAt | string | ISO 8601 timestamp when the alert was triggered. |
| resolvedAt | string | ISO 8601 timestamp when the alert was resolved. Null if the alert is still active. |
| currentValue | number | The current metric value that triggered or relates to the alert. |
| thresholdValue | number | The threshold value configured in the alert rule. |
| unit | string | The unit of measurement for the metric values (e.g., %, GB, count). |
| serviceInstanceId | string | The service instance identifier associated with this alert. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "AlertEvent",
"type": "object",
"description": "An alert event representing a triggered alert condition on an SAP HANA Cloud service instance. Alerts monitor database health, resources, and operational thresholds.",
"properties": {
"alertId": {
"type": "string",
"description": "The unique identifier of the alert event."
},
"alertRuleId": {
"type": "string",
"description": "The identifier of the alert rule that triggered this event."
},
"alertName": {
"type": "string",
"description": "The human-readable name of the alert (e.g., Memory Usage, Disk Usage, Long-Running Statements)."
},
"alertState": {
"type": "string",
"description": "The current state of the alert event."
},
"severity": {
"type": "string",
"description": "The severity level of the alert."
},
"description": {
"type": "string",
"description": "A detailed description of the alert condition."
},
"triggeredAt": {
"type": "string",
"description": "ISO 8601 timestamp when the alert was triggered."
},
"resolvedAt": {
"type": "string",
"description": "ISO 8601 timestamp when the alert was resolved. Null if the alert is still active."
},
"currentValue": {
"type": "number",
"description": "The current metric value that triggered or relates to the alert."
},
"thresholdValue": {
"type": "number",
"description": "The threshold value configured in the alert rule."
},
"unit": {
"type": "string",
"description": "The unit of measurement for the metric values (e.g., %, GB, count)."
},
"serviceInstanceId": {
"type": "string",
"description": "The service instance identifier associated with this alert."
}
}
}