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

agentx

Package Overview
Dependencies
Maintainers
3
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agentx - npm Package Compare versions

Comparing version 1.9.16 to 1.10.1

lib/orders/tracing_log.js

2

lib/orders/clean_log.js

@@ -51,3 +51,3 @@ 'use strict';

var patt = /^(node|access)-(\d{8})\.log$/;
var patt = /^(node|access|tracing)-(\d{8})\.log$/;

@@ -54,0 +54,0 @@ var cleanOldLogs = function (callback) {

@@ -9,3 +9,3 @@ 'use strict';

var MAX_LINES = 250; // 最多200行数据
var MAX_LINES = 250; // 最多 250 行数据
var buffered = [];

@@ -12,0 +12,0 @@ exports.logdir = ''; // 日志路径

@@ -488,3 +488,3 @@ 'use strict';

exports.init = function (callback) {
exports.init = function (config) {
lastTotal = 0;

@@ -495,3 +495,7 @@ lastIdle = 0;

cpuNumber = os.cpus().length;
isDocker = isInDocker();
if (config && config.hasOwnProperty('isDocker')) {
isDocker = !!config.isDocker;
} else {
isDocker = isInDocker();
}

@@ -498,0 +502,0 @@ exports.isDocker = isDocker;

{
"name": "agentx",
"version": "1.9.16",
"version": "1.10.1",
"description": "agentx is powered by alinode",

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

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