Skip to main content

System monitoring agent framework

Project description

Roäc is an application framework for building system monitoring agents.

It works by executing system-executable plugins in a directory that output JSON data, and provides triggers to read, modify and add to this information.

A simple application using Roäc looks like:

#!/usr/bin/env python

from pprint import pprint
from roac import Roac

app = Roac(script_dir='scripts')

@app.script_handler_by_any
def print_result(result):
    print '----------------'
    print 'Script: {}'.format(result.name)
    pprint(result.data)
    print '----------------'

if __name__ == '__main__':
    app.run()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

roac-0.0.1.tar.gz (8.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page