perfmonger 0.14.0 → 0.14.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/NEWS +5 -0
- data/lib/exec/perfmonger-player_darwin_amd64 +0 -0
- data/lib/exec/perfmonger-player_linux_amd64 +0 -0
- data/lib/exec/perfmonger-plot-formatter_darwin_amd64 +0 -0
- data/lib/exec/perfmonger-plot-formatter_linux_amd64 +0 -0
- data/lib/exec/perfmonger-recorder_darwin_amd64 +0 -0
- data/lib/exec/perfmonger-recorder_linux_amd64 +0 -0
- data/lib/exec/perfmonger-summarizer_darwin_amd64 +0 -0
- data/lib/exec/perfmonger-summarizer_linux_amd64 +0 -0
- data/lib/exec/perfmonger-viewer_darwin_amd64 +0 -0
- data/lib/exec/perfmonger-viewer_linux_amd64 +0 -0
- data/lib/perfmonger/command/plot.rb +5 -0
- data/lib/perfmonger/version.rb +1 -1
- metadata +22 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 42856e6da789b3ad1a522b95bc642bdf7abe1e2fb7679e4839b7da7e3157b6a9
|
4
|
+
data.tar.gz: 937b2f2557ad06fe36e230c623ab07773d17bc1dd278e80b87bb8fb881a9427c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f06a76145f4f4aafd9f4fa8e2de7ef855190729d25b98a6ab36a8bcbcb1ee41242736e96b3c15693ffeb341ee229f3852f00f36b27785b84124e587fdcfad41
|
7
|
+
data.tar.gz: 86b957bb0edbf89f0cb7904b0059d75db11366eb26ca1b1112cd4c7566aa896240dc430d4d56a177c00c4862ebbf677f73f3447bda9e798226d7fcbf60836408
|
data/NEWS
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -517,6 +517,11 @@ EOS
|
|
517
517
|
gp_filename = @output_prefix + 'mem.gp'
|
518
518
|
dat_filename = @output_prefix + 'mem.dat'
|
519
519
|
|
520
|
+
unless File.exists?(dat_filename)
|
521
|
+
$stderr.puts("WARN: memory usage info is not available.")
|
522
|
+
return
|
523
|
+
end
|
524
|
+
|
520
525
|
if @output_type != 'pdf'
|
521
526
|
img_filename = @output_prefix + 'cpu.' + @output_type
|
522
527
|
else
|
data/lib/perfmonger/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: perfmonger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.14.
|
4
|
+
version: 0.14.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yuto HAYAMIZU
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-12-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -217,8 +217,26 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
217
217
|
- !ruby/object:Gem::Version
|
218
218
|
version: '0'
|
219
219
|
requirements: []
|
220
|
-
|
220
|
+
rubyforge_project:
|
221
|
+
rubygems_version: 2.7.6
|
221
222
|
signing_key:
|
222
223
|
specification_version: 4
|
223
224
|
summary: yet anothor performance measurement/monitoring tool
|
224
|
-
test_files:
|
225
|
+
test_files:
|
226
|
+
- spec/data/busy100.pgr
|
227
|
+
- spec/data/busy100.pgr.gz
|
228
|
+
- spec/data/busy100.pgr.played
|
229
|
+
- spec/data/busy100.pgr.plot-formatted.cpu.dat
|
230
|
+
- spec/data/busy100.pgr.plot-formatted.disk.dat
|
231
|
+
- spec/data/busy100.pgr.summary
|
232
|
+
- spec/data/busy100.pgr.summary.json
|
233
|
+
- spec/fingerprint_spec.rb
|
234
|
+
- spec/live_spec.rb
|
235
|
+
- spec/perfmonger_spec.rb
|
236
|
+
- spec/play_spec.rb
|
237
|
+
- spec/plot_spec.rb
|
238
|
+
- spec/record_spec.rb
|
239
|
+
- spec/spec_helper.rb
|
240
|
+
- spec/stat_spec.rb
|
241
|
+
- spec/summary_spec.rb
|
242
|
+
- spec/support/aruba.rb
|