riemann-tools 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -2
- data/lib/riemann/tools/health.rb +1 -1
- data/lib/riemann/tools/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5eab5c1ce9c48820a1d492d8d97d0898078880306553dc89cc9d68b1a9e01d03
|
4
|
+
data.tar.gz: 60b8fbc757e7775df69ea830013d81afc6521343a0abce8a516a176ef795a2bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: efc7d885bc02343f17757f52d6f7c7782691a3674180bb564041eda6d5070d2112d55261a6de2d559c3554e853c4384ade03619062e49ea091bd07dbb5ad1ec6
|
7
|
+
data.tar.gz: a0bd87531c1a4f1fbeee5acd3777087a67e6617e516d213989a9675a75c0d570397737dbf3c8e7a22f479b1ce0d242ac354003b9571e2fe9ac3f34ab196062c9
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,16 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
## [1.1.
|
3
|
+
## [1.1.1](https://github.com/riemann/riemann-tools/tree/1.1.1) (2022-07-02)
|
4
4
|
|
5
|
-
[Full Changelog](https://github.com/riemann/riemann-tools/compare/v1.
|
5
|
+
[Full Changelog](https://github.com/riemann/riemann-tools/compare/v1.1.0...1.1.1)
|
6
|
+
|
7
|
+
**Fixed bugs:**
|
8
|
+
|
9
|
+
- Ignore overlay filesystems by default [\#215](https://github.com/riemann/riemann-tools/pull/215) ([smortex](https://github.com/smortex))
|
10
|
+
|
11
|
+
## [v1.1.0](https://github.com/riemann/riemann-tools/tree/v1.1.0) (2022-07-01)
|
12
|
+
|
13
|
+
[Full Changelog](https://github.com/riemann/riemann-tools/compare/v1.0.0...v1.1.0)
|
6
14
|
|
7
15
|
**Implemented enhancements:**
|
8
16
|
|
data/lib/riemann/tools/health.rb
CHANGED
@@ -14,7 +14,7 @@ module Riemann
|
|
14
14
|
opt :disk_warning, 'Disk warning threshold (fraction of space used)', default: 0.9
|
15
15
|
opt :disk_critical, 'Disk critical threshold (fraction of space used)', default: 0.95
|
16
16
|
opt :disk_ignorefs, 'A list of filesystem types to ignore',
|
17
|
-
default: %w[anon_inodefs autofs cd9660 devfs devtmpfs fdescfs iso9660 linprocfs linsysfs nfs procfs tmpfs]
|
17
|
+
default: %w[anon_inodefs autofs cd9660 devfs devtmpfs fdescfs iso9660 linprocfs linsysfs nfs overlay procfs tmpfs]
|
18
18
|
opt :load_warning, 'Load warning threshold (load average / core)', default: 3.0
|
19
19
|
opt :load_critical, 'Load critical threshold (load average / core)', default: 8.0
|
20
20
|
opt :memory_warning, 'Memory warning threshold (fraction of RAM)', default: 0.85
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: riemann-tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle Kingsbury
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-07-
|
11
|
+
date: 2022-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|