appmetrics icon indicating copy to clipboard operation
appmetrics copied to clipboard

Node Application Metrics provides a foundational infrastructure for collecting resource and performance monitoring data for Node.js-based applications.

Results 74 appmetrics issues
Sort by recently updated
recently updated
newest added
trafficstars

The mongo probe doesn't report anything when using the promise interface: **supported** ```js db.comments.find({ blogId: 'x' }).toArray(console.log); ``` **unsupported** ```js db.comments.find({ blogId: 'x' }).toArray().then(console.log); ``` _Thereby also unsupported_ ```js const...

A quick workaround for issue https://github.com/RuntimeTools/appmetrics/issues/649 I'm afraid this isn't a proper fix, and only avoids installing the socket.io probe for newer versions where that doesn't currently work. The socket.io...

Currently, the probing feature for most probes. cannot be disabled. I believe this is due to a typo and addressed the issue in my PR. The documentation also referred to...

I've noticed that building appmetrics with the latest version of `gcc` fails. I've tried this on multiple node versions (10, 12 & 13). The last good working version of `gcc`...

Our customer reported a vulnerability in bluemix-autoscaling-agent caused by "request" package. The vulnerability reports that ``` "The request package is vulnerable to Weak Authentication Algorithm. The function function in oauth.js...

`appmetrics` segfaults node almost every 2nd time within seconds from start: ``` 0 segfault-handler.node 0x0000000102d2d010 _ZL16segfault_handleriP9__siginfoPv + 304 1 libsystem_platform.dylib 0x00007fff70d8b5fd _sigtramp + 29 2 ??? 0x0000050200000000 0x0 + 5506148073472...

I can monitor invalid http requests( HTTP 401, 403 ou 429) with the 'http-outbound' / 'https-outbound' event?

Very useful information comes in the second parameter, such as sort, limit and projection

Travis results show Windows tests are failing on all node versions apart from 10. This issue is for investigation into and solution for the problem.

node v12.10.0, appmetrics v5.1.1 Test case: ```javascript 'use strict' const { promisify } = require('util') const delay = promisify(setTimeout) async function main () { console.log('Hello...') await delay(1000) console.log('...world!') } main().then(()...