Skip to content

Commit

Permalink
Merge pull request #86 from HewlettPackard/add_tokencheck
Browse files Browse the repository at this point in the history
update used memory datatype
  • Loading branch information
reubenur-rahman authored Nov 8, 2024
2 parents 3117eb6 + 109a176 commit 649fc66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/models/servers.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ type ComputeServerType struct {
type ServerStats struct {
TS string `json:"ts"`
MaxMemory int64 `json:"maxMemory"`
UsedMemory int `json:"usedMemory"`
UsedMemory int64 `json:"usedMemory"`
MaxStorage int64 `json:"maxStorage"`
UsedStorage int `json:"usedStorage"`
UsedStorage int64 `json:"usedStorage"`
CPUUsage float64 `json:"cpuUsage"`
FreeMemory int64 `json:"freeMemory"`
ReservedMemory int64 `json:"reservedMemory"`
Expand Down

0 comments on commit 649fc66

Please sign in to comment.