You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/31-Changelog.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,14 @@ documentation before upgrading to a new release.
7
7
8
8
Released closed milestones can be found on [GitHub](https://github.com/Icinga/icinga-powershell-plugins/milestones?state=closed).
9
9
10
+
## 1.15.0 (2026-06-30)
11
+
12
+
[Issue and PRs](https://github.com/Icinga/icinga-powershell-plugins/milestone/24)
13
+
14
+
### Bugfixes
15
+
16
+
*[#476](https://github.com/Icinga/icinga-powershell-plugins/pull/476) Fixes mapping of MPIO drives to the correct LUN on the host for `Invoke-IcingaCheckMPIO`
17
+
10
18
## 1.14.1 (2026-03-31)
11
19
12
20
[Issue and PRs](https://github.com/Icinga/icinga-powershell-plugins/milestone/23)
if ($null-eq$DiskObjects.Data-or$DiskObjects.Data.DiskId-eq'_Total') {
66
+
continue;
67
+
}
68
+
69
+
$MpioWarningThreshold=$null;
70
+
$MpioCriticalThreshold=$null;
71
+
$VolumeNames='None';
72
+
$VolumeIndex= [string]::Format('MPIO Disk {0}',$DiskObjects.Data.DiskId);
73
+
$MpioInstance='';
74
+
$DriveReferences='None';
75
+
76
+
# Don't add non-mpio disks to the check package, but continue with the next one, as there might be multiple disks and only some of them are MPIO enabled
Copy file name to clipboardExpand all lines: provider/mpio/Get-IcingaMPIOData.psm1
+18-70Lines changed: 18 additions & 70 deletions
Original file line number
Diff line number
Diff line change
@@ -6,89 +6,37 @@
6
6
.OUTPUTS
7
7
System.Collections.Hashtable
8
8
#>
9
-
10
9
functionGet-IcingaMPIOData()
11
10
{
12
-
if (-Not (Test-IcingaMPIOInstalled)) {
13
-
Exit-IcingaThrowException-ExceptionType 'Custom'-CustomMessage 'MPIO not installed'-InputString 'The Multipath-IO feature is not installed on this system.'-Force;
11
+
if (-not (Test-IcingaMPIOInstalled)) {
12
+
return$null;
13
+
# Test Data for debugging
14
+
<#
15
+
return [PSCustomObject]@{
16
+
'DriveInfo' = [PSCustomObject]@{
17
+
'Name' = 'MPIO Disk 0';
18
+
'NumberPaths' = 8;
19
+
};
20
+
'InstanceName' = 'Test Instance';
21
+
'NumberDrives' = 1;
22
+
'Active' = $true;
23
+
}
24
+
#>
14
25
}
15
26
16
27
# Check whether MPIO_DISK_INFO exists on the targeted system
0 commit comments