mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-22 20:58:14 -05:00
53 lines
884 B
Go
53 lines
884 B
Go
package model
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
pb "github.com/naiba/nezha/proto"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
const (
|
|
_ = iota
|
|
TaskTypeHTTPGET
|
|
TaskTypeICMPPing
|
|
TaskTypeTCPPing
|
|
TaskTypeCommand
|
|
)
|
|
|
|
const (
|
|
MonitorCoverAll = iota
|
|
MonitorCoverIgnoreAll
|
|
)
|
|
|
|
type Monitor struct {
|
|
Common
|
|
Name string
|
|
Type uint8
|
|
Target string
|
|
SkipServersRaw string
|
|
Notify bool
|
|
Cover uint8
|
|
SkipServers map[uint64]bool `gorm:"-" json:"-"`
|
|
}
|
|
|
|
func (m *Monitor) PB() *pb.Task {
|
|
return &pb.Task{
|
|
Id: m.ID,
|
|
Type: uint64(m.Type),
|
|
Data: m.Target,
|
|
}
|
|
}
|
|
|
|
func (m *Monitor) AfterFind(tx *gorm.DB) error {
|
|
var skipServers []uint64
|
|
if err := json.Unmarshal([]byte(m.SkipServersRaw), &skipServers); err != nil {
|
|
return err
|
|
}
|
|
m.SkipServers = make(map[uint64]bool)
|
|
for i := 0; i < len(skipServers); i++ {
|
|
m.SkipServers[skipServers[i]] = true
|
|
}
|
|
return nil
|
|
}
|