ekg: Remote monitoring of processes

[ bsd3, library, network, system ] [ Propose Tags ]

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


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.2.0.0, 0.3.0.0, 0.3.0.1, 0.3.0.2, 0.3.0.3, 0.3.0.4, 0.3.0.5, 0.3.1.0, 0.3.1.1, 0.3.1.2, 0.3.1.3, 0.3.1.4, 0.4.0.0, 0.4.0.1, 0.4.0.2, 0.4.0.3, 0.4.0.4, 0.4.0.5, 0.4.0.6, 0.4.0.7, 0.4.0.8, 0.4.0.9, 0.4.0.10, 0.4.0.11, 0.4.0.12, 0.4.0.13, 0.4.0.14, 0.4.0.15
Dependencies aeson (<0.7), base (>=4.5 && <5), bytestring (<1.0), containers (<0.6), filepath (<1.4), snap-core (<0.10), snap-server (<0.10), text (<0.12), time (<1.5), transformers (<0.4), unordered-containers (<0.3) [details]
License BSD-3-Clause
Author Johan Tibell
Maintainer johan.tibell@gmail.com
Category System, Network
Home page https://github.com/tibbe/ekg
Source repo head: git clone https://github.com/tibbe/ekg.git
Uploaded by JohanTibell at 2012-09-18T21:16:33Z
Distributions Debian:0.4.0.15, FreeBSD:0.4.0.8
Reverse Dependencies 11 direct, 53 indirect [details]
Downloads 47615 total (104 in the last 30 days)
Rating 2.5 (votes: 4) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for ekg-0.3.1.2

[back to package description]

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.