代码拉取完成,页面将自动刷新
/*
* Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved.
* PilotGo-plugin-topology licensed under the Mulan Permissive Software License, Version 2.
* See LICENSE file for more details.
* Author: Wangjunqi123 <wangjunqi@kylinos.cn>
* Date: Mon Nov 4 14:30:13 2024 +0800
*/
package mysqlmanager
const (
FILTER_TYPE_HOST = "host"
FILTER_TYPE_PROCESS = "process"
FILTER_TYPE_RESOURCE = "resource"
FILTER_TYPE_TAG = "tag"
)
type Topo_configuration struct {
ID uint `gorm:"primary_key;AUTO_INCREMENT" json:"id"`
Name string `gorm:"not null;type:varchar(200)" json:"conf_name"`
Version string `gorm:"not null;type:varchar(20)" json:"conf_version"`
Description string `gorm:"type:text" json:"description"`
CreatedAt string `gorm:"not null" json:"create_time"`
UpdatedAt string `gorm:"not null" json:"update_time"`
Preserve uint `gorm:"not null" json:"preserve"`
BatchId uint `gorm:"not null" json:"batchId"`
NodeRules [][]Filter_rule `gorm:"type:text" json:"node_rules"`
TagRules []Tag_rule `gorm:"type:text" json:"tag_rules"`
NodeCoordinate []map[string]map[string]float32 `gorm:"type:text" json:"node_coordi"`
}
type Topo_configuration_DB struct {
ID uint `gorm:"primary_key;AUTO_INCREMENT" json:"id"`
Name string `gorm:"not null;type:varchar(200)" json:"conf_name"`
Version string `gorm:"not null;type:varchar(20)" json:"conf_version"`
Description string `gorm:"type:text" json:"description"`
CreatedAt string `gorm:"not null" json:"create_time"`
UpdatedAt string `gorm:"not null" json:"update_time"`
Preserve uint `gorm:"not null" json:"preserve"`
BatchId uint `gorm:"not null" json:"batchId"`
NodeRules string `gorm:"type:text" json:"node_rules"`
TagRules string `gorm:"type:text" json:"tag_rules"`
NodeCoordinate string `gorm:"type:text" json:"node_coordinate"`
}
type Filter_rule struct {
Rule_type string `json:"rule_type"`
Rule_condition map[string]interface{} `json:"rule_condition"`
}
type Tag_rule struct {
Tag_name string `json:"tag_name"`
Target string `json:"target"`
Rules [][]Filter_rule `json:"rules"`
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。