1.1.2 • Published 2 years ago

comlog-system-monitor-sftp v1.1.2

Weekly downloads
14
License
COMLOG GmbH
Repository
github
Last release
2 years ago

Watch a SFTP Server

Installation via

$ npm install -s comlog-system-monitor-sftp

Usage

var Service = require('comlog-system-monitor-sftp');

var csmf = new Service({
	host: 'sftp.mydomain.org', // Required if not localhost
	user: 'myuser', // Required if not localhost
	password: 'mypassword', // Required if not localhost
	port: 21, // Optional
	interval: 60000 // Optional 1 Minute
});

csmf.on('error', function(err) {
    console.error(err);
});

// bind event
csmf.on('down', function() {
    console.info('SFTP Server is donw');
});

// bind event
csmf.on('up', function() {
    console.info('SFTP Server is up');
});

csmf.start()