fixes
- improved log levels - less error prone float string parsing - TODOs for more & better measurement_faulty checks - go fmt
This commit is contained in:
parent
17c80cecab
commit
8e1cf7ed38
11 changed files with 39 additions and 28 deletions
|
@ -86,7 +86,7 @@ func (results BoxCheckResults) Log() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func CheckBoxes(boxLocalConfs map[string]*NotifyConfig, osem *OsemClient) (BoxCheckResults, error) {
|
func CheckBoxes(boxLocalConfs map[string]*NotifyConfig, osem *OsemClient) (BoxCheckResults, error) {
|
||||||
log.Debug("Checking notifications for ", len(boxLocalConfs), " box(es)")
|
log.Info("Checking notifications for ", len(boxLocalConfs), " box(es)")
|
||||||
|
|
||||||
results := BoxCheckResults{}
|
results := BoxCheckResults{}
|
||||||
errs := []string{}
|
errs := []string{}
|
||||||
|
@ -94,7 +94,7 @@ func CheckBoxes(boxLocalConfs map[string]*NotifyConfig, osem *OsemClient) (BoxCh
|
||||||
// @TODO: check boxes in parallel, capped at 5 at once. and/or rate limit?
|
// @TODO: check boxes in parallel, capped at 5 at once. and/or rate limit?
|
||||||
for boxId, localConf := range boxLocalConfs {
|
for boxId, localConf := range boxLocalConfs {
|
||||||
boxLogger := log.WithField("boxId", boxId)
|
boxLogger := log.WithField("boxId", boxId)
|
||||||
boxLogger.Info("checking box for events")
|
boxLogger.Debug("checking box for events")
|
||||||
|
|
||||||
box, res, err := checkBox(boxId, localConf, osem)
|
box, res, err := checkBox(boxId, localConf, osem)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -2,7 +2,8 @@ package core
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
|
||||||
|
"github.com/noerw/osem_notify/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
var checkMeasurementFaulty = checkType{
|
var checkMeasurementFaulty = checkType{
|
||||||
|
@ -20,7 +21,7 @@ var checkMeasurementFaulty = checkType{
|
||||||
Status: CheckOk,
|
Status: CheckOk,
|
||||||
}
|
}
|
||||||
|
|
||||||
val, err := strconv.ParseFloat(s.LastMeasurement.Value, 64)
|
val, err := utils.ParseFloat(s.LastMeasurement.Value)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return result, err
|
return result, err
|
||||||
}
|
}
|
||||||
|
@ -42,8 +43,10 @@ type faultyValue struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
var faultyVals = map[faultyValue]bool{
|
var faultyVals = map[faultyValue]bool{
|
||||||
|
// @TODO: add UV & light sensor: check for 0 if not sunset based on boxlocation
|
||||||
|
// @TODO: add BME280 and other sensors..
|
||||||
faultyValue{sensor: "BMP280", val: 0.0}: true,
|
faultyValue{sensor: "BMP280", val: 0.0}: true,
|
||||||
faultyValue{sensor: "HDC1008", val: 0.0}: true,
|
faultyValue{sensor: "HDC1008", val: 0.0}: true, // @FIXME: check should be on luftfeuchte only!
|
||||||
faultyValue{sensor: "HDC1008", val: -40}: true,
|
faultyValue{sensor: "HDC1008", val: -40}: true,
|
||||||
faultyValue{sensor: "SDS 011", val: 0.0}: true,
|
faultyValue{sensor: "SDS 011", val: 0.0}: true, // @FIXME: 0.0 seems to be a correct value, need to check over longer periods
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,8 @@ package core
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
|
||||||
|
"github.com/noerw/osem_notify/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -36,12 +37,12 @@ func validateMeasurementMinMax(e NotifyEvent, s Sensor, b Box) (CheckResult, err
|
||||||
Status: CheckOk,
|
Status: CheckOk,
|
||||||
}
|
}
|
||||||
|
|
||||||
thresh, err := strconv.ParseFloat(e.Threshold, 64)
|
thresh, err := utils.ParseFloat(e.Threshold)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return result, err
|
return result, err
|
||||||
}
|
}
|
||||||
|
|
||||||
val, err := strconv.ParseFloat(s.LastMeasurement.Value, 64)
|
val, err := utils.ParseFloat(s.LastMeasurement.Value)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return result, err
|
return result, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -84,7 +84,7 @@ func (box Box) RunChecks() ([]CheckResult, error) {
|
||||||
|
|
||||||
result, err := checker.checkFunc(event, s, box)
|
result, err := checker.checkFunc(event, s, box)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
boxLogger.Errorf("error checking event %s", event.Type)
|
boxLogger.Errorf("error checking event %s: %v", event.Type, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
results = append(results, result)
|
results = append(results, result)
|
||||||
|
|
|
@ -65,11 +65,12 @@ func (n EmailNotifier) Submit(notification Notification) error {
|
||||||
|
|
||||||
from := viper.GetString("email.from")
|
from := viper.GetString("email.from")
|
||||||
body := fmt.Sprintf(
|
body := fmt.Sprintf(
|
||||||
"From: openSenseMap Notifier <%s>\nDate: %s\nSubject: %s\nContent-Type: text/plain; charset=\"utf-8\"\n\n%s",
|
"From: openSenseMap Notifier <%s>\nDate: %s\nSubject: %s\nContent-Type: text/plain; charset=\"utf-8\"\n\n%s%s",
|
||||||
from,
|
from,
|
||||||
time.Now().Format(time.RFC1123Z),
|
time.Now().Format(time.RFC1123Z),
|
||||||
notification.Subject,
|
notification.Subject,
|
||||||
notification.Body)
|
notification.Body,
|
||||||
|
"\n\n--\nSent automatically by osem_notify (https://github.com/noerw/osem_notify)")
|
||||||
|
|
||||||
// Connect to the server, authenticate, set the sender and recipient,
|
// Connect to the server, authenticate, set the sender and recipient,
|
||||||
// and send the email all in one step.
|
// and send the email all in one step.
|
||||||
|
|
|
@ -155,7 +155,7 @@ func ComposeNotification(box *Box, checks []CheckResult) Notification {
|
||||||
return Notification{
|
return Notification{
|
||||||
Status: status,
|
Status: status,
|
||||||
Subject: fmt.Sprintf("Issues %swith your box \"%s\" on opensensemap.org!", resolved, box.Name),
|
Subject: fmt.Sprintf("Issues %swith your box \"%s\" on opensensemap.org!", resolved, box.Name),
|
||||||
Body: fmt.Sprintf("A check at %s identified the following updates for your box \"%s\":\n\n%s%sYou may visit https://opensensemap.org/explore/%s for more details.\n\n--\nSent automatically by osem_notify (https://github.com/noerw/osem_notify)",
|
Body: fmt.Sprintf("A check at %s identified the following updates for your box \"%s\":\n\n%s%sYou may visit https://opensensemap.org/explore/%s for more details.",
|
||||||
time.Now().Round(time.Minute), box.Name, errList, resolvedList, box.Id),
|
time.Now().Round(time.Minute), box.Name, errList, resolvedList, box.Id),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type OsemError struct {
|
type OsemError struct {
|
||||||
Code int `json:"code"`
|
Code string `json:"code"`
|
||||||
Message string `json:"message"`
|
Message string `json:"message"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,8 @@ package utils
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
|
@ -70,3 +72,7 @@ func PrintConfig() {
|
||||||
func printKV(key, val interface{}) {
|
func printKV(key, val interface{}) {
|
||||||
log.Debugf("%20s: %v", key, val)
|
log.Debugf("%20s: %v", key, val)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func ParseFloat(val string) (float64, error) {
|
||||||
|
return strconv.ParseFloat(strings.TrimSpace(val), 64)
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue