traffic-light
v1.2.1
Published
A status traffic light for monitoring your site
Downloads
7
Readme
traffic-light
Monitor the status of your applications with traffic-lights!
$ traffic-light --port 4000
The traffic-light will be
- when the Server responds with code 200 in time
- , when a timeout is triggered
- , when there is an error or the response code isn't 200
url
http://traffic-light/"http://address.to/check"
http://traffic-light/"http://address.to/check"?timeout=3000
server
$ traffic-light --help
Start traffic-light server.
Usage: traffic-light [options]
Options:
--port, -p Port to listen on [default: 4000]
--help Print usage instructions
library
traffic-light
exports an express request handler.
var lights = require('traffic-light')
var express = require('express')
var app = express()
app.use('lights', lights)
app.listen(3000)
installation
As application:
$ npm install -g traffic-light
As library:
$ npm install traffic-light
license
Copyright (c) 2012 Julian Gruber <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.