From 0d186677e44bc9ab68e4cc0a65a8241d9db0f682 Mon Sep 17 00:00:00 2001 From: Martin/Geno Date: Wed, 31 Jan 2018 18:15:00 +0100 Subject: [PATCH] [BUGFIX] increase uint32 to int64 for memory --- data/statistics.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/statistics.go b/data/statistics.go index 942c651..437113a 100644 --- a/data/statistics.go +++ b/data/statistics.go @@ -66,10 +66,10 @@ type Clients struct { // Memory struct type Memory struct { - Cached uint32 `json:"cached"` - Total uint32 `json:"total"` - Buffers uint32 `json:"buffers"` - Free uint32 `json:"free"` + Cached int64 `json:"cached"` + Total int64 `json:"total"` + Buffers int64 `json:"buffers"` + Free int64 `json:"free"` } // SwitchPort struct