From 542b07d99c2c7c93bc3fcd89adaa7682e24c885b Mon Sep 17 00:00:00 2001 From: ls147258 Date: Fri, 16 Jan 2026 21:38:00 +0800 Subject: [PATCH] add enableLlmMetrics in logConfig Change-Id: Ice2bb15375d14af747a5c3daf906ec38dd568374 Co-developed-by: Qoder --- publish.yaml | 2 +- src/interface/function.ts | 1 + src/schema.json | 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/publish.yaml b/publish.yaml index 79897f14..70c7e2b7 100644 --- a/publish.yaml +++ b/publish.yaml @@ -3,7 +3,7 @@ Type: Component Name: fc3 Provider: - 阿里云 -Version: 0.1.12 +Version: 0.1.13 Description: 阿里云函数计算全生命周期管理 HomePage: https://github.com/devsapp/fc3 Organization: 阿里云函数计算(FC) diff --git a/src/interface/function.ts b/src/interface/function.ts index 73ba70ec..37aa46b1 100644 --- a/src/interface/function.ts +++ b/src/interface/function.ts @@ -71,6 +71,7 @@ export interface ILogConfig { logstore: string; enableInstanceMetrics?: boolean; enableRequestMetrics?: boolean; + enableLlmMetrics?: boolean; logBeginRule?: 'DefaultRegex' | 'None'; } diff --git a/src/schema.json b/src/schema.json index ea0afa9f..e571bf07 100644 --- a/src/schema.json +++ b/src/schema.json @@ -530,6 +530,9 @@ "enableInstanceMetrics": { "type": "boolean" }, + "enableLlmMetrics": { + "type": "boolean" + }, "enableRequestMetrics": { "type": "boolean" },