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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7cafa0eb63dce619c0f5cf2f23042db020e435905eb7d00e2338d3c499495d02
4
- data.tar.gz: ab6875fdfe16bd70461db8569b4c5572bbd261e931a6efa98c2bede6660e9d1b
3
+ metadata.gz: 42856e6da789b3ad1a522b95bc642bdf7abe1e2fb7679e4839b7da7e3157b6a9
4
+ data.tar.gz: 937b2f2557ad06fe36e230c623ab07773d17bc1dd278e80b87bb8fb881a9427c
5
5
  SHA512:
6
- metadata.gz: 17bb023ddebbde5fda03b2ed90411274a335e34ac5ddc83e4df7821454e40484957688ed7dfe72b9245190006fee0c2e1e39aa375fe17c12f95bba9838f2d767
7
- data.tar.gz: 259636bb0f5049e404ec752edf0e659b23b8bc1adcaea69ef2f0db4cc3bfccac028793fd48920d9e4a54e5cda86a3a52581eb2dc250abd0b5f8476dec815772f
6
+ metadata.gz: 4f06a76145f4f4aafd9f4fa8e2de7ef855190729d25b98a6ab36a8bcbcb1ee41242736e96b3c15693ffeb341ee229f3852f00f36b27785b84124e587fdcfad41
7
+ data.tar.gz: 86b957bb0edbf89f0cb7904b0059d75db11366eb26ca1b1112cd4c7566aa896240dc430d4d56a177c00c4862ebbf677f73f3447bda9e798226d7fcbf60836408
data/NEWS CHANGED
@@ -1,5 +1,10 @@
1
1
  ## 2021-XX-XX: PerfMonger 0.15.0
2
2
 
3
+ ## 2021-12-01: PerfMonger 0.14.1
4
+ * Changes
5
+ * [plot] subcommand:
6
+ * Skip plotting memory usage if it is not recorded
7
+
3
8
  ## 2021-07-27: PerfMonger 0.14.0
4
9
  * New features
5
10
  * [plot] subcommand:
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
@@ -1,3 +1,3 @@
1
1
  module PerfMonger
2
- VERSION = "0.14.0"
2
+ VERSION = "0.14.1"
3
3
  end
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.0
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-07-27 00:00:00.000000000 Z
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
- rubygems_version: 3.1.6
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