smartmetrics/ts/smartmetrics.plugins.ts

27 lines
394 B
TypeScript
Raw Normal View History

2021-08-12 21:19:39 +00:00
// node native
import * as os from 'os';
export {
os
}
// pushrocks scope
import * as smartdelay from '@pushrocks/smartdelay';
import * as smartlog from '@pushrocks/smartlog';
export {
smartdelay,
smartlog
}
// third party scope
2021-08-14 15:01:54 +00:00
import pidusage from 'pidusage';
import pidtree from 'pidtree';
2021-08-12 21:19:39 +00:00
import * as promClient from 'prom-client';
export {
2021-08-14 15:01:54 +00:00
pidusage,
pidtree,
2021-08-12 21:19:39 +00:00
promClient
}