https://github.com/mkgaru/node-munin-log
Munin DataLog API
https://github.com/mkgaru/node-munin-log
Last synced: 3 months ago
JSON representation
Munin DataLog API
- Host: GitHub
- URL: https://github.com/mkgaru/node-munin-log
- Owner: MKGaru
- License: mit
- Created: 2014-10-24T19:26:30.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-25T02:06:56.000Z (over 10 years ago)
- Last Synced: 2025-01-16T00:23:38.431Z (5 months ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
node-munin-log
==============Munin DataLog API
Example
---------var Munin = require('munin-log');
var munin = new Munin('munin-node.example.com');
munin.log('cpu').then(function(stats){
console.log(stats);
});
option = {
dir: '/var/lib/munin/com',
start: 'now-1day',
end: 'now',
type: 'MAX'
}
munin.log('cpu',option).then(function(stats){
console.log(stats);
});