Added nodata notification
This commit is contained in:
parent
4ba1d61db0
commit
3af2cd4d17
78
nodata.go
78
nodata.go
@ -4,38 +4,95 @@ import (
|
|||||||
// External
|
// External
|
||||||
werr "git.gibonuddevalla.se/go/wrappederror"
|
werr "git.gibonuddevalla.se/go/wrappederror"
|
||||||
|
|
||||||
|
// Internal
|
||||||
|
"smon/notification"
|
||||||
|
|
||||||
// Standard
|
// Standard
|
||||||
"database/sql"
|
"database/sql"
|
||||||
|
"encoding/json"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
nodataAreaID int
|
||||||
|
nodataSectionID int
|
||||||
|
)
|
||||||
|
|
||||||
// nodataLoop checks if datapoint last_value is larger than the nodata_problem_seconds period and
|
// nodataLoop checks if datapoint last_value is larger than the nodata_problem_seconds period and
|
||||||
// marks them as problems. They are then notified.
|
// marks them as problems. They are then notified.
|
||||||
func nodataLoop() {
|
func nodataLoop() {
|
||||||
var ids []int
|
var datapoints []Datapoint
|
||||||
var err error
|
var err error
|
||||||
|
|
||||||
// TODO - should be configurable
|
// TODO - should be configurable
|
||||||
ticker := time.NewTicker(time.Second * 5)
|
ticker := time.NewTicker(time.Second * 5)
|
||||||
for {
|
for {
|
||||||
<-ticker.C
|
<-ticker.C
|
||||||
ids, err = nodataDatapointIDs()
|
datapoints, err = nodataDatapoints()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
err = werr.Wrap(err).Log()
|
err = werr.Wrap(err).Log()
|
||||||
logger.Error("nodata", "error", err)
|
logger.Error("nodata", "error", err)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(ids) == 0 {
|
if len(datapoints) == 0 {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.Info("nodata", "problem_ids", ids)
|
for _, datapoint := range datapoints {
|
||||||
|
nodataNotify(datapoint, "[NODATA] problem")
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.Info("nodata", "problem_ids", datapoints)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func nodataDatapointIDs() (ids []int, err error) {
|
func nodataNotify(datapoint Datapoint, state string) (err error) {
|
||||||
ids = []int{}
|
err = notificationManager.Send(-1, []byte(state+": "+datapoint.Name), func(notificationService *notification.Service, err error) {
|
||||||
|
logger.Info(
|
||||||
|
"notification",
|
||||||
|
"service", (*notificationService).GetType(),
|
||||||
|
"datapointID", datapoint.ID,
|
||||||
|
"prio", (*notificationService).GetPrio(),
|
||||||
|
"ok", true,
|
||||||
|
)
|
||||||
|
|
||||||
|
var errBody any
|
||||||
|
if err != nil {
|
||||||
|
errBody, _ = json.Marshal(err)
|
||||||
|
} else {
|
||||||
|
errBody = nil
|
||||||
|
}
|
||||||
|
_, err = service.Db.Conn.Exec(
|
||||||
|
`
|
||||||
|
INSERT INTO notification_send(notification_id, datapoint_nodata_id, uuid, ok, error)
|
||||||
|
SELECT
|
||||||
|
id, $3, '', $4, $5
|
||||||
|
FROM notification
|
||||||
|
WHERE
|
||||||
|
service=$1 AND
|
||||||
|
prio=$2
|
||||||
|
`,
|
||||||
|
(*notificationService).GetType(),
|
||||||
|
(*notificationService).GetPrio(),
|
||||||
|
datapoint.ID,
|
||||||
|
err == nil,
|
||||||
|
errBody,
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
err = werr.Wrap(err).Log()
|
||||||
|
logger.Error("entry", "error", err)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
err = werr.Wrap(err).Log()
|
||||||
|
logger.Error("notification", "error", err)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func nodataDatapoints() (datapoints []Datapoint, err error) {
|
||||||
|
datapoints = []Datapoint{}
|
||||||
|
|
||||||
var rows *sql.Rows
|
var rows *sql.Rows
|
||||||
rows, err = service.Db.Conn.Query(`
|
rows, err = service.Db.Conn.Query(`
|
||||||
@ -54,7 +111,8 @@ func nodataDatapointIDs() (ids []int, err error) {
|
|||||||
WHERE
|
WHERE
|
||||||
datapoint.id = subquery.id
|
datapoint.id = subquery.id
|
||||||
RETURNING
|
RETURNING
|
||||||
datapoint.id
|
datapoint.id,
|
||||||
|
datapoint.name
|
||||||
|
|
||||||
`)
|
`)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -63,13 +121,13 @@ func nodataDatapointIDs() (ids []int, err error) {
|
|||||||
}
|
}
|
||||||
defer rows.Close()
|
defer rows.Close()
|
||||||
|
|
||||||
var id int
|
var dp Datapoint
|
||||||
for rows.Next() {
|
for rows.Next() {
|
||||||
if err = rows.Scan(&id); err != nil {
|
if err = rows.Scan(&dp.ID, &dp.Name); err != nil {
|
||||||
err = werr.Wrap(err)
|
err = werr.Wrap(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
ids = append(ids, id)
|
datapoints = append(datapoints, dp)
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
3
sql/00015.sql
Normal file
3
sql/00015.sql
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
ALTER TABLE public.notification_send ALTER COLUMN problem_id DROP NOT NULL;
|
||||||
|
ALTER TABLE public.notification_send ADD datapoint_nodata_id int4 NULL;
|
||||||
|
ALTER TABLE public.notification_send ADD CONSTRAINT notification_send_datapoint_fk FOREIGN KEY (datapoint_nodata_id) REFERENCES public.datapoint(id) ON DELETE CASCADE ON UPDATE CASCADE;
|
Loading…
Reference in New Issue
Block a user