leak_profiler 0.1.2 → 0.1.3
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/.rubocop.yml +3 -0
- data/README.md +8 -0
- data/lib/leak_profiler/memory_usage.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 062abe3c1684ea42ac45baabb2b11ab19624fd461af76ee89aff981d0dec4cb4
|
4
|
+
data.tar.gz: e048e567ceae885b4ac91ff8b72b611144e131c9462ba1e33589c12e1fd392bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f023bc3f7a64638d2e63d7a9262a59b61b16459c22dca2d1a1bb5a3c846deb0758ffd525f504863107f0d3a1611f243fea0f55f6e2cdfbb801c8e75b51492b0d
|
7
|
+
data.tar.gz: 47fe07ea97905182c7656f9557efee004906a15ffcd8e56d465ad39eb3fe57cfc7878e3cc094b6779d6fb33dc143dfcc1b420c55cbbeb8fc2cea3f8ed03950c0
|
data/.rubocop.yml
CHANGED
data/README.md
CHANGED
@@ -66,6 +66,10 @@ Referrers ----------------------------------------------------------------------
|
|
66
66
|
* `max_referrers` (default `3`): Outputs the number of references in order of the amount of memory used.
|
67
67
|
* `report` (defalut `nil`): Specify the logger object if you want to use custom logger.
|
68
68
|
|
69
|
+
> [!WARNING]
|
70
|
+
> This uses `ObjectSpace.allocation_sourcefile` method to measurement.
|
71
|
+
> It can't get an object allocated information in Ruby core API / C extension library API.
|
72
|
+
|
69
73
|
### `LeakProfiler#report_rss`
|
70
74
|
This method outputs the RSS (Resident Set Size) of the process with CSV format, like:
|
71
75
|
|
@@ -80,6 +84,10 @@ elapsed [sec],memory usage (rss) [MB]
|
|
80
84
|
* Arguments:
|
81
85
|
* `interval` (default `1`): The interval in seconds for report.
|
82
86
|
|
87
|
+
> [!WARNING]
|
88
|
+
> This uses this uses `ps` command for measurement.
|
89
|
+
> So, this is not supported Windows platform.
|
90
|
+
|
83
91
|
## Contributing
|
84
92
|
|
85
93
|
Bug reports and pull requests are welcome on GitHub at https://github.com/Watson1978/leak_profiler.
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: leak_profiler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Watson
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-04-
|
10
|
+
date: 2025-04-05 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: logger
|