A DevOps engineer wants to monitor the CPU utilization of a Compute Engine instance and receive an alert if it exceeds 80% for more than 5 minutes. Which type of metric should be used in the alerting condition?
Trap 1: CUMULATIVE
Cumulative metrics are monotonically increasing counters, not suitable for utilization.
Trap 2: DELTA
Delta metrics represent changes over a time interval, but utilization is a point-in-time value.
Trap 3: COUNT
COUNT is a reducer, not a metric type.
- A
CUMULATIVE
Why wrong: Cumulative metrics are monotonically increasing counters, not suitable for utilization.
- B
DELTA
Why wrong: Delta metrics represent changes over a time interval, but utilization is a point-in-time value.
- C
COUNT
Why wrong: COUNT is a reducer, not a metric type.
- D
GAUGE
CPU utilization is a gauge metric that represents a value at a point in time.