sensu-plugins-filesystem-checks 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 +5 -5
- data/CHANGELOG.md +12 -1
- data/README.md +4 -0
- data/lib/sensu-plugins-filesystem-checks/version.rb +1 -1
- metadata +17 -18
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 29ed03b37eefe56cd603d82cfe82d2583894900de53b115d573856055bb47d08
|
|
4
|
+
data.tar.gz: 297e768446352ae8d23a17c6bb73388a524c8f9479a49b15c88b78e222368791
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb9e12124525a1e513d5f34aa3663629499fbcb54e7fdeaf33f350df5aadabef84c9ed59d94365c1a043dcdbe03d2f6530102641d060dd8bbf2d5471de6d9281
|
|
7
|
+
data.tar.gz: 7ca83ad8f4e25b84cd30f9260c40281ee8a9c2235cfe33274e0ff4d7179d9e4cd691b9d20a3e2432f95652adc8aa18754fdc4cd2398dde60c5ddf339e3f821ba
|
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] - 2019-05-07
|
|
9
|
+
### Breaking Changes
|
|
10
|
+
- Update minimum required ruby version to 2.3. Drop unsupported ruby versions.
|
|
11
|
+
- Bump `sensu-plugin` dependency from `~> 1.2` to `~> 4.0` you can read the changelog entries for [4.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#400---2018-02-17), [3.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#300---2018-12-04), and [2.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#v200---2017-03-29)
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- Added testing on Ruby 2.4.1 (@portertech)
|
|
15
|
+
- Travis build automation to generate Sensu Asset tarballs that can be used n conjunction with Sensu provided ruby runtime assets and the Bonsai Asset Index
|
|
16
|
+
- Require latest sensu-plugin for [Sensu Go support](https://github.com/sensu-plugins/sensu-plugin#sensu-go-enablement)
|
|
17
|
+
|
|
8
18
|
## [1.0.0] - 2017-07-01
|
|
9
19
|
### Added
|
|
10
20
|
- Added testing on Ruby 2.3.0 (@Evesy)
|
|
@@ -46,7 +56,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
|
46
56
|
### Added
|
|
47
57
|
- initial release
|
|
48
58
|
|
|
49
|
-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-filesystem-checks/compare/
|
|
59
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-filesystem-checks/compare/2.0.0...HEAD
|
|
60
|
+
[2.0.0]: https://github.com/sensu-plugins/sensu-plugins-filesystem-checks/compare/1.0.0...2.0.0
|
|
50
61
|
[1.0.0]: https://github.com/sensu-plugins/sensu-plugins-filesystem-checks/compare/0.0.4...1.0.0
|
|
51
62
|
[0.1.0]: https://github.com/sensu-plugins/sensu-plugins-filesystem-checks/compare/0.0.3...0.0.4
|
|
52
63
|
[0.0.4]: https://github.com/sensu-plugins/sensu-plugins-filesystem-checks/compare/0.0.3...0.0.4
|
data/README.md
CHANGED
|
@@ -5,6 +5,10 @@
|
|
|
5
5
|
[](https://codeclimate.com/github/sensu-plugins/sensu-plugins-filesystem-checks)
|
|
6
6
|
[](https://codeclimate.com/github/sensu-plugins/sensu-plugins-filesystem-checks)
|
|
7
7
|
[](https://gemnasium.com/sensu-plugins/sensu-plugins-filesystem-checks)
|
|
8
|
+
[](https://bonsai.sensu.io/assets/sensu-plugins/sensu-plugins-filesystem-checks)
|
|
9
|
+
|
|
10
|
+
## Sensu Asset
|
|
11
|
+
The Sensu assets packaged from this repository are built against the Sensu ruby runtime environment. When using these assets as part of a Sensu Go resource (check, mutator or handler), make sure you include the corresponding Sensu ruby runtime asset in the list of assets needed by the resource. The current ruby-runtime assets can be found [here](https://bonsai.sensu.io/assets/sensu/sensu-ruby-runtime) in the [Bonsai Asset Index](bonsai.sensu.io).
|
|
8
12
|
|
|
9
13
|
## Functionality
|
|
10
14
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sensu-plugins-filesystem-checks
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sensu-Plugins and contributors
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-05-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sensu-plugin
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '4.0'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
26
|
+
version: '4.0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: bundler
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -58,14 +58,14 @@ dependencies:
|
|
|
58
58
|
requirements:
|
|
59
59
|
- - "~>"
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: '
|
|
61
|
+
version: '3.0'
|
|
62
62
|
type: :development
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
66
|
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: '
|
|
68
|
+
version: '3.0'
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
70
|
name: pry
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -86,14 +86,14 @@ dependencies:
|
|
|
86
86
|
requirements:
|
|
87
87
|
- - "~>"
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: '
|
|
89
|
+
version: '12.3'
|
|
90
90
|
type: :development
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
94
|
- - "~>"
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: '
|
|
96
|
+
version: '12.3'
|
|
97
97
|
- !ruby/object:Gem::Dependency
|
|
98
98
|
name: redcarpet
|
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -156,17 +156,17 @@ description: |-
|
|
|
156
156
|
attributes.
|
|
157
157
|
email: "<sensu-users@googlegroups.com>"
|
|
158
158
|
executables:
|
|
159
|
+
- metrics-nfsstat.rb
|
|
160
|
+
- check-fs-writable.rb
|
|
161
|
+
- check-file-size.rb
|
|
162
|
+
- metrics-dirsize.rb
|
|
163
|
+
- check-tail.rb
|
|
159
164
|
- check-checksums.rb
|
|
165
|
+
- check-file-exists.rb
|
|
166
|
+
- metrics-filesize.rb
|
|
160
167
|
- check-dir-count.rb
|
|
161
168
|
- check-dir-size.rb
|
|
162
|
-
- check-file-exists.rb
|
|
163
|
-
- check-file-size.rb
|
|
164
|
-
- check-fs-writable.rb
|
|
165
169
|
- check-mtime.rb
|
|
166
|
-
- check-tail.rb
|
|
167
|
-
- metrics-dirsize.rb
|
|
168
|
-
- metrics-filesize.rb
|
|
169
|
-
- metrics-nfsstat.rb
|
|
170
170
|
extensions: []
|
|
171
171
|
extra_rdoc_files: []
|
|
172
172
|
files:
|
|
@@ -204,15 +204,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
204
204
|
requirements:
|
|
205
205
|
- - ">="
|
|
206
206
|
- !ruby/object:Gem::Version
|
|
207
|
-
version: 2.
|
|
207
|
+
version: '2.3'
|
|
208
208
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
209
209
|
requirements:
|
|
210
210
|
- - ">="
|
|
211
211
|
- !ruby/object:Gem::Version
|
|
212
212
|
version: '0'
|
|
213
213
|
requirements: []
|
|
214
|
-
|
|
215
|
-
rubygems_version: 2.4.5
|
|
214
|
+
rubygems_version: 3.0.3
|
|
216
215
|
signing_key:
|
|
217
216
|
specification_version: 4
|
|
218
217
|
summary: Sensu plugins for filesystems
|