Files
karma/models/alertmanager.go
2017-06-28 22:36:24 -07:00

11 lines
298 B
Go

package models
// AlertmanagerUpstream describes the Alertmanager instance alert was collected
// from
type AlertmanagerUpstream struct {
Name string `json:"name"`
URI string `json:"uri"`
// all silences matching current alert in this upstream
Silences map[string]Silence `json:"silences"`
}