mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2026-02-03 04:09:29 -05:00
Fixes broken provider filter
This commit is contained in:
parent
5c1f477926
commit
08bea53a76
3 changed files with 3 additions and 3 deletions
|
|
@ -3,7 +3,7 @@ function Get-IcingaProviderDataValuesCpu()
|
|||
param (
|
||||
[array]$IncludeFilter = @(),
|
||||
[array]$ExcludeFilter = @(),
|
||||
[hashtable]$ProviderFilter = @(),
|
||||
[hashtable]$ProviderFilter = @{ },
|
||||
[switch]$IncludeDetails = $FALSE
|
||||
);
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ function Get-IcingaProviderFilterData()
|
|||
{
|
||||
param (
|
||||
[string]$ProviderName = '',
|
||||
[hashtable]$ProviderFilter = @()
|
||||
[hashtable]$ProviderFilter = @{ }
|
||||
);
|
||||
|
||||
[hashtable]$FilterResult = @{ };
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ function Get-IcingaProviderDataValuesEventlog()
|
|||
param (
|
||||
[array]$IncludeFilter = @(),
|
||||
[array]$ExcludeFilter = @(),
|
||||
[hashtable]$ProviderFilter = @(),
|
||||
[hashtable]$ProviderFilter = @{ },
|
||||
[switch]$IncludeDetails = $FALSE
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue