From a3f2ee431f1a4e91729cbb435dad0ed3322204f7 Mon Sep 17 00:00:00 2001 From: davidjumani Date: Fri, 20 Nov 2020 13:39:41 +0530 Subject: [PATCH] Fixing misleading HostMetricsResponse param description (#4485) --- .../org/apache/cloudstack/response/HostMetricsResponse.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/metrics/src/main/java/org/apache/cloudstack/response/HostMetricsResponse.java b/plugins/metrics/src/main/java/org/apache/cloudstack/response/HostMetricsResponse.java index a7446af98a5..484cd068945 100644 --- a/plugins/metrics/src/main/java/org/apache/cloudstack/response/HostMetricsResponse.java +++ b/plugins/metrics/src/main/java/org/apache/cloudstack/response/HostMetricsResponse.java @@ -48,15 +48,15 @@ public class HostMetricsResponse extends HostResponse { private Double loadAverage; @SerializedName("memorytotalgb") - @Param(description = "the total cpu capacity in GiB") + @Param(description = "the total memory capacity in GiB") private String memTotal; @SerializedName("memoryusedgb") - @Param(description = "the total cpu used in GiB") + @Param(description = "the total memory used in GiB") private String memUsed; @SerializedName("memoryallocatedgb") - @Param(description = "the total cpu allocated in GiB") + @Param(description = "the total memory allocated in GiB") private String memAllocated; @SerializedName("networkread")