mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-10 09:20:24 +08:00
22 lines
697 B
Go
22 lines
697 B
Go
|
|
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||
|
|
|
||
|
|
package nodeconfigs
|
||
|
|
|
||
|
|
type NodeValueItem = string
|
||
|
|
|
||
|
|
const (
|
||
|
|
NodeValueItemCPU NodeValueItem = "cpu" // CPU
|
||
|
|
NodeValueItemMemory NodeValueItem = "memory" // 内存
|
||
|
|
NodeValueItemLoad NodeValueItem = "load" // 负载
|
||
|
|
NodeValueItemTrafficIn NodeValueItem = "trafficIn" // 上行流量
|
||
|
|
NodeValueItemTrafficOut NodeValueItem = "trafficOut" // 下行流量
|
||
|
|
NodeValueItemConnections NodeValueItem = "connections" // 连接数
|
||
|
|
NodeValueItemDisk NodeValueItem = "disk" // 磁盘
|
||
|
|
)
|
||
|
|
|
||
|
|
type NodeValueRange = string
|
||
|
|
|
||
|
|
const (
|
||
|
|
NodeValueRangeMinute NodeValueRange = "minute"
|
||
|
|
)
|