mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 17:43:35 -06:00
13 lines
216 B
Go
13 lines
216 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
// HistoryQuery represents a query for alert state history.
|
|
type HistoryQuery struct {
|
|
RuleUID string
|
|
OrgID int64
|
|
Labels map[string]string
|
|
From time.Time
|
|
To time.Time
|
|
}
|