Skip to content
forked from jeffsu/upbeat

Fast health and performance checking

Notifications You must be signed in to change notification settings

forrestc/upbeat

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Upbeat

Scalable and distributable health/performance checking.

Upbeat provides several useful features:

Complex healthcheck strategies

For accurate healthchecks, sometimes the likes of monit, nagios and/or haproxy is not enough. An example would be testing a mysql server to see if 1) the process is running 2) a query works 3) how fast the query was This is just and example of what upbeat is meant to do. It is not meant to replace the tools mentioned previously, but to actually play nicely with them.

Fast and scalable remote healthchecking

Upbeat leverages nodes quickness and allows service healthchecks to be temporarily cached allowing more throughout put in your healthchecks. This will enable every machine to know the status of every other machine in a cluster without doing an expotential number of "real" healthchecks. In the context of cloud computing, where high throughput load balancing is non-trivial this becomes very useful.

Web interface

See your statuses on one page or use them for scripting through json rest api.

Installation

Assuming you have node and npm installed, run:

npm-g install upbeat
upbeat ./my/upbeat-config.yml

Now an http server will be running that you can query for health statuses

Example Config File:

port: 2468
host: 127.0.0.1

services:
  rails-process:
    - strategy: mysql
      socket: /tmp/mysql.sock
    - strategy: process
      pidfile: /tmp/rails.pid
    - strategy: http
      url: http://localhost:3000/
    - strategy: http
      port: 3000
      host: 127.0.0.1
      interval: 3000
      timeout:  1000

  factual-api:
    - name: places
      strategy: http
      url: http://api.v3.factual.com/t/places
      get:
        KEY: <my key>
        q:   starbucks 

  google.com:
    - name: homepage
      url: http://www.google.com
      strategy: http

  redis:
    - strategy: redis
      port: 6537
      host: 127.0.0.1

  mysql:
    - strategy: mysql
      socket: /tmp/mysql.sock

Status Pages:

Configuration:

Upbeat uses YAML for configuration. There are several concepts to take note of when running configuring upbeat: server, services, actions and strategies

Global Server Configuration:

In the top level of the yaml configuration you have 3 main options:

  • host: the ip on which the upbeat http server binds to
  • port: the port on which the upbeat http server listens on
  • services: a key/value hash where the key is the name of the service and the value is an array of action definitions

Services:

The services section in the global configuration has to be a hash where the key is the name of the service and the value is an array of "actions" for the service to check.

Actions:

Actions are a hash that have one required field: strategy. Stragety is used to tell upbeat how to test a particular service. Every action has these fields available to it:

optional fields

  • rise: number of times action has to pass before action can be upgraded from "down" to "up"
  • fall: number of times action has to fail before action can be downgraded from "up" to "down"
  • interval (in millisecondes): time between passed or failed checks (default depends on the strategy)
  • timeout (in milliseconds): time allowed for the request to pass otherwise, its canceled and marked as failed (defaults depends on the strategy)
  • max-response-time: similar to timeout. If an action returns before timeout but is greater than max-response-time, it will still count as a failure
  • name: vanity name for the action used in reports

Strategies:

process

Checks to see if a process is running via pidfile:

  • pidfile: file with the pid written in it

Example:

services:
  my-process:
    - pidfile: /tmp/my.pid
      strategy: process

http

The http strategy will send a request to the server. Fields:

  • url: The url of the request to use
  • post or put: hash of key/value pairs to use as the data of the request
  • get: hash of key/value parise to use as the query string
  • timeout: defaults to 10000
  • interval: defaults to 10000
  • matches: regular expression to test against the returned http payload
  • lambda: a function that should return a boolean (if its matches is not enough)

Example:

services:
  http-actions:
    - url: http://www.google.com
      strategy: http
      matches: html
      lambda: "function (data) { return data.match(/html/); }"

    - name: test-google
      url: http://www.google.com
      strategy: http

    - name: test-search
      url: http://www.google.com
      strategy: http
      get:
        q: upbeat

    - name: test-google
      strategy: http
      url: http://www.google.com
      rise: 3
      fall: 1

upbeat

Yes, upbeat can monitor other upbeat servers. Fields:

  • port: port of upbeat server to monitor
  • host: host of upbeat server to monitor
  • timeout: defaults to 5000
  • interval: defaults to 5000

Example:

port: 2467
services:
  upbeat:
    - strategy: upbeat

tcp

Strategy to check if a connection to a port can be established. Fields:

  • port: port of service
  • host: host of service
  • timeout: defaults to 2000
  • interval: defaults to 3000

mysql

The mysql strategy will connect to a mysql server and perform a query. Fields:

  • sql: sql to send - defaults to "SHOW DATABASES LIMIT 1"
  • database: selects database to use - defaults to "MYSQL"

connecting - either use the socket field or:

  • host: defaults to '127.0.0.1'
  • port: defaults to 3306
  • user
  • password
  • timeout: defaults to 5000
  • interval: defaults to 10000

Example:

services:
  mysql:
    - strategy: mysql
      socket: /tmp/mysql.sock

redis

The redis strategy will connect to a redis server and issue an "ECHO hello" command. Fields:

  • host: host of redis server
  • port: port of redis server
  • timeout: defaults to 2000
  • interval: defaults to 10000

Example:

services:
  redis:
    - host: 127.0.0.1
      port: 6537
      strategy: redis

oauth

Upbeat supports basic OAuth get requests. Fields:

  • url
  • key: oauth key
  • secret: oauth secret

Example:

services:
  oauth:
    - strategy: oauth
      url: http://api.v3.factual.com/t/places
      key: "My Key"
      secret: "My Secret"

Custom Strategies

Its pretty simple to register a custom strategy. There are 3 things the object needs to have:

  1. an instantiator where the only paramater is a config hash (action)
  2. check(callback): the callback is function that expects a boolean
  3. clear(): a function that should halt any asynchronus activity

Example:

var AlwaysPass = function (config) { this.config };
AlwaysPass.prototype.check = function (callback) {
  callback(true);
};

AlwaysPass.prototype.clear = function () { 
  // no op
};

require('./upbeat').registerCallback('always-pass', AlwaysPass);

About

Fast health and performance checking

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%