malsh 0.3.6 → 0.3.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/malsh/cli.rb +21 -21
- data/lib/malsh/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d2921c475fe2f506e5112d5516ce9edd3dced93b747d54e201e75b501ce08e07
|
4
|
+
data.tar.gz: 667793ad29f16f1f5da072262f7a20ae568e991cf893ac4acff1ab5eec4bf945
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef60cccc6ff2ed471f23b2abb54e4976f405f9e923eab9e6c2f52d8dcb44c7abe82f63628d4ff568664ec3cc4a4d77a517a5ea22acde800fc0b5902747600eac
|
7
|
+
data.tar.gz: dbd026c600590927df289db850dc278a9698b2296b91b9a295848978eb975adc93d648b86d034073a1cced56f6b9e37bdbd69ccac7793b84325dbeb626906608
|
data/lib/malsh/cli.rb
CHANGED
@@ -1,17 +1,16 @@
|
|
1
1
|
require 'malsh'
|
2
2
|
require 'parallel'
|
3
|
-
require 'pp'
|
4
3
|
module Malsh
|
5
4
|
class CLI < Thor
|
6
|
-
class_option :slack_webhook, :
|
7
|
-
class_option :slack_channel, :
|
8
|
-
class_option :slack_user, :
|
9
|
-
class_option :api_key, :
|
10
|
-
class_option :subject, :
|
11
|
-
class_option :org, :
|
12
|
-
class_option :invert_match, :
|
13
|
-
class_option :invert_role, :
|
14
|
-
class_option :regexp
|
5
|
+
class_option :slack_webhook, type: :string, aliases: :sw
|
6
|
+
class_option :slack_channel, type: :string, aliases: :sc
|
7
|
+
class_option :slack_user, type: :string, aliases: :su
|
8
|
+
class_option :api_key, type: :string, aliases: :k
|
9
|
+
class_option :subject, type: :string, aliases: :s
|
10
|
+
class_option :org, type: :string, aliases: :o
|
11
|
+
class_option :invert_match, type: :array, aliases: :v
|
12
|
+
class_option :invert_role, type: :array, aliases: :r
|
13
|
+
class_option :regexp, type: :array, aliases: :e
|
15
14
|
|
16
15
|
desc 'retire', 'check forget retire host'
|
17
16
|
def retire
|
@@ -21,12 +20,13 @@ module Malsh
|
|
21
20
|
m = Malsh.host_metrics(
|
22
21
|
h.id,
|
23
22
|
Malsh.host_metric_names(h.id).first,
|
24
|
-
Time.now.to_i -
|
23
|
+
Time.now.to_i - 86_400,
|
25
24
|
Time.now.to_i
|
26
25
|
)
|
27
|
-
h if (!m || (m[
|
26
|
+
h if (!m || (m['metrics'] && m['metrics'].size == 0)) &&
|
27
|
+
!(h['meta'].has_key?('cloud') && %w[elb rds cloudfront kubernetes].include?(h['meta']['cloud']['provider']))
|
28
28
|
end.flatten.compact
|
29
|
-
Malsh.notify_host(
|
29
|
+
Malsh.notify_host('退役未了ホスト一覧', hosts)
|
30
30
|
end
|
31
31
|
|
32
32
|
desc 'maverick', 'check no role'
|
@@ -37,22 +37,22 @@ module Malsh
|
|
37
37
|
h if h.roles.keys.size < 1
|
38
38
|
end.flatten.compact
|
39
39
|
|
40
|
-
Malsh.notify_host(
|
40
|
+
Malsh.notify_host('ロール無所属ホスト一覧', hosts)
|
41
41
|
end
|
42
42
|
|
43
43
|
desc 'search', 'search hosts'
|
44
|
-
option :past_date
|
45
|
-
option :cpu_threshold, :
|
46
|
-
option :memory_threshold, :
|
47
|
-
option :status, :
|
44
|
+
option :past_date, type: :numeric, aliases: :p
|
45
|
+
option :cpu_threshold, type: :numeric, aliases: :c
|
46
|
+
option :memory_threshold, type: :numeric, aliases: :m
|
47
|
+
option :status, type: :string, aliases: :st
|
48
48
|
def search
|
49
49
|
Malsh.init options
|
50
50
|
o = options[:status] ? { status: options[:status] } : {}
|
51
51
|
hosts = Malsh.hosts(o)
|
52
|
-
Object.const_get(
|
52
|
+
Object.const_get('Malsh::HostMetrics').constants.each do |c|
|
53
53
|
hosts = Object.const_get("Malsh::HostMetrics::#{c}").check(hosts)
|
54
54
|
end
|
55
|
-
Malsh.notify_host(
|
55
|
+
Malsh.notify_host('ホスト一覧', hosts.compact)
|
56
56
|
end
|
57
57
|
|
58
58
|
desc 'alert', 'list alerts'
|
@@ -63,7 +63,7 @@ module Malsh
|
|
63
63
|
end
|
64
64
|
|
65
65
|
map %w[--version -v] => :__print_version
|
66
|
-
desc
|
66
|
+
desc '--version, -v', 'print the version'
|
67
67
|
def __print_version
|
68
68
|
puts Malsh::VERSION
|
69
69
|
end
|
data/lib/malsh/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: malsh
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- kazuhiko yamahsita
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-09-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -156,7 +156,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
156
156
|
- !ruby/object:Gem::Version
|
157
157
|
version: '0'
|
158
158
|
requirements: []
|
159
|
-
rubygems_version: 3.3.
|
159
|
+
rubygems_version: 3.3.26
|
160
160
|
signing_key:
|
161
161
|
specification_version: 4
|
162
162
|
summary: mackerel tools.
|