sensu-plugins-windows 1.0.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -1
- data/README.md +3 -0
- data/bin/powershell/check-windows-cpu-load.ps1 +4 -1
- data/bin/powershell/check-windows-disk-writeable.ps1 +1 -1
- data/bin/powershell/check-windows-disk.ps1 +4 -1
- data/bin/powershell/check-windows-http.ps1 +4 -2
- data/bin/powershell/check-windows-process.ps1 +3 -1
- data/bin/powershell/check-windows-processor-queue-length.ps1 +4 -1
- data/bin/powershell/check-windows-ram.ps1 +4 -1
- data/bin/powershell/check-windows-service.ps1 +4 -1
- data/lib/sensu-plugins-windows/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 26f077c4e38c5278ae5d09c1e428609d9ca9a00f
|
|
4
|
+
data.tar.gz: 1550daeb508c3f7b8e5e0b641719f02402573540
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6289e88f850bd0f62fd17460c22487ebec84211d09b4ccfda9edfce5a9b8d32a48bc96e39b177e474bc374d3f4b2ffc8a3899d4a6c9af1bd134528bfa0a22e13
|
|
7
|
+
data.tar.gz: 6725768261b9b9cb56f21f888b72189832f297bbe3c0538b932b12deadb1db8b5a0ae730a5f99b5460cff9d6806c894e65e220f65933402b493f05be3bb45018
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [2.0.0] - 2017-06-27
|
|
9
|
+
### Fixed
|
|
10
|
+
- missing diffs on 1.0 release (@majormoses)
|
|
11
|
+
|
|
12
|
+
### Breaking Change
|
|
13
|
+
- Dependency on Powersehell version 3.0 or above for powershell checks. (@simonsteur)
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- Updated `README.md` with new requirements. (@simonsteur)
|
|
17
|
+
|
|
8
18
|
### [1.0.0] 2017-06-26
|
|
9
19
|
### Fixed
|
|
10
20
|
- fix PR template with correct spelling of Compatibility. The big reason to make this a 1.x is to allow an upcoming breaking change and protecting users from it.
|
|
@@ -90,7 +100,9 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
|
90
100
|
### Added
|
|
91
101
|
- Initial release
|
|
92
102
|
|
|
93
|
-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-Windows/compare/0.
|
|
103
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-Windows/compare/2.0.0...HEAD
|
|
104
|
+
[2.0.0]: https://github.com/sensu-plugins/sensu-plugins-Windows/compare/1.0.0...2.0.0
|
|
105
|
+
[1.0.0]: https://github.com/sensu-plugins/sensu-plugins-Windows/compare/0.1.0...1.0.0
|
|
94
106
|
[0.1.0]: https://github.com/sensu-plugins/sensu-plugins-Windows/compare/v0.0.10...0.1.0
|
|
95
107
|
[0.0.10]: https://github.com/sensu-plugins/sensu-plugins-Windows/compare/v0.0.9...v0.0.10
|
|
96
108
|
[0.0.9]: https://github.com/sensu-plugins/sensu-plugins-Windows/compare/0.0.8..v0.0.9
|
data/README.md
CHANGED
|
@@ -63,6 +63,9 @@ You should also include the full escaped path to the ruby interpreter in the che
|
|
|
63
63
|
}
|
|
64
64
|
```
|
|
65
65
|
|
|
66
|
+
## Dependencies
|
|
67
|
+
* Powershell checks require Powershell version 3.0 or higher.
|
|
68
|
+
|
|
66
69
|
## Installation
|
|
67
70
|
|
|
68
71
|
[Installation and Setup](http://sensu-plugins.io/docs/installation_instructions.html)
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
# Windows
|
|
12
12
|
#
|
|
13
13
|
# DEPENDENCIES:
|
|
14
|
-
# Powershell
|
|
14
|
+
# Powershell 3.0 or above
|
|
15
15
|
#
|
|
16
16
|
# USAGE:
|
|
17
17
|
# Powershell.exe -NonInteractive -NoProfile -ExecutionPolicy Bypass -NoLogo -File C:\\etc\\sensu\\plugins\\check-windows-cpu-load.ps1 90 95
|
|
@@ -22,6 +22,9 @@
|
|
|
22
22
|
# Copyright 2016 sensu-plugins
|
|
23
23
|
# Released under the same terms as Sensu (the MIT license); see LICENSE for details.
|
|
24
24
|
#
|
|
25
|
+
|
|
26
|
+
#Requires -Version 3.0
|
|
27
|
+
|
|
25
28
|
[CmdletBinding()]
|
|
26
29
|
Param(
|
|
27
30
|
[Parameter(Mandatory=$True,Position=1)]
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
# Windows
|
|
12
12
|
#
|
|
13
13
|
# DEPENDENCIES:
|
|
14
|
-
# Powershell
|
|
14
|
+
# Powershell 3.0 or above
|
|
15
15
|
#
|
|
16
16
|
# USAGE:
|
|
17
17
|
# Powershell.exe -NonInteractive -NoProfile -ExecutionPolicy Bypass -NoLogo -File C:\\etc\\sensu\\plugins\\check-windows-disk.ps1 90 95 ab
|
|
@@ -22,6 +22,9 @@
|
|
|
22
22
|
# Copyright 2016 sensu-plugins
|
|
23
23
|
# Released under the same terms as Sensu (the MIT license); see LICENSE for details.
|
|
24
24
|
#
|
|
25
|
+
|
|
26
|
+
#Requires -Version 3.0
|
|
27
|
+
|
|
25
28
|
[CmdletBinding()]
|
|
26
29
|
Param(
|
|
27
30
|
[Parameter(Mandatory=$True,Position=1)]
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
# Windows
|
|
12
12
|
#
|
|
13
13
|
# DEPENDENCIES:
|
|
14
|
-
# Powershell
|
|
14
|
+
# Powershell 3.0 or above
|
|
15
15
|
#
|
|
16
16
|
# USAGE:
|
|
17
17
|
# Powershell.exe -NonInteractive -NoProfile -ExecutionPolicy Bypass -NoLogo -File C:\\etc\\sensu\\plugins\\check-windows-http.ps1 https://google.com
|
|
@@ -23,7 +23,9 @@
|
|
|
23
23
|
# Released under the same terms as Sensu (the MIT license); see LICENSE for details.
|
|
24
24
|
#
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
#Requires -Version 3.0
|
|
27
|
+
|
|
28
|
+
[CmdletBinding()]
|
|
27
29
|
Param(
|
|
28
30
|
[Parameter(Mandatory=$True,Position=1)]
|
|
29
31
|
[string]$CheckAddress
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
# Windows
|
|
12
12
|
#
|
|
13
13
|
# DEPENDENCIES:
|
|
14
|
-
# Powershell
|
|
14
|
+
# Powershell 3.0 or above
|
|
15
15
|
#
|
|
16
16
|
# USAGE:
|
|
17
17
|
# Powershell.exe -NonInteractive -NoProfile -ExecutionPolicy Bypass -NoLogo -File C:\\etc\\sensu\\plugins\\check-windows-process.ps1
|
|
@@ -22,6 +22,8 @@
|
|
|
22
22
|
# Copyright 2016 sensu-plugins
|
|
23
23
|
# Released under the same terms as Sensu (the MIT license); see LICENSE for details.
|
|
24
24
|
#
|
|
25
|
+
#Requires -Version 3.0
|
|
26
|
+
|
|
25
27
|
[CmdletBinding()]
|
|
26
28
|
Param(
|
|
27
29
|
[Parameter(Mandatory=$True,Position=1)]
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
# Windows
|
|
12
12
|
#
|
|
13
13
|
# DEPENDENCIES:
|
|
14
|
-
# Powershell
|
|
14
|
+
# Powershell 3.0 or above
|
|
15
15
|
#
|
|
16
16
|
# USAGE:
|
|
17
17
|
# Powershell.exe -NonInteractive -NoProfile -ExecutionPolicy Bypass -NoLogo -File C:\\etc\\sensu\\plugins\\check-windows-processor-queue-length.ps1 5 10
|
|
@@ -22,6 +22,9 @@
|
|
|
22
22
|
# Copyright 2016 sensu-plugins
|
|
23
23
|
# Released under the same terms as Sensu (the MIT license); see LICENSE for details.
|
|
24
24
|
#
|
|
25
|
+
|
|
26
|
+
#Requires -Version 3.0
|
|
27
|
+
|
|
25
28
|
[CmdletBinding()]
|
|
26
29
|
Param(
|
|
27
30
|
[Parameter(Mandatory=$True,Position=1)]
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
# Windows
|
|
12
12
|
#
|
|
13
13
|
# DEPENDENCIES:
|
|
14
|
-
# Powershell
|
|
14
|
+
# Powershell 3.0 or above
|
|
15
15
|
#
|
|
16
16
|
# USAGE:
|
|
17
17
|
# Powershell.exe -NonInteractive -NoProfile -ExecutionPolicy Bypass -NoLogo -File C:\\etc\\sensu\\plugins\\check-windows-ram.ps1 90 95
|
|
@@ -22,6 +22,9 @@
|
|
|
22
22
|
# Copyright 2016 sensu-plugins
|
|
23
23
|
# Released under the same terms as Sensu (the MIT license); see LICENSE for details.
|
|
24
24
|
#
|
|
25
|
+
|
|
26
|
+
#Requires -Version 3.0
|
|
27
|
+
|
|
25
28
|
[CmdletBinding()]
|
|
26
29
|
Param(
|
|
27
30
|
[Parameter(Mandatory=$True,Position=1)]
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
# Windows
|
|
12
12
|
#
|
|
13
13
|
# DEPENDENCIES:
|
|
14
|
-
# Powershell
|
|
14
|
+
# Powershell 3.0 or above
|
|
15
15
|
#
|
|
16
16
|
# USAGE:
|
|
17
17
|
# Powershell.exe -NonInteractive -NoProfile -ExecutionPolicy Bypass -NoLogo -File C:\\etc\\sensu\\plugins\\check-windows-service.ps1
|
|
@@ -22,6 +22,9 @@
|
|
|
22
22
|
# Copyright 2016 sensu-plugins
|
|
23
23
|
# Released under the same terms as Sensu (the MIT license); see LICENSE for details.
|
|
24
24
|
#
|
|
25
|
+
|
|
26
|
+
#Requires -Version 3.0
|
|
27
|
+
|
|
25
28
|
[CmdletBinding()]
|
|
26
29
|
Param(
|
|
27
30
|
[Parameter(Mandatory=$True,Position=1)]
|