Field - cpu_busy_time
CPU busy time
- Map: SMF70CPU
- Based on: cpu_is_online, cpu_wait_time, cpu_parked_time, interval
The field is created using the following pseudocode:
cpu_busy_time = interval - cpu_wait_time - cpu_parked_time
invalid_filter = cpu_is_online & (cpu_busy_time.total_seconds() >= 0.0)
return cpu_busy_time.where(cpu_is_online, pd.Timedelta(0))