How do you calculate cpu idle % from ssCpuRawIdle in Zabbix?
I found the formula, but how to put total in Zabbix's custom multiplier?
total = ( ssCpuRawSystem +
ssCpuRawUser} +
ssCpuRawWait} +
ssCpuRawIdle} +
ssCpuRawKernel
)
idle = (ssCpuRawIdle / total ) * 100
Thanks
I found the formula, but how to put total in Zabbix's custom multiplier?
total = ( ssCpuRawSystem +
ssCpuRawUser} +
ssCpuRawWait} +
ssCpuRawIdle} +
ssCpuRawKernel
)
idle = (ssCpuRawIdle / total ) * 100
Thanks
Comment