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 (
|
param (
|
||||||
[array]$IncludeFilter = @(),
|
[array]$IncludeFilter = @(),
|
||||||
[array]$ExcludeFilter = @(),
|
[array]$ExcludeFilter = @(),
|
||||||
[hashtable]$ProviderFilter = @(),
|
[hashtable]$ProviderFilter = @{ },
|
||||||
[switch]$IncludeDetails = $FALSE
|
[switch]$IncludeDetails = $FALSE
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ function Get-IcingaProviderFilterData()
|
||||||
{
|
{
|
||||||
param (
|
param (
|
||||||
[string]$ProviderName = '',
|
[string]$ProviderName = '',
|
||||||
[hashtable]$ProviderFilter = @()
|
[hashtable]$ProviderFilter = @{ }
|
||||||
);
|
);
|
||||||
|
|
||||||
[hashtable]$FilterResult = @{ };
|
[hashtable]$FilterResult = @{ };
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ function Get-IcingaProviderDataValuesEventlog()
|
||||||
param (
|
param (
|
||||||
[array]$IncludeFilter = @(),
|
[array]$IncludeFilter = @(),
|
||||||
[array]$ExcludeFilter = @(),
|
[array]$ExcludeFilter = @(),
|
||||||
[hashtable]$ProviderFilter = @(),
|
[hashtable]$ProviderFilter = @{ },
|
||||||
[switch]$IncludeDetails = $FALSE
|
[switch]$IncludeDetails = $FALSE
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue