You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
503 B
17 lines
503 B
const ProgressBar = require('progress')
|
|
|
|
module.exports = function stats (deviceManager) {
|
|
const bar = new ProgressBar('Time :elapsed: | Devices :devices | Measurements :measurements | Writes :writes | Size :size kb | Errors :errors', {total: 1000000})
|
|
|
|
const update = stats => {
|
|
stats = JSON.parse(JSON.stringify(stats))
|
|
stats.size = Math.round((stats.size / 1024).toFixed(2))
|
|
bar.tick(stats)
|
|
}
|
|
|
|
setInterval(() => {
|
|
update(deviceManager.getStats())
|
|
}, 100)
|
|
|
|
return update
|
|
}
|
|
|