
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
vnstat-dumpdb
Advanced tools
Get network traffic statistics from vnStat.
const vnstat = require( 'vnstat-dumpdb' )();
// Get traffic per day
vnstat.getStats( 'eth0', ( err, data ) => {
if ( err ) {
console.log( err );
return;
}
console.log( data.traffic.days );
} );
// Read config setting
vnstat.getConfig( ( err, config ) => {
if ( err ) {
console.log( err );
return;
}
console.log( `Interfaces updating every ${config.UpdateInterval} minutes` );
} );
const vnstat = require( 'vnstat-dumpdb' )();
// Get traffic per day with async/await
async function getTraffic () {
try {
const data = await vnstat.getStats( 'eth0' );
console.log( data.traffic.days );
const config = await vnstat.getConfig();
console.log( `Interfaces updating every ${config.UpdateInterval} minutes` );
}
catch ( err ) {
console.log( err );
}
}
getTraffic();
Make sure you have vnStat v1.13 or later.
npm install vnstat-dumpdb
The module loads as a function to override the defaults:
| setting | type | default | description |
|---|---|---|---|
| [bin] | string | vnstat | Path to vnstat binary |
| [iface] | string | false | i.e. eth0 or false to list all |
Each method supports both callback and Promise patterns:
Each method takes an optional callback function which gets two arguments:
err - Instance of Error or nulldata - Result object or not set when errorconst myCallback = ( err, data ) => {
if ( err ) {
console.log( err );
console.log( err.stack );
return;
}
console.log( data );
};
If no callback is provided, the method returns a Promise:
// Using async/await
try {
const data = await vnstat.getConfig();
console.log( data );
}
catch ( err ) {
console.log( err );
}
// Using .then() / .catch()
vnstat.getConfig()
.then( ( data ) => console.log( data ) )
.catch( ( err ) => console.log( err ) );
| message | description | additional |
|---|---|---|
| no config | Can't load config for getConfig | err.details, err.error |
| invalid data | Can't read stats for getStats | err.details |
| invalid interface | iface is invalid or not set up |
Get statistics for one, multiple or all interfaces.
vnstat.getStats( 'eth0', callback ) or await vnstat.getStats( 'eth0' )vnstat.getStats( false, callback ) or await vnstat.getStats()// Get traffic for interface en1 (callback)
vnstat.getStats( 'en1', console.log );
// Get traffic for interface en1 (promise)
const data = await vnstat.getStats( 'en1' );
// Output
{ id: 'en1',
nick: 'en1',
created: { date: { year: 2012, month: 11, day: 21 } },
updated:
{ date: { year: 2013, month: 10, day: 28 },
time: { hour: 3, minute: 25 } },
traffic:
{ total: { rx: 593576855, tx: 63746811 },
days:
[ { id: 0,
date: { year: 2013, month: 10, day: 28 },
rx: 4083261,
tx: 119674 },
{ id: 1,
date: { year: 2013, month: 10, day: 27 },
rx: 2206367,
tx: 52314 },
...
],
months:
[ { id: 0,
date: { year: 2013, month: 10 },
rx: 158176326,
tx: 7740561 },
{ id: 1,
date: { year: 2013, month: 9 },
rx: 119230002,
tx: 3394278 },
...
],
tops:
[ { id: 0,
date: { year: 2013, month: 10, day: 5 },
time: { hour: 0, minute: 10 },
rx: 22445455,
tx: 601967 },
{ id: 1,
date: { year: 2013, month: 9, day: 23 },
time: { hour: 0, minute: 0 },
rx: 20201102,
tx: 461492 },
...
],
hours: []
}
}
Get vnStat configuration.
// Callback style
vnstat.getConfig( ( err, config ) => {
if ( err ) {
console.log( err );
return;
}
console.log( `Interfaces updating every ${config.UpdateInterval} seconds` );
} );
// Promise style
const config = await vnstat.getConfig();
console.log( `Interfaces updating every ${config.UpdateInterval} seconds` );
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to https://unlicense.org
FAQs
Get vnStat network traffic and configuration
The npm package vnstat-dumpdb receives a total of 3 weekly downloads. As such, vnstat-dumpdb popularity was classified as not popular.
We found that vnstat-dumpdb demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.