Incident

Represents an incident in Enterprise Manager. Incidents are actionable issues detected by monitoring rules, correlated from one or more events.

Cloud ManagementDatabase ManagementEnterprise ManagementInfrastructure ManagementMonitoringOracle

Properties

Name Type Description
incidentId string Unique identifier of the incident.
summary string Brief summary of the incident.
severity string Severity level of the incident.
priority string Priority assigned to the incident.
status string Current status of the incident.
category string Category of the incident.
targetName string Name of the target associated with this incident.
targetType string Type of the target associated with this incident.
escalationLevel integer Current escalation level of the incident.
owner string Username of the incident owner or assignee.
acknowledgedBy string Username of the person who acknowledged the incident.
resolutionState string Resolution state providing closure details.
ruleSetName string Name of the incident rule set that created this incident.
timeRaised string Timestamp when the incident was first raised.
timeUpdated string Timestamp of the last incident update.
timeResolved string Timestamp when the incident was resolved.
eventCount integer Number of events correlated into this incident.
canonicalLink string Canonical URI for this incident resource.
View JSON Schema on GitHub

JSON Schema

oracle-enterprise-manager-cloud-control-incident-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Incident",
  "type": "object",
  "description": "Represents an incident in Enterprise Manager. Incidents are actionable issues detected by monitoring rules, correlated from one or more events.",
  "properties": {
    "incidentId": {
      "type": "string",
      "description": "Unique identifier of the incident."
    },
    "summary": {
      "type": "string",
      "description": "Brief summary of the incident."
    },
    "severity": {
      "type": "string",
      "description": "Severity level of the incident."
    },
    "priority": {
      "type": "string",
      "description": "Priority assigned to the incident."
    },
    "status": {
      "type": "string",
      "description": "Current status of the incident."
    },
    "category": {
      "type": "string",
      "description": "Category of the incident."
    },
    "targetName": {
      "type": "string",
      "description": "Name of the target associated with this incident."
    },
    "targetType": {
      "type": "string",
      "description": "Type of the target associated with this incident."
    },
    "escalationLevel": {
      "type": "integer",
      "description": "Current escalation level of the incident."
    },
    "owner": {
      "type": "string",
      "description": "Username of the incident owner or assignee."
    },
    "acknowledgedBy": {
      "type": "string",
      "description": "Username of the person who acknowledged the incident."
    },
    "resolutionState": {
      "type": "string",
      "description": "Resolution state providing closure details."
    },
    "ruleSetName": {
      "type": "string",
      "description": "Name of the incident rule set that created this incident."
    },
    "timeRaised": {
      "type": "string",
      "description": "Timestamp when the incident was first raised."
    },
    "timeUpdated": {
      "type": "string",
      "description": "Timestamp of the last incident update."
    },
    "timeResolved": {
      "type": "string",
      "description": "Timestamp when the incident was resolved."
    },
    "eventCount": {
      "type": "integer",
      "description": "Number of events correlated into this incident."
    },
    "canonicalLink": {
      "type": "string",
      "description": "Canonical URI for this incident resource."
    }
  }
}