audiocoach
audiocoach
> I'm currently using this here: > > ``` > monitoring-plugins/check_rbl-1.7.0 -H -t 60 -w 1 -c 1 -s zen.spamhaus.org -n a.gns.spamhaus.org > ``` Unfortunatley this is not working for...
And here my solution post: I think I found a solution for this bug. You have to modify the Compare-IcingaPluginThresholds.psm1 at line 224 from the powershell framework (located at C:\Program...
I have the same problem.
I have two possible solutions for that. **Solution 1 - Use Warnings- and Criticals-Hashtable** Unfortunatley hashtables are currently not supported for custom datafields within icinga director or at least I...
Ok, I think I have found the problem. It has to do with the pagefile settings. If you set the pagefile to system managed for all disks it works as...
Yes. Unfortunatley the problem persists.
``I think, I found a solution. The problem is that when you disable the "manage pagefile for all disks automatically" in the windows settings gui the pagefile is considered manual...
Here is a possible solution for that: add the following to the Icinga_ProviderEnums at C:\Program Files\WindowsPowerShell\Modules\icinga-powershell-plugins\provider\enums ``` # https://docs.microsoft.com/en-us/previous-versions/windows/desktop/stormgmt/msft-physicaldisk [hashtable]$DiskHealthStatus = @{ 0 = 'Healthy'; 1 = 'Warning'; 2 =...
Possible solution. **1. Modify Get-IcingaPhysicalDiskInfo.psm1** Add the following below Line 34 ``` $StorageSpacesDisks = Get-IcingaWindowsInformation Win32_DiskDrive | Where-Object { $_.Model -eq "Microsoft Storage Space Device" } ``` Add the following...
What I have found out so far is that this issue has someting to do with not documented "WarnDateTime" and "CritDateTime" thresholds which were introduced with this Feature: https://github.com/Icinga/icinga-powershell-framework/pull/303. So...