From e92e7aca9bd8823697398ba82f212a347813b95a Mon Sep 17 00:00:00 2001 From: Tao Yu Date: Mon, 24 Apr 2023 17:10:25 +0800 Subject: [PATCH] feat: add compress type in config --- log_config.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/log_config.go b/log_config.go index 02626a1a..5b226258 100644 --- a/log_config.go +++ b/log_config.go @@ -475,6 +475,7 @@ func UpdateInputConfigField(detail InputDetailInterface, key string, val interfa type OutputDetail struct { ProjectName string `json:"projectName"` LogStoreName string `json:"logstoreName"` + CompressType string `json:"compressType"` } // InputDetailInterface all input detail's interface @@ -490,6 +491,6 @@ type LogConfig struct { OutputType string `json:"outputType"` OutputDetail OutputDetail `json:"outputDetail"` - CreateTime uint32 `json:"createTime,omitempty"` + CreateTime uint32 `json:"createTime,omitempty` LastModifyTime uint32 `json:"lastModifyTime,omitempty"` }