coffeescript-rrd
coffeescript-rrd copied to clipboard
coffeescript library for using manipulating RRD files (depends on rrdtool)
With recent npm you can install and test in a standard way. npm test, npm install.
Hello plainlystated! I am migrationBot, an [open-source](https://github.com/blakmatrix/node-migrator-bot) bot, and I'm here to help you migrate your codebase to node v0.8! Did you know that the "sys" module throws an error...
These commits allow access to the rrdtool info command. The output is parsed into a new RRDInfo object to allow access to the ds_names and other related data. This is...
The test suite fails when I try to run it on my machine. When trying out the `test/*.rrd`-files with ex. `rrdtool dump test/valid.rrd`, I get: ERROR: This RRD was created...
The timetamps should be numbers instead of string (64 bit floats vs. string-representation). I'm aware that floats can't represent all integer values, but as a 64bit int can represent all...
Currently, the library only supports getting `AVERAGE`. It should be able to get `MIN`, `MAX` and `LAST` as well. I imagine the current `fetch(from, to, callback)` could be changed to...
The current output format seem overly verbose: ``` [ { fieldNames: [ 'test-ds', 'test-two' ], timestamp: '1317132300', 'test-ds': '-nan', 'test-two': '-nan' }, { fieldNames: [ 'test-ds', 'test-two' ], timestamp: '1317133200',...