No description
Find a file
Johan Tibell ce3af1ba7e Bump version number to 0.3.0.1
Also make HTML validate as HTML5
2012-01-26 11:58:27 -08:00
assets Bump version number to 0.3.0.1 2012-01-26 11:58:27 -08:00
examples Add example 2011-12-29 13:15:42 -08:00
System/Remote Mention that counters are non-negative 2011-12-31 18:39:14 -08:00
.gitignore Add .gitignore 2011-10-29 13:30:20 -07:00
ekg.cabal Bump version number to 0.3.0.1 2012-01-26 11:58:27 -08:00
HISTORY.md Bump version number to 0.3.0.1 2012-01-26 11:58:27 -08:00
LICENSE Initial import 2011-10-29 13:29:32 -07:00
README.md Fleshed out README 2011-12-27 16:48:26 -08:00
Setup.hs Initial import 2011-10-29 13:29:32 -07:00

EKG: Remote monitoring of running processes over HTTP

This library lets you remotely monitor a running process over HTTP. It provides a simple way to integrate a monitoring server into any application.

Getting started

Adding monitoring to your application is simple. Just launch the monitoring server as soon as your application starts

import System.Remote.Monitoring

main = do
     forkServer "localhost" 8000
     ...

and then visit http://localhost:8000/ in your web browser.

JSON API

The monitoring server also lets you to retrieve the stats as JSON. Simply send the server an HTTP GET request with the Accept header set to "application/json":

curl -H "Accept: application/json" http://localhost:8000/

You can use the JSON API to e.g. write applications that monitor other applications.

Get involved!

Please report bugs via the GitHub issue tracker.

Master git repository:

git clone https://github.com/tibbe/ekg.git

Authors

This library is written and maintained by Johan Tibell, johan.tibell@gmail.com.