2021-08-12 21:19:39 +00:00
|
|
|
// node native
|
2023-07-02 20:17:27 +00:00
|
|
|
import * as v8 from 'v8';
|
2021-08-12 21:19:39 +00:00
|
|
|
import * as os from 'os';
|
2023-07-02 20:17:27 +00:00
|
|
|
import * as fs from 'fs';
|
2021-08-12 21:19:39 +00:00
|
|
|
|
2023-07-02 20:17:27 +00:00
|
|
|
export { v8, os, fs };
|
2021-08-12 21:19:39 +00:00
|
|
|
|
|
|
|
// pushrocks scope
|
2023-08-08 15:54:27 +00:00
|
|
|
import * as smartdelay from '@push.rocks/smartdelay';
|
|
|
|
import * as smartlog from '@push.rocks/smartlog';
|
2021-08-12 21:19:39 +00:00
|
|
|
|
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 };
|