malsh 0.3.6 → 0.3.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/malsh/cli.rb +21 -21
  3. data/lib/malsh/version.rb +1 -1
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 496b75cce4bfa94893f699050d52c6eb43b56cf3863fd9f0bfe0e07748961b8d
4
- data.tar.gz: 84f4216c6c2e56b81332d2a777b6953413f43a09a5216ad0a5aaed1a14421271
3
+ metadata.gz: d2921c475fe2f506e5112d5516ce9edd3dced93b747d54e201e75b501ce08e07
4
+ data.tar.gz: 667793ad29f16f1f5da072262f7a20ae568e991cf893ac4acff1ab5eec4bf945
5
5
  SHA512:
6
- metadata.gz: bf1876097f304d5a5a6736f24c474de58beab2609f70c5ba4a9d955fb6e2183a53f48f86aaf8e067979cac67f495fbce2147d3b110bec460aa5f920ffc874df3
7
- data.tar.gz: cf51581d01a034a937bd46fa5b80336d247713185e05806b5444e0137fee4d485af18f2171bf4038c94bd678b013461a3a582db89865343fe0c591af2e7cc79d
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, :type => :string, :aliases => :sw
7
- class_option :slack_channel, :type => :string, :aliases => :sc
8
- class_option :slack_user, :type => :string, :aliases => :su
9
- class_option :api_key, :type => :string, :aliases => :k
10
- class_option :subject, :type => :string, :aliases => :s
11
- class_option :org, :type => :string, :aliases => :o
12
- class_option :invert_match, :type => :array, :aliases => :v
13
- class_option :invert_role, :type => :array, :aliases => :r
14
- class_option :regexp,:type => :array, :aliases => :e
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 - 86400,
23
+ Time.now.to_i - 86_400,
25
24
  Time.now.to_i
26
25
  )
27
- h if (!m || (m["metrics"] && m["metrics"].size == 0)) && !(h["meta"].has_key?("cloud") && %w(elb rds cloudfront).include?(h["meta"]["cloud"]["provider"]))
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("退役未了ホスト一覧", hosts)
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("ロール無所属ホスト一覧", hosts)
40
+ Malsh.notify_host('ロール無所属ホスト一覧', hosts)
41
41
  end
42
42
 
43
43
  desc 'search', 'search hosts'
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
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("Malsh::HostMetrics").constants.each do |c|
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("ホスト一覧", hosts.compact)
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 "--version, -v", "print the version"
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
@@ -1,3 +1,3 @@
1
1
  module Malsh
2
- VERSION = '0.3.6'
2
+ VERSION = '0.3.7'
3
3
  end
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.6
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: 2022-07-25 00:00:00.000000000 Z
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.3
159
+ rubygems_version: 3.3.26
160
160
  signing_key:
161
161
  specification_version: 4
162
162
  summary: mackerel tools.