Skip to content

WernerBlake/RRDjs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RRDjs Build Status

Convert an RRD file into a JSON file within Node.js without the use of underlying dependencies.

Quick Overview:

$ npm run build origin.rrd destination.json
$ node index.js origin.rrd destination.json

Input:

Conversion requires a Round Robin Database file to serve as the origin.

If you've made it this far, you probably know what that means.

If not: click the logo to find out more!

Output:

The JSON file will be made up of two main parts:

  1. The Meta data for the entire RRD file
  2. All of the DS data

RRD Meta Data:

{
    "meta": {
        "interval": [ 
            {
                "start": 0,
                "end": 1600000000
            },
            { ... },
       ],
        "steps": [ ... ],
        "CF": [ ... ],
        "rows": [ ... ],
        "pdp_per_row": [ ... ],
        "xff": [ ... ],
        "legend": [ 
            "DS_NAME_0",
            "DS_NAME_1",
            ...,
            "DS_NAME_N-1",
            "DS_NAME_N"
        ]
    },

Each key within the Meta dictionary corresponds with an array of size equal to the RRA count.

DS Data:

    "DS_NAME_0": {
        "type": "GAUGE",
        "heartbeat": 30,
        "min": 0,
        "max": null,
        "data": {
            "10": [ 
                {
                  "x_value": 0,
                  "y_value": 0
                },
                {...},
                ],
            "30": [ ... ],
            "60": [ ... ],
            "600": [ ... ]
    },
    "DS_NAME_1": { ... },
    ...,
    "DS_NAME_N-1": { ... },
    "DS_NAME_N": { ... }
}

Tests:

Test features are currently being added.

Tips and tricks:

If you decide to format your JSON file after conversion, you may be left with several hundreds of thousands of rows to scroll through. Use these commands to help navigate all that data:

About

Convert an RRD file into a JSON file within Node.js without the use of underlying dependencies.

Topics

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages