diff options
Diffstat (limited to 'ogcp/templates/cache_inspector.html')
-rw-r--r-- | ogcp/templates/cache_inspector.html | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/ogcp/templates/cache_inspector.html b/ogcp/templates/cache_inspector.html index 42dd983..8e64cd4 100644 --- a/ogcp/templates/cache_inspector.html +++ b/ogcp/templates/cache_inspector.html @@ -100,9 +100,9 @@ } function updateChart(ip) { - var totalCache = toGiB(storageData[ip].total, 3); + var totalCache = toGiB(storageData[ip].used + storageData[ip].free, 3); var usedCache = toGiB(storageData[ip].used, 3); - var freeCache = toGiB(storageData[ip].total - storageData[ip].used, 3) + var freeCache = toGiB(storageData[ip].free, 3); cacheChart.data.datasets[0].data = [ usedCache, @@ -134,9 +134,7 @@ $('.badge-pill').each(function(index) { for (var ip in storageData) { if ($(this).html().includes(ip)) { - var totalCache = storageData[ip].total; - var usedCache = storageData[ip].used; - var freeCache = toGiB(totalCache - usedCache, 1) + var freeCache = toGiB(storageData[ip].free, 1) $(this).html($(this).html() + '<br>free: ' + freeCache + ' GiB'); break; } |