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

When running aggregate queries against mongo, the probe reports sub-millisecond response times. My guess is that the `aggregate` query is being measured, excluding the `toArray` op. Similar find queries report...

It would be nice to have a probe that is able to log the response time and perhaps also the response size of apollo/graphql (field) resolvers. That way it becomes...

[keystoneForjoyce.zip](https://github.com/RuntimeTools/appmetrics/files/3849629/keystoneForjoyce.zip) Firstly, we do `npm install` to install dependencies, then we just add ``` var appmetrics = require('appmetrics'); ``` to application, and run the application, it runs good: ``` [root@joycevm1...

Failing to build appmetrics on linux x86 ### Steps to reproduce: ``` docker pull node:10 ``` ``` docker run -it node:10 bash $ node -v v10.5.3 ``` ``` $ npm...

#### What is wrong Requiring appmetrics any point after calling `require('honeycomb-beeline')()` causes this nasty stack: ``` $ node test.js FATAL ERROR: v8::ToLocalChecked Empty MaybeLocal. 1: node::Abort() [/usr/local/bin/node] 2: node::FatalException(v8::Isolate*, v8::Local,...

We disabled code coverage to get around test failures (see https://github.com/RuntimeTools/appmetrics/pull/578). We should debug why code coverage is broken for us, and re-enable when ready

here is our code to using appmetrics: ``` var appmetrics = require('appmetrics'); var monitor = appmetrics.monitor(); monitor.on('http', function(data){console.info(data.time, data.duration, data.url, data.statusCode)}); ``` I triggered request manually, and each trigger will...

As this module seems to wrap the native Promise in NodeJs? the 'promise instanceof Promise' check will always return false. I used a 'promise.then' check as a replacement, but typescript...

'http-outbound'/'https-outbound' events return undefined response statusCode if client uses `request`, `request-promise` or any other http libraries that do not use callback when making http.request. You mention this in the code...

http-outbound for SOAP Webservice outbound call is not emitting "statusCode". Please could you check on this