mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 22:12:08 +08:00
21 lines
395 B
Go
21 lines
395 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/apimachinery/identity"
|
|
)
|
|
|
|
// HistoryQuery represents a query for alert state history.
|
|
type HistoryQuery struct {
|
|
RuleUID string
|
|
OrgID int64
|
|
DashboardUID string
|
|
PanelID int64
|
|
Labels map[string]string
|
|
From time.Time
|
|
To time.Time
|
|
Limit int
|
|
SignedInUser identity.Requester
|
|
}
|