uint/uint64全部改为uint32
This commit is contained in:
@@ -209,19 +209,19 @@ type CollectionConfig struct {
|
||||
|
||||
type NotificationIntervalsConfig struct {
|
||||
// DebugIntervalMinutes Debug级别告警的通知间隔(分钟)
|
||||
DebugIntervalMinutes uint `yaml:"debug"`
|
||||
DebugIntervalMinutes uint32 `yaml:"debug"`
|
||||
// InfoIntervalMinutes Info级别告警的通知间隔(分钟)
|
||||
InfoIntervalMinutes uint `yaml:"info"`
|
||||
InfoIntervalMinutes uint32 `yaml:"info"`
|
||||
// WarnIntervalMinutes Warn级别告警的通知间隔(分钟)
|
||||
WarnIntervalMinutes uint `yaml:"warn"`
|
||||
WarnIntervalMinutes uint32 `yaml:"warn"`
|
||||
// ErrorIntervalMinutes Error级别告警的通知间隔(分钟)
|
||||
ErrorIntervalMinutes uint `yaml:"error"`
|
||||
ErrorIntervalMinutes uint32 `yaml:"error"`
|
||||
// DPanicIntervalMinutes DPanic级别告警的通知间隔(分钟)
|
||||
DPanicIntervalMinutes uint `yaml:"dpanic"`
|
||||
DPanicIntervalMinutes uint32 `yaml:"dpanic"`
|
||||
// PanicIntervalMinutes Panic级别告警的通知间隔(分钟)
|
||||
PanicIntervalMinutes uint `yaml:"panic"`
|
||||
PanicIntervalMinutes uint32 `yaml:"panic"`
|
||||
// FatalIntervalMinutes Fatal级别告警的通知间隔(分钟)
|
||||
FatalIntervalMinutes uint `yaml:"fatal"`
|
||||
FatalIntervalMinutes uint32 `yaml:"fatal"`
|
||||
}
|
||||
|
||||
// AlarmNotificationConfig 告警通知配置
|
||||
|
||||
Reference in New Issue
Block a user