Configurable interval for nodata checks

This commit is contained in:
Magnus Åhall 2024-05-30 13:31:51 +02:00
parent c45724f5d8
commit 9eecf946f8
3 changed files with 8 additions and 3 deletions

View file

@ -1,5 +1,6 @@
package main
type SmonConfiguration struct {
LogFile string
LogFile string
NodataInterval int `json:"nodata_interval"` // in seconds
}