icinga-powershell-plugins icon indicating copy to clipboard operation
icinga-powershell-plugins copied to clipboard

Invoke-IcingaCheckProcess / Invoke-IcingaCheckCPU |

Open sgruber94 opened this issue 1 year ago • 1 comments
trafficstars

Hi togehter,

is there a way to Monitor a Service CPU Usage? Actual i have three Services that are using the same ProcessName like "edge", so i can`t determinate the Service with the ProcessName

So my first thought is writing a wrapper to determinate the PID and then Checking the usage. Is there something planned in the near future? Otherwise I´m Planning

-> Check Command -Service "myservice1" -> (internal PID Check -> Determinate CPU Usage

Regards Sarah

sgruber94 avatar May 29 '24 10:05 sgruber94

Thank you for the message. The main problem is that the PID is always changing if the process gets terminated.

But based on your requirements, wouldn the Invoke-IcingaCheckProcesssolve this issue?

icinga> icinga { Invoke-IcingaCheckProcess -Process msedge -Verbosity 3 }

[OK] Process Overview: 1 Ok (All must be [OK])
\_ [OK] msedge (All must be [OK])
   \_ [OK] msedge [10004] (All must be [OK])
      \_ [OK] CPU Usage: 0%
      \_ [OK] Memory Usage: 190.48MiB
      \_ [OK] Page File Usage: 218.07KiB
      \_ [OK] Thread Count: 20c
   \_ [OK] msedge [10580] (All must be [OK])
      \_ [OK] CPU Usage: 0%
      \_ [OK] Memory Usage: 76.38MiB
      \_ [OK] Page File Usage: 84.64KiB
      \_ [OK] Thread Count: 18c
   \_ [OK] msedge [11828] (All must be [OK])
      \_ [OK] CPU Usage: 0%
      \_ [OK] Memory Usage: 1.56MiB
      \_ [OK] Page File Usage: 2.32KiB
      \_ [OK] Thread Count: 8c
   \_ [OK] msedge [12096] (All must be [OK])
      \_ [OK] CPU Usage: 0%
      \_ [OK] Memory Usage: 2.68MiB
      \_ [OK] Page File Usage: 7.82KiB
      \_ [OK] Thread Count: 8c
      ...
| 'msedge::ifw_process::memory'=826130400B;;;0;6436880000 'msedge::ifw_process::count'=19c;; 'msedge::ifw_process::threads'=314c;; 'msedge::ifw_process::cpu'=0%;;;0;100 'msedge::ifw_process::pagefile'=1007492B;;;0;4563403000

This will print all PIDs for the msedge process and report the CPU, Memory, Pagfile and Thread usage.

You can then use the plugin arguments to check for the total resource consumption or globally for each single PID.

LordHepipud avatar Jun 19 '24 10:06 LordHepipud