feat(alerting): add exeuction time to alertResult

This commit is contained in:
bergquist
2016-06-23 15:52:45 +02:00
parent f95be63c43
commit 8b05af2f90
5 changed files with 20 additions and 11 deletions
+3
View File
@@ -1,5 +1,7 @@
package alerting
import "time"
type AlertJob struct {
Offset int64
Delay bool
@@ -28,6 +30,7 @@ type AlertResult struct {
Description string
Error error
AlertJob *AlertJob
ExeuctionTime time.Time
}
type TriggeredAlert struct {