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" },