Ad Widget

Collapse

Problem with ProcessorLoad on the client

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • docent
    Junior Member
    • Oct 2010
    • 26

    #1

    Problem with ProcessorLoad on the client

    I use zabbix server and agents v2.2.1.
    There is a problem with ProcessorLoad on client.
    Periodically I get the events "Processor load is too high", but realy CPU load on the client is about 0%.
    When I restart agent on those clients the ProcessorLoad data on Zabbix server falls to 0% too.
    Last edited by docent; 31-03-2014, 11:30.
  • jan.garaj
    Senior Member
    Zabbix Certified Specialist
    • Jan 2010
    • 506

    #2
    Check/show your CPU usage utilization graph. It can be caused slow disk performance, ... - make a investigation on the client during CPU peak (ps, top, htop, ....). Check also Zabbix agent log file/server logs...
    Devops Monitoring Expert advice: Dockerize/automate/monitor all the things.
    My DevOps stack: Docker / Kubernetes / Mesos / ECS / Terraform / Elasticsearch / Zabbix / Grafana / Puppet / Ansible / Vagrant

    Comment

    • OddmundK
      Junior Member
      • Apr 2015
      • 2

      #3
      I suggest you use CPU Utilization instead of CPU load. That will better mimic the CPU graph you find in Task manager in Windows.

      Here is how I added item and trigger for CPU Utilization

      Item:
      Name: Processor Utilization (1 min average)
      Type: Zabbix agent
      Key: system.cpu.util[,,avg1]
      Type of Information: Numeric (float)
      Units: %
      Applications: CPU

      Trigger:
      Name: CPU utilization is too high on {HOST.NAME}
      Expression: {Template OS Windows:system.cpu.util[,,avg1].avg(60)}>90

      Comment

      Working...