summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vespa-feed-client-cli/src/main/java/ai/vespa/feed/client/CliClient.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespa-feed-client-cli/src/main/java/ai/vespa/feed/client/CliClient.java b/vespa-feed-client-cli/src/main/java/ai/vespa/feed/client/CliClient.java
index 9d4f3525c32..5aff8dfc25d 100644
--- a/vespa-feed-client-cli/src/main/java/ai/vespa/feed/client/CliClient.java
+++ b/vespa-feed-client-cli/src/main/java/ai/vespa/feed/client/CliClient.java
@@ -127,7 +127,7 @@ public class CliClient {
JsonFactory factory = new JsonFactory();
long okCount = stats.successes();
long errorCount = stats.requests() - okCount;
- double throughput = okCount * 1e6D / Math.max(1, durationNanos);
+ double throughput = okCount * 1e9 / Math.max(1, durationNanos);
try (JsonGenerator generator = factory.createGenerator(systemOut).useDefaultPrettyPrinter()) {
generator.writeStartObject();
generator.writeNumberField("feeder.runtime", durationNanos / 1_000_000);