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
Release history Release notifications | RSS feed
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 details)
File details
Details for the file roac-0.0.1.tar.gz
.
File metadata
- Download URL: roac-0.0.1.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 041b9aec46fc94f656f09f4f9e9500707498cbd0c7f20d0a248b1b1efcca96ae |
|
MD5 | 888e821176be3cff53d107011364c254 |
|
BLAKE2b-256 | 9a1141daf3b4bf62511e1351a45fef74d4871eb45a60e1f0b5e85ad269370010 |