mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-05 06:10:26 +08:00
27 lines
425 B
Go
27 lines
425 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
//go:build !plus
|
|
|
|
package nodelogutils
|
|
|
|
import (
|
|
"github.com/iwind/TeaGo/maps"
|
|
)
|
|
|
|
// FindCommonTags 查找常用的标签
|
|
func FindNodeCommonTags() []maps.Map {
|
|
return []maps.Map{
|
|
{
|
|
"name": "端口监听",
|
|
"code": "LISTENER",
|
|
},
|
|
{
|
|
"name": "WAF",
|
|
"code": "WAF",
|
|
},
|
|
{
|
|
"name": "访问日志",
|
|
"code": "ACCESS_LOG",
|
|
},
|
|
}
|
|
}
|