From 10c47102d6133b86e4c39df96fd25a91010a9864 Mon Sep 17 00:00:00 2001 From: Dante Niewenhuis Date: Wed, 14 Feb 2024 11:52:32 +0100 Subject: Updated metrics and parquet output (#195) * Updated metrics and parquet output * fixed typos --- .../org/opendc/compute/service/driver/telemetry/HostSystemStats.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'opendc-compute/opendc-compute-service/src/main/java/org') diff --git a/opendc-compute/opendc-compute-service/src/main/java/org/opendc/compute/service/driver/telemetry/HostSystemStats.java b/opendc-compute/opendc-compute-service/src/main/java/org/opendc/compute/service/driver/telemetry/HostSystemStats.java index c0928f1b..d9dba274 100644 --- a/opendc-compute/opendc-compute-service/src/main/java/org/opendc/compute/service/driver/telemetry/HostSystemStats.java +++ b/opendc-compute/opendc-compute-service/src/main/java/org/opendc/compute/service/driver/telemetry/HostSystemStats.java @@ -31,7 +31,7 @@ import java.time.Instant; * @param uptime The cumulative uptime of the host since last boot (in ms). * @param downtime The cumulative downtime of the host since last boot (in ms). * @param bootTime The time at which the server started. - * @param powerUsage Instantaneous power usage of the system (in W). + * @param powerDraw Instantaneous power draw of the system (in W). * @param energyUsage The cumulative energy usage of the system (in J). * @param guestsTerminated The number of guests that are in a terminated state. * @param guestsRunning The number of guests that are in a running state. @@ -42,7 +42,7 @@ public record HostSystemStats( Duration uptime, Duration downtime, Instant bootTime, - double powerUsage, + double powerDraw, double energyUsage, int guestsTerminated, int guestsRunning, -- cgit v1.2.3