Sentry/assets/coffee/memory.coffee
Gregory Ballantine c878447c45
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Changed to using a tabbed layout instead of separate pages for everything
2022-10-28 01:06:09 -04:00

26 lines
742 B
CoffeeScript

si = require('systeminformation')
window.addEventListener('load', () ->
# Grab the static CPU information
si.mem()
.then((data) ->
document.getElementById('memoryTotal').innerText = @formatBytes(data.total)
).catch((error) ->
console.error(error)
)
# Start the CPU temperature loop
getMemoryUsage()
, false)
getMemoryUsage = () ->
si.mem()
.then((data) ->
document.getElementById('memoryFree').innerText = @formatBytes(data.free)
document.getElementById('memoryActive').innerText = @formatBytes(data.active)
document.getElementById('memoryBuffCache').innerText = @formatBytes(data.buffcache)
).catch((error) ->
console.error(error)
)
setTimeout(getMemoryUsage, 2000)