heap_periscope_agent 0.0.0 → 0.1.0
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/lib/heap_periscope_agent/version.rb +3 -0
- data/lib/heap_periscope_agent.rb +1 -0
- metadata +15 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 26c1519c5f34b72f63b341f5b3bd5bcdefaab803da97b88fd59e7971fcf9de7a
|
4
|
+
data.tar.gz: d5f3f63e496b04726790d16095298133ce410f991b2eb1dd8675245f7083aad2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce334cdc9dbe12bb33b536b0a0331c9d2574637dee691997767adeff498f4347ef7495b41ed08c7c51057409d032b800a84606b7d0e0535a836b6ca51030db0b
|
7
|
+
data.tar.gz: a09edf18ed45aae75e8978440e6ec36e486280b9ad376ef802901cab933d67ddf83f188a8b429ffaaf3793a3fe4f7ea412e3aebb7f59e84ab79a60571e9393a0
|
data/lib/heap_periscope_agent.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: heap_periscope_agent
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonathan Natanael Siahaan
|
@@ -9,7 +9,11 @@ bindir: bin
|
|
9
9
|
cert_chain: []
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies: []
|
12
|
-
description:
|
12
|
+
description: |
|
13
|
+
Heap Periscope Agent offers deep insights into your Ruby application's memory behavior.
|
14
|
+
It collects and reports real-time Garbage Collection (GC) statistics and object
|
15
|
+
allocation patterns, empowering developers to identify memory leaks, optimize usage,
|
16
|
+
and enhance performance. Highly configurable and designed for minimal overhead.
|
13
17
|
email: js.jonathan.n@gmail.com
|
14
18
|
executables: []
|
15
19
|
extensions: []
|
@@ -19,10 +23,15 @@ files:
|
|
19
23
|
- lib/heap_periscope_agent/collector.rb
|
20
24
|
- lib/heap_periscope_agent/configuration.rb
|
21
25
|
- lib/heap_periscope_agent/reporter.rb
|
22
|
-
|
26
|
+
- lib/heap_periscope_agent/version.rb
|
27
|
+
homepage: https://github.com/codepawpaw/heap_periscope_agent
|
23
28
|
licenses:
|
24
29
|
- MIT
|
25
|
-
metadata:
|
30
|
+
metadata:
|
31
|
+
homepage_uri: https://github.com/codepawpaw/heap_periscope_agent
|
32
|
+
source_code_uri: https://github.com/codepawpaw/heap_periscope_agent
|
33
|
+
changelog_uri: https://github.com/codepawpaw/heap_periscope_agent/blob/master/CHANGELOG.md
|
34
|
+
bug_tracker_uri: https://github.com/codepawpaw/heap_periscope_agent/issues
|
26
35
|
rdoc_options: []
|
27
36
|
require_paths:
|
28
37
|
- lib
|
@@ -39,5 +48,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
39
48
|
requirements: []
|
40
49
|
rubygems_version: 3.6.9
|
41
50
|
specification_version: 4
|
42
|
-
summary:
|
51
|
+
summary: Monitors Ruby application memory with real-time GC and object allocation
|
52
|
+
metrics.
|
43
53
|
test_files: []
|