Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

appmetrics

Package Overview
Dependencies
Maintainers
4
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appmetrics - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

binaries/agentcore/tgz/agentcore-3.0.10-aix-ppc.tgz

7

extract_all_binaries.js

@@ -41,4 +41,4 @@ /*******************************************************************************

'win32-x64'];
var AGENTCORE_VERSION = "3.0.9";
var APPMETRICS_VERSION = "1.1.1";
var AGENTCORE_VERSION = "3.0.10";
var APPMETRICS_VERSION = "1.1.2";

@@ -113,2 +113,5 @@ var LOG_FILE = path.join(INSTALL_DIR, 'install.log');

}
if (process.version.indexOf('v7') === 0) {
return '7';
}
console.log('Unsupported version ' + process.version + '. Exiting.');

@@ -115,0 +118,0 @@ process.exit(1);

@@ -40,3 +40,3 @@ {

"_shasum": "30057438eac6cf7f8c4767f38648d6697d75c903",
"_from": "mkdirp@>=0.5.0 <0.6.0",
"_from": "mkdirp@>=0.5.0 >=0.0.0 <1.0.0",
"_npmVersion": "2.9.0",

@@ -43,0 +43,0 @@ "_nodeVersion": "2.0.0",

{
"name": "appmetrics",
"version": "1.1.1",
"version": "1.1.2",
"description": "Node Application Metrics",

@@ -5,0 +5,0 @@ "bin": {

@@ -45,3 +45,3 @@ /*******************************************************************************

ret = target;
if(Object.keys(target.prototype).length==0 && Object.keys(target).length == 0){
if(target && target.prototype && Object.keys(target.prototype).length==0 && Object.keys(target).length==0){
ret = function () {

@@ -240,2 +240,2 @@ var rc = target.apply(this, arguments);

module.exports = TraceProbe;
module.exports = TraceProbe;

@@ -197,9 +197,10 @@ # Node Application Metrics

Source | Configuration | Effect
:-----------|:-------------------------|:-----------------------------
`http` | `filters` | (Array) of URL filter Objects consisting of:
| | `pattern` (String) a regular expression pattern to match HTTP method and URL against, eg. 'GET /favicon.ico$'
| | `to` (String) a conversion for the URL to allow grouping. A value of `''` causes the URL to be ignored.
`requests` | `excludeModules` | (Array) of String names of modules to exclude from request tracking.
`trace` | `includeModules` | (Array) of String names for modules to include in function tracing. By default only non-module functions are traced when trace is enabled.
Source | Configuration | Effect
:--------------------|:-------------------------|:-----------------------------
`http` | `filters` | (Array) of URL filter Objects consisting of:
| | `pattern` (String) a regular expression pattern to match HTTP method and URL against, eg. 'GET /favicon.ico$'
| | `to` (String) a conversion for the URL to allow grouping. A value of `''` causes the URL to be ignored.
`requests` | `excludeModules` | (Array) of String names of modules to exclude from request tracking.
`trace` | `includeModules` | (Array) of String names for modules to include in function tracing. By default only non-module functions are traced when trace is enabled.
`advancedProfiling` | `threshold` | (Number) millisecond run time of an event loop cycle that will trigger profiling

@@ -215,3 +216,3 @@ ### appmetrics.emit(`type`, `data`)

### appmetrics.monitor.getEnvironment()
Requests an object containing all of the available environment information for the running application.
Requests an object containing all of the available environment information for the running application. This will not contain all possible environment information until an 'initialized' event has been received.

@@ -236,2 +237,5 @@ ### Event: 'cpu'

### Event: 'initialized'
Emitted when all possible environment variables have been collected. Use `appmetrics.monitor.getEnvironment()` to access the available environment variables.
### Event: 'gc'

@@ -464,5 +468,6 @@ Emitted when a garbage collection (GC) cycle occurs in the underlying V8 runtime.

## Version
1.1.1
1.1.2
## Release History
`1.1.2` - Update agent core to 3.0.10, support Node.js v7.
`1.1.1` - Fix node-gyp rebuild failure and don't force MQTT broker to on

@@ -469,0 +474,0 @@ `1.1.0` - Bug fixes, improved MongoDB data, updated dependencies, CPU watchdog feature

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc