comlog-system-monitor-ftp

1.1.0 • Public • Published

Watch a FTP Server

Installation via

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

Usage

var Service = require('comlog-system-monitor-ftp');
 
var csmf = new Service({
    host: 'ftp.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('FTP Server is donw');
});
 
// bind event
csmf.on('up', function() {
    console.info('FTP Server is up');
});
 
csmf.start()

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i comlog-system-monitor-ftp

    Weekly Downloads

    0

    Version

    1.1.0

    License

    COMLOG GmbH

    Unpacked Size

    3.16 kB

    Total Files

    3

    Last publish

    Collaborators

    • comlog.gmbh