Git Product home page Git Product logo

custodian's Introduction

Custodian

Custodian is a lightweight resource monitor that makes it really easy to sample metrics and display them anywhere.

Usage

Server

Start Custodian and configure it to sample metrics every 60 seconds and expose them over HTTP on port 5100:

$ custodian start --port=5100 --interval=60

Samplers

Custodian aggregates statistics from samplers, and ships with samplers for popular metrics such as CPU, RAM and disk usage.

$ custodian samplers
15 compatible samplers:

cpu         CPU statistics
ram         RAM statistics
disk        Disk statistics
...
Writing your own sampler

Samplers are just simple Ruby classes:

class Who < Custodian::Samplers::Sampler
  describe "Logged in users"

  def sample
    `who`.lines.collect { |line| line.split.first }
  end

end

You can load your own samplers with the --samplers option:

$ custodian start --samplers=~/.custodian/samplers

Clients

Unless you're crazy about JSON, you'll probably want to consume Custodian's API with a client. Unfortunately, there are no clients for Custodian yet — you should make one!

custodian's People

Contributors

jgorset avatar

Stargazers

Espen Høgbakk avatar  avatar

Watchers

Espen Høgbakk avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.