You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2021/10/13 22:14:10 UTC

[geode-benchmarks] branch develop updated: Slight tweak to the widths in DumpResults script

This is an automated email from the ASF dual-hosted git repository.

upthewaterspout pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git


The following commit(s) were added to refs/heads/develop by this push:
     new e8157e2  Slight tweak to the widths in DumpResults script
e8157e2 is described below

commit e8157e21fe805ac93ca5fc5246b296be376c4282
Author: Dan Smith <da...@vmware.com>
AuthorDate: Wed Oct 13 15:12:29 2021 -0700

    Slight tweak to the widths in DumpResults script
    
    Increasing the widthe of the test name column to accomodate our largest test
    names. Eventually we could switch to a more intelligent table printing library
    but this works for the moment.
---
 .../main/java/org/apache/geode/perftest/analysis/DumpResults.java   | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/harness/src/main/java/org/apache/geode/perftest/analysis/DumpResults.java b/harness/src/main/java/org/apache/geode/perftest/analysis/DumpResults.java
index 4c1f9db..78d964e 100644
--- a/harness/src/main/java/org/apache/geode/perftest/analysis/DumpResults.java
+++ b/harness/src/main/java/org/apache/geode/perftest/analysis/DumpResults.java
@@ -37,7 +37,7 @@ public class DumpResults {
 
     BenchmarkReader reader = new BenchmarkReader();
     reader.addProbe(new YardstickHdrHistogramParser());
-    System.out.printf("%-40s %-30s %-16s %-16s %-16s\n", "Directory", "Benchmark", "ops/sec",
+    System.out.printf("%-30s %-55s %-16s %-16s %-16s\n", "Directory", "Benchmark", "ops/sec",
         "avg latency(ms)", "99%% latency(ms)");
 
     Arrays.sort(args);
@@ -58,11 +58,9 @@ public class DumpResults {
             benchmarkResult.getValue().get(YardstickHdrHistogramParser.PERCENTILE_LATENCY_99).value
                 / 1_000_000.0;
 
-        System.out.printf("%-40s %-30s %-16.2f %-16.4f %-16.4f\n", benchmarkDir.getName(), name,
+        System.out.printf("%-30s %-55s %-16.2f %-16.4f %-16.4f\n", benchmarkDir.getName(), name,
             opsPerSec, latency, latency_99);
       }
-
-
     }
   }
 }