UNPKG

prometheus-what-active-users-exporter

Version:

Prometheus exporter that scrapes currently logged in users on unix systems

14 lines (10 loc) 213 B
'use strict' const ids = [] module.exports = { new: (callback, millis) => { ids.push(setInterval(callback, millis)) }, clearAll: () => { ids.forEach(id => clearInterval(id)) } }