Skip to content

Commit b8b228f

Browse files
author
tangjiawei
committed
#830 custom template bug
1 parent df202da commit b8b228f

File tree

3 files changed

+28
-5
lines changed

3 files changed

+28
-5
lines changed

monitor-server/api/v2/service/log_metric.go

+24-1
Original file line numberDiff line numberDiff line change
@@ -852,6 +852,15 @@ func CreateLogMetricCustomGroup(c *gin.Context) {
852852
}
853853
}
854854
}
855+
if existLogMonitorTemplate, getErr := db.GetLogMonitorTemplateByName(param.Guid, param.Name); getErr != nil {
856+
err = getErr
857+
middleware.ReturnServerHandleError(c, err)
858+
return
859+
} else if existLogMonitorTemplate != nil {
860+
err = fmt.Errorf("log monitor template name:%s duplicate", param.Name)
861+
middleware.ReturnServerHandleError(c, err)
862+
return
863+
}
855864
if err := db.ValidateLogMetricGroupName(param.Guid, param.Name, param.LogMetricMonitor); err != nil {
856865
err = fmt.Errorf(middleware.GetMessageMap(c).LogGroupNameDuplicateError, param.Name)
857866
middleware.ReturnHandleError(c, err.Error(), err)
@@ -880,7 +889,8 @@ func CreateLogMetricCustomGroup(c *gin.Context) {
880889

881890
func UpdateLogMetricCustomGroup(c *gin.Context) {
882891
var param models.LogMetricGroupObj
883-
if err := c.ShouldBindJSON(&param); err != nil {
892+
var err error
893+
if err = c.ShouldBindJSON(&param); err != nil {
884894
middleware.ReturnValidateError(c, err.Error())
885895
return
886896
}
@@ -889,8 +899,21 @@ func UpdateLogMetricCustomGroup(c *gin.Context) {
889899
middleware.ReturnHandleError(c, err.Error(), err)
890900
return
891901
}
902+
if existLogMonitorTemplate, getErr := db.GetLogMonitorTemplateByName(param.Guid, param.Name); getErr != nil {
903+
err = getErr
904+
middleware.ReturnServerHandleError(c, err)
905+
return
906+
} else if existLogMonitorTemplate != nil {
907+
err = fmt.Errorf("log monitor template name:%s duplicate", param.Name)
908+
middleware.ReturnServerHandleError(c, err)
909+
return
910+
}
892911
if len(param.MetricList) > 0 {
893912
for _, metric := range param.MetricList {
913+
// 拼接指标
914+
if param.MetricPrefixCode != "" {
915+
metric.Metric = param.MetricPrefixCode + metric.Metric
916+
}
894917
if middleware.IsIllegalLogParamNameOrMetric(metric.LogParamName) || middleware.IsIllegalLogParamNameOrMetric(metric.Metric) {
895918
middleware.ReturnValidateError(c, "log_param_name or metric param invalid")
896919
return

monitor-server/models/log_metric.go

+1
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,7 @@ type LogMetricGroupObj struct {
219219
AutoCreateWarn bool `json:"auto_create_warn"` //自动创建告警
220220
AutoCreateDashboard bool `json:"auto_create_dashboard"` //自动创建自定义看板
221221
LogMonitorTemplateDto *LogMonitorTemplateDto `json:"log_monitor_template_data"`
222+
MetricPrefixCode string `json:"metric_prefix_code"`
222223
}
223224

224225
type LogMetricGroupWithTemplate struct {

monitor-server/services/db/log_metric.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -1647,10 +1647,9 @@ func GetLogMetricCustomGroup(logMetricGroupGuid string) (result *models.LogMetri
16471647
}
16481648
for _, row := range logMetricConfigRows {
16491649
json.Unmarshal([]byte(row.TagConfig), &row.TagConfigList)
1650-
if strings.TrimSpace(metricGroupObj.MetricPrefixCode) == "" {
1651-
row.FullMetric = row.Metric
1652-
} else {
1653-
row.FullMetric = fmt.Sprintf("%s_%s", metricGroupObj.MetricPrefixCode, row.Metric)
1650+
row.FullMetric = row.Metric
1651+
if strings.TrimSpace(metricGroupObj.MetricPrefixCode) != "" && len(row.Metric) > len(metricGroupObj.MetricPrefixCode) {
1652+
row.Metric = row.Metric[len(metricGroupObj.MetricPrefixCode)+1:]
16541653
}
16551654
result.MetricList = append(result.MetricList, convertLogMetricConfigTable2Dto(row))
16561655
}

0 commit comments

Comments
 (0)