mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
13 lines
163 B
JavaScript
13 lines
163 B
JavaScript
|
|
|
|
const pmx = require('pmx');
|
|
const Probe = pmx.probe();
|
|
|
|
var metric = Probe.counter({
|
|
name : 'Counter'
|
|
});
|
|
|
|
setInterval(function() {
|
|
metric.inc()
|
|
}, 500);
|