bosun.org@v0.0.0-20250213104149-b8d3e981f37d/models/errors.go (about)

     1  package models
     2  
     3  import (
     4  	"time"
     5  )
     6  
     7  type AlertError struct {
     8  	FirstTime, LastTime time.Time
     9  	Count               int
    10  	Message             string
    11  }