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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +1 -0
- data/lib/yabeda/gc.rb +1 -0
- data/lib/yabeda/gc/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 41440f8b8e9270c11b5de5a69bf697c7b3b169e479e2ac0c0d1066f6bd22a319
|
4
|
+
data.tar.gz: 99f2c9626351d75e0480e908bdfcc452e2395d7a4f565b00208d1f2e1b274a81
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9e49962237a4965a40c1cb273214384b160a16e4bfb35a19fb8b7e34df0e02b59f07cf7fb9f3b6b1177dee50eda9594ff12e33997eee54721ec21f3115c8fae
|
7
|
+
data.tar.gz: 308c3b0928ee56dbfb8bcc0657de45af7a2ff5d4284357533cfd475f16c7ebaefa5fbb72271ceb25a77bd3a8719667b155ca26d6467cc5ada5435ef2844b533a
|
data/Gemfile.lock
CHANGED
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"
|
data/lib/yabeda/gc/version.rb
CHANGED