@monocle.sh/adonisjs-agent 1.3.0 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -113,7 +113,7 @@ export default defineConfig({
113
113
  // CLI command tracing
114
114
  cli: {
115
115
  enabled: false,
116
- exclude: ['make:*', 'generate:*', 'queue:work', 'queue:listen'],
116
+ exclude: ['make:*', 'generate:*', 'queue:work', 'queue:listen', 'jobs:listen', 'scheduler:run'],
117
117
  },
118
118
 
119
119
  // Trace/log batching configuration for Monocle destination
@@ -11,7 +11,9 @@ const DEFAULT_EXCLUDE = [
11
11
  "make:*",
12
12
  "generate:*",
13
13
  "queue:work",
14
- "queue:listen"
14
+ "queue:listen",
15
+ "jobs:listen",
16
+ "scheduler:run"
15
17
  ];
16
18
  /**
17
19
  * Simple glob pattern matcher supporting only '*' wildcard
@@ -8,7 +8,7 @@ const DEFAULT_BATCH_CONFIG = {
8
8
  maxQueueSize: 2048
9
9
  };
10
10
  function resolveSdkVersion() {
11
- return "1.3.0";
11
+ return "1.3.1";
12
12
  }
13
13
  function buildNodejsResourceAttributes() {
14
14
  const attributes = {
@@ -43,7 +43,7 @@ interface CliTracingConfig {
43
43
  include?: string[];
44
44
  /**
45
45
  * Commands to exclude from tracing. Supports glob patterns.
46
- * @default ['make:*', 'generate:*', 'queue:work', 'queue:listen']
46
+ * @default ['make:*', 'generate:*', 'queue:work', 'queue:listen', 'jobs:listen', 'scheduler:run']
47
47
  * @example ['make:*', 'generate:*']
48
48
  */
49
49
  exclude?: string[];
@@ -193,7 +193,7 @@ interface MonocleConfig extends Omit<OtelConfig, 'traceExporter' | 'metricExport
193
193
  /**
194
194
  * CLI command tracing configuration.
195
195
  * Set to `false` to disable, or pass config object.
196
- * @default { enabled: true, exclude: ['make:*', 'generate:*', 'queue:work', 'queue:listen'] }
196
+ * @default { enabled: true, exclude: ['make:*', 'generate:*', 'queue:work', 'queue:listen', 'jobs:listen', 'scheduler:run'] }
197
197
  */
198
198
  cli?: false | CliTracingConfig;
199
199
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monocle.sh/adonisjs-agent",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Monocle agent for AdonisJS - sends telemetry to Monocle cloud",
5
5
  "keywords": [
6
6
  "adonisjs",
@@ -57,7 +57,7 @@
57
57
  "@monocle.sh/instrumentation-bullmq": "^0.3.1",
58
58
  "@monocle.sh/instrumentation-mcp": "^1.0.1",
59
59
  "@monocle.sh/instrumentation-vercel-ai": "^1.1.2",
60
- "@monocle.sh/otel-utils": "^1.1.0"
60
+ "@monocle.sh/otel-utils": "^1.1.1"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@adonisjs/core": "^7.3.0",