/
githubmirror
/
pm2
Обзор
Документация
Войти
/
githubmirror
/
pm2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/misc-examples/auto-restart-threshold.js
28 строк
380 B
Unitech
Update README.md and fully restructure tests
24 янв 2018, 14:43
24 янв 2018, 14:43
dcd190b
Код
Авторство
О чём код?
var pmx = require('pmx'); var Probe = pmx.probe(); var i = 0; var val = Probe.metric({ name : 'test', value : function() { return i; }, alert : { mode : 'threshold', value : 20, msg : 'more than 20', func : function() { console.log('exiting'); process.exit(1); } } }); setInterval(function() { console.log(i); i++; }, 200);