mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:31:54 +08:00
16 lines
445 B
Go
16 lines
445 B
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package reporterconfigs
|
|
|
|
// GlobalSetting 全局设置
|
|
type GlobalSetting struct {
|
|
MinNotifyConnectivity float64 `json:"minNotifyConnectivity"` // 需要通知的最小连通值
|
|
NotifyWebHookURL string `json:"notifyWebHookURL"` // WebHook通知地址
|
|
}
|
|
|
|
func DefaultGlobalSetting() *GlobalSetting {
|
|
return &GlobalSetting{
|
|
MinNotifyConnectivity: 100,
|
|
}
|
|
}
|