Fixing misleading HostMetricsResponse param description (#4485)

This commit is contained in:
davidjumani 2020-11-20 13:39:41 +05:30 committed by GitHub
parent 1692df421c
commit a3f2ee431f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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")