UNPKG

opentsdb

Version:
62 lines (51 loc) 666 B
/** * * OPENTSDB: lib * * * DESCRIPTION: * - OpenTSDB library. * * * NOTES: * [1] * * * TODO: * [1] * * * LICENSE: * MIT * * Copyright (c) 2014. Athan Reines. * * * AUTHOR: * Athan Reines. kgryte@gmail.com. * */ (function() { 'use strict'; // OpenTSDB // var opentsdb = {}; /** * Client. */ opentsdb.client = require( 'opentsdb-client' ); /** * Socket. */ opentsdb.socket = require( 'opentsdb-socket' ); /** * Datum. */ opentsdb.datum = require( 'opentsdb-datum' ); /** * Queries. */ opentsdb.mquery = require( 'opentsdb-mquery' ); opentsdb.tquery = require( 'opentsdb-tquery' ); // EXPORTS // module.exports = opentsdb; })();