Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/plugins/04-Invoke-IcingaCheckCPU.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ To execute this plugin you will require to grant the following user permissions.
### Example Command 1

```powershell
Invoke-IcingaCheckCpu -Warning 50 -Critical 75
Invoke-IcingaCheckCPU -Warning 50 -Critical 75
```

### Example Output 1
Expand All @@ -48,7 +48,7 @@ Invoke-IcingaCheckCpu -Warning 50 -Critical 75
### Example Command 2

```powershell
Invoke-IcingaCheckCpu -Warning 50 -Critical 75 -Core 1
Invoke-IcingaCheckCPU -Warning 50 -Critical 75 -Core 1
```

### Example Output 2
Expand Down
4 changes: 2 additions & 2 deletions plugins/Invoke-IcingaCheckCPU.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@

* Performance Log Users
.EXAMPLE
PS>Invoke-IcingaCheckCpu -Warning 50 -Critical 75
PS>Invoke-IcingaCheckCPU -Warning 50 -Critical 75
[OK]: Check package "CPU Load" is [OK]
| 'Core #0'=4,59%;50;75;0;100 'Core #1'=0,94%;50;75;0;100 'Core #2'=11,53%;50;75;0;100 'Core #3'=4,07%;50;75;0;100
.EXAMPLE
PS>Invoke-IcingaCheckCpu -Warning 50 -Critical 75 -Core 1
PS>Invoke-IcingaCheckCPU -Warning 50 -Critical 75 -Core 1
[OK]: Check package "CPU Load" is [OK]
| 'Core #1'=2,61%;50;75;0;100
.PARAMETER Warning
Expand Down