2021-08-12 23:19:39 +02:00
|
|
|
// node native
|
2023-07-02 22:17:27 +02:00
|
|
|
import * as v8 from 'v8';
|
2021-08-12 23:19:39 +02:00
|
|
|
import * as os from 'os';
|
2023-07-02 22:17:27 +02:00
|
|
|
import * as fs from 'fs';
|
2025-06-09 10:31:25 +00:00
|
|
|
import * as http from 'http';
|
2021-08-12 23:19:39 +02:00
|
|
|
|
2025-06-09 10:31:25 +00:00
|
|
|
export { v8, os, fs, http };
|
2021-08-12 23:19:39 +02:00
|
|
|
|
|
|
|
// pushrocks scope
|
2023-08-08 17:54:27 +02:00
|
|
|
import * as smartdelay from '@push.rocks/smartdelay';
|
|
|
|
import * as smartlog from '@push.rocks/smartlog';
|
2021-08-12 23:19:39 +02:00
|
|
|
|
2022-07-27 12:00:38 +02:00
|
|
|
export { smartdelay, smartlog };
|
2021-08-12 23:19:39 +02:00
|
|
|
|
|
|
|
// third party scope
|
2021-08-14 17:01:54 +02:00
|
|
|
import pidusage from 'pidusage';
|
|
|
|
import pidtree from 'pidtree';
|
2021-08-12 23:19:39 +02:00
|
|
|
import * as promClient from 'prom-client';
|
|
|
|
|
2022-07-27 12:00:38 +02:00
|
|
|
export { pidusage, pidtree, promClient };
|