mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 04:10:25 +08:00
16 lines
444 B
Go
16 lines
444 B
Go
// Copyright 2021 GoEdge CDN goedge.cdn@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,
|
|
}
|
|
}
|