node-watchman

0.1.0 • Public • Published

watchman

监视服务器运行情况

Installation

npm install node-watchman

Usage

监视指定的主机端口,状态发生变化时触发回调,不指定主机时监听本机端口。

var man = Watchman();
man.watch(80, function(point){
    // localhost:80 state change
});
man.watch(27017, 'example.com', function(point){
    // example.com:27017 state change
});
man.start(3000); // check interval 3000ms

同一个主机端口可绑定多个回调。

var man = Watchman();
man.watch(80, 'example.com', function(point){
    // example.com:80 state change handler
});
man.watch(80, 'example.com', function(point){
    // example.com:80 state change handler 2
});
man.start(3000);

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i node-watchman

Weekly Downloads

1

Version

0.1.0

License

MIT

Last publish

Collaborators

  • tvrcgo