IBM SMF Explorer
GitHubToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeBack to homepage

Field - utilization_total

Percentage application utilization

Description

Percentage application utilization, summing CPU, SRB, RCT, I/O interrupt and hyperspace times.

Post-Processed

The field is created using the following pseudocode:

tcbtime_insec = total_cpu_service_units * 1e10 / cpu_service_coefficient_adjusted
srbtime_insec = total_srb_service_units * 1e10 / srb_service_coefficient_adjusted
total_time = tcbtime_insec.fillna(0) + srbtime_insec.fillna(0) + total_rct_time.total_seconds() * 1e3 + total_io_interrupt_time.total_seconds() * 1e3 + total_hspace_service_time.total_seconds() * 1e3
return total_time / interval_in_milliseconds