Creating an Absence Alarm

Create an absence alarm in Monitoring to send notifications when a metric doesn't emit data for a specified interval.

The absent() statistic in an absence alarm returns 1 (true) when the metric is absent for the entire interval. After continuous 1 values for the duration of the absence detection period, the statistic stops returning values. When the metric is present during the interval, the statistic returns 0 (false).

The default absence detection period is two hours. For more information about the absence detection period, see Absence Alarm Example.

Example
The following metric query has an absence alarm for a compute instance that's set on an interval of 1 minute (with the default absence detection period):
CpuUtilization[1m]{resourceId = "<resource_identifier>"}.groupBy(resourceId).absent()
The following metric query sets the absence detection period to 20 hours:
CpuUtilization[1m]{resourceId = "<resource_identifier>"}.groupBy(resourceId).absent(20h)
Note

We recommend including groupBy in the query of the absence alarm. Using groupBy prevents irrelevant alarm triggers when OCI introduces new dimensions. A new dimension creates an initially empty metric stream.

With groupBy, the alarm monitors grouped metric streams only. The previous example query triggers the alarm when no metric streams exist for the instance. If OCI Compute adds a dimension to CpuUtilization, and other metric streams (from other dimensions) aren't absent, then the alarm isn't triggered.

Without groupBy, the alarm monitors all metric streams. For example, consider the query CpuUtilization[1m].absent(). If OCI Compute adds a dimension to CpuUtilization, then the alarm is triggered, regardless of the presence of other metric streams.

In the metric chart on the Create Alarm page, a dashed red line indicates the absence threshold. The following example shows a 1 value for a metric stream, which indicates that the compute instance corresponding to this metric stream didn't emit CpuUtilization metric data until 1:30.
Absent metric data in a graph, Create Alarm page.

For alarm troubleshooting, see Troubleshooting Alarms.