So for example, if my cpu's max speed is 2.4 Gigahertz, how can I show in % how much I'm using?
Ad Widget
Collapse
How can I show my CPU usage in percentage?
Collapse
X
-
Tags: None
-
system.cpu.util[<cpu> <,type><,mode>]
Processor load in percents
cpu - CPU number (default is all CPUs)
type - one of idle, nice, user (default), system
mode - one of avg1 (default),avg5 (average within 5 minutes), avg15
Example: system.cpu.util[0,user ,avg5]
Zabbix Manual 105 page -
Thanks but isn't there a better way than that? That doesn't method doesn't work on windows. Is there a better way? Also, is there a way to get the opposite of idle time, because, Solaris does not support system time but if I get the opposite of idle time ( 100.0 - idle time) I get to see how much cpu is being used. Is such a thing possible?Comment
-
-
-
You can't find total CPU utilization as a percentage.
...This shows user CPU usage and not total. The only way to get the total is by using a custom parameter.Code:system.cpu.util[,,avg1]
Comment
-
This is what I use as a key:That seems to work for most of my Windows systems. You can find the whole list of these if you run "perfmon" from that host and then you can just find the counter (right-click on graph and "add coutner") in Perfmon. Then open the properties for it and copy-paste it into the key field after "perf_counter" You can monitor a lot more things in Windows this way.Code:perf_counter[\Processor(_Total)\% Processor Time]
Comment
-
-
Hi
I have found your reply after search on forum.
I need to "cpu utilization" for all CPUs in percent. but with this solution can I get cpu utilization??
Thanks in advanceComment

Comment