-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathicinga-powershell-plugins.psd1
84 lines (83 loc) · 3.2 KB
/
icinga-powershell-plugins.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
@{
ModuleVersion = '1.13.0'
GUID = 'e3e7850e-2f24-4173-8268-c2a29ec35750'
Author = 'Lord Hepipud'
CompanyName = 'Icinga GmbH'
Copyright = '(c) 2021 Icinga GmbH | GPLv2'
Description = 'A collection of Icinga Plugins for general Windows checks for Icinga for Windows.'
PowerShellVersion = '4.0'
RequiredModules = @(@{ModuleName = 'icinga-powershell-framework'; ModuleVersion = '1.13.0' })
NestedModules = @(
'.\compiled\icinga-powershell-plugins.ifw_compilation.psm1'
)
FunctionsToExport = @(
'Import-IcingaPowerShellComponentPlugins',
'Invoke-IcingaCheckPartitionSpace',
'Invoke-IcingaCheckUsedPartitionSpace',
'Invoke-IcingaCheckScheduledTask',
'Invoke-IcingaCheckBiosSerial',
'Invoke-IcingaCheckEventlog',
'Invoke-IcingaCheckHttpJsonResponse',
'Invoke-IcingaCheckNetworkInterface',
'Invoke-IcingaCheckProcessCount',
'Invoke-IcingaCheckUsers',
'Invoke-IcingaCheckService',
'Invoke-IcingaCheckCPU',
'Invoke-IcingaCheckUNCPath',
'Invoke-IcingaCheckUpdates',
'Invoke-IcingaCheckTimeSync',
'Invoke-IcingaCheckDiskHealth',
'Invoke-IcingaCheckTCP',
'Invoke-IcingaCheckHTTPStatus',
'Invoke-IcingaCheckFirewall',
'Invoke-IcingaCheckPerfCounter',
'Invoke-IcingaCheckMemory',
'Invoke-IcingaCheckUptime',
'Invoke-IcingaCheckCheckSum',
'Invoke-IcingaCheckMPIO',
'Invoke-IcingaCheckNLA',
'Invoke-IcingaCheckICMP',
'Invoke-IcingaCheckCertificate',
'Invoke-IcingaCheckStoragePool',
'Invoke-IcingaCheckDirectory',
'Invoke-IcingaCheckProcess',
'Get-IcingaMemoryPerformanceCounter',
'Get-IcingaMemory',
'Get-IcingaCPUs',
'Get-IcingaCPUCount',
'Get-IcingaWindowsUpdatesPending',
'Get-IcingaUpdatesHotfix',
'Get-IcingaUpdatesInstalled',
'Get-IcingaUsers',
'Get-IcingaWindows',
'Get-IcingaServiceCheckName',
'Get-IcingaProcessData',
'Get-IcingaPhysicalDiskInfo',
'Get-IcingaDiskInformation',
'Get-IcingaDiskPartitions',
'Get-IcingaHttpResponse',
'Get-IcingaBios'
)
CmdletsToExport = @(
)
VariablesToExport = @(
'ProviderEnums',
'IcingaPluginExceptions'
)
AliasesToExport = @(
)
PrivateData = @{
PSData = @{
Tags = @( 'icinga', 'icinga2', 'monitoringplugins', 'icingaplugins', 'icinga2plugins', 'windowsplugins', 'icingawindows')
LicenseUri = 'https://github.com/Icinga/icinga-powershell-plugins/blob/master/LICENSE'
ProjectUri = 'https://github.com/Icinga/icinga-powershell-plugins'
ReleaseNotes = 'https://github.com/Icinga/icinga-powershell-plugins/releases'
};
Version = 'v1.13.0';
Name = 'Windows Plugins';
Type = 'plugins';
Function = '';
Endpoint = '';
}
HelpInfoURI = 'https://github.com/Icinga/icinga-powershell-plugins'
}