kubernetes-health 3.4.1 → 3.4.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e002184325d2c508f38c8fc4c73532d748046664fcc65764e345d0119734d066
4
- data.tar.gz: 85419dad18b1fe9df0d0fcdcbbf1686f0e7233497bc1685f2a1182baba7cceb8
3
+ metadata.gz: 9d7d7ca3715c624f28575a1af905a79df3b2c3ce4b6d7370ecca88450a98e58e
4
+ data.tar.gz: ec8c4cb288f68ac86904f15135308a49b801b814b14313ddb5d611e02243600e
5
5
  SHA512:
6
- metadata.gz: 5b3cc913270ba83fda812e464bbcd3469e6949778059e707b6de62f4b2391747ade9f957c12062c0f98c42fbd0beb421403caed4c0bd6c15acc553edb917f560
7
- data.tar.gz: b147c8e17cee0c3648116ac10eb1e9e6cfa89d1f78a5d03815629d2aa0d27b8b066fb4abcf70b6ea3b0595de36828911b8959c1cf2a0bd9f3077c0f9d1d8a6af
6
+ metadata.gz: b73ef9ee17ab78d1ec044a75ac71787fedb9d86e292bcccbf21a3ae55693db7b65cc4634204596ae815500f8cb040cf72e026352faaeed7b2e3e5251c09fc084
7
+ data.tar.gz: 3663742f867ab3a01c97eb5c8ed93f6a2904f3e7d68540e1a3caf478f0c585e64d289e6a8523a4b64e2becd67a35da6d34b9d921808c3e14deb9289798ea6845
@@ -1,5 +1,5 @@
1
1
  module Kubernetes
2
2
  module Health
3
- VERSION = "3.4.1"
3
+ VERSION = "3.4.2"
4
4
  end
5
5
  end
@@ -28,15 +28,17 @@ module Puma
28
28
  when ::Kubernetes::Health::Config.route_metrics
29
29
  http_code = 200
30
30
  if ::Kubernetes::Health::Config.response_format == 'json'
31
- content = include_puma_key_prefix(include_usage(JSON.parse(@launcher.stats))).to_json
31
+ content = include_puma_key_prefix(include_usage(@launcher.stats)).to_json
32
32
  else
33
- @parser.parse include_usage(JSON.parse(@launcher.stats))
33
+ @parser.parse include_usage(@launcher.stats)
34
34
  content = Prometheus::Client::Formats::Text.marshal(Prometheus::Client.registry)
35
35
  end
36
36
  else
37
37
  http_code = 404
38
38
  end
39
- rescue
39
+ rescue => e
40
+ Rails.logger.error e.message
41
+ Rails.logger.error e.backtrace.join("\n")
40
42
  http_code = 500
41
43
  content = ''
42
44
  end
@@ -45,6 +47,13 @@ module Puma
45
47
  end
46
48
 
47
49
  def include_usage(stats)
50
+ if stats.is_a?(String)
51
+ # puma <= 4.
52
+ stats = JSON.parse(stats)
53
+ else
54
+ # Puma >=5 uses symbol.
55
+ stats = JSON.parse(stats.to_json)
56
+ end
48
57
  stats['usage'] = (1 - stats['pool_capacity'].to_f / stats['max_threads']).round(2)
49
58
  stats
50
59
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kubernetes-health
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.1
4
+ version: 3.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wagner Caixeta
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-07-29 00:00:00.000000000 Z
11
+ date: 2021-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -160,7 +160,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
160
160
  - !ruby/object:Gem::Version
161
161
  version: '0'
162
162
  requirements: []
163
- rubygems_version: 3.2.17
163
+ rubygems_version: 3.1.4
164
164
  signing_key:
165
165
  specification_version: 4
166
166
  summary: This gem allows kubernetes monitoring your app while it is running migrates