2021-08-12 21:19:39 +00:00
|
|
|
// node native
|
|
|
|
import * as os from 'os';
|
|
|
|
|
2022-07-27 10:00:38 +00:00
|
|
|
export { os };
|
2021-08-12 21:19:39 +00:00
|
|
|
|
|
|
|
// pushrocks scope
|
|
|
|
import * as smartdelay from '@pushrocks/smartdelay';
|
|
|
|
import * as smartlog from '@pushrocks/smartlog';
|
|
|
|
|
2022-07-27 10:00:38 +00:00
|
|
|
export { smartdelay, smartlog };
|
2021-08-12 21:19:39 +00:00
|
|
|
|
|
|
|
// 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';
|
|
|
|
|
2022-07-27 10:00:38 +00:00
|
|
|
export { pidusage, pidtree, promClient };
|