yabeda-gc 0.1.0 → 0.1.1

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: 0d791570b010726049073dfa6b79512bd81e31e9f87bd63ab617ca974175ecaa
4
- data.tar.gz: 46c3a1752ccd4129666a2ee05511caff406a9f4ed916ac79bd24ca7c06bed943
3
+ metadata.gz: 41440f8b8e9270c11b5de5a69bf697c7b3b169e479e2ac0c0d1066f6bd22a319
4
+ data.tar.gz: 99f2c9626351d75e0480e908bdfcc452e2395d7a4f565b00208d1f2e1b274a81
5
5
  SHA512:
6
- metadata.gz: b69650b1c4f941ee6919768818f58ae3ca874126298441b82a022fe92e5d885f9d05422b206e04432c32d54be5127f1c2a2f4a727193caf4c88389cbb50f159b
7
- data.tar.gz: 8debd642b5f52ee51c2598d41a237e2f0a34530d5543151d8a22d9e56932379b958e0d482ce7944dc9f7c8156f9acc03a79af221c8bc47e3ea396192eaf3b88e
6
+ metadata.gz: a9e49962237a4965a40c1cb273214384b160a16e4bfb35a19fb8b7e34df0e02b59f07cf7fb9f3b6b1177dee50eda9594ff12e33997eee54721ec21f3115c8fae
7
+ data.tar.gz: 308c3b0928ee56dbfb8bcc0657de45af7a2ff5d4284357533cfd475f16c7ebaefa5fbb72271ceb25a77bd3a8719667b155ca26d6467cc5ada5435ef2844b533a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- yabeda-gc (0.1.0)
4
+ yabeda-gc (0.1.1)
5
5
  yabeda (~> 0.6)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -47,6 +47,7 @@ Or install it yourself as:
47
47
  | `old_objects_limit` | Limit of old objects |
48
48
  | `oldmalloc_increase_bytes` | Total bytes allocated to old objects |
49
49
  | `oldmalloc_increase_bytes_limit` | Bytes limit that will trigger garbage collection of old objects |
50
+ | `compact_count` | Count of all GC compactions |
50
51
 
51
52
  ## Development
52
53
 
data/lib/yabeda/gc.rb CHANGED
@@ -11,6 +11,7 @@ module Yabeda
11
11
  group :gc
12
12
 
13
13
  gauge :count, tags: [], comment: "Count of all GCs"
14
+ gauge :compact_count, tags: [], comment: "Count of all GC compactions"
14
15
  gauge :minor_gc_count, tags: [], comment: "Count of minor GCs"
15
16
  gauge :major_gc_count, tags: [], comment: "Count of major GCs"
16
17
  gauge :heap_allocated_pages, tags: [], comment: "Total number of pages allocated for the heap"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Yabeda
4
4
  module GC
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yabeda-gc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Ker-Seymer