mirror of
https://github.com/prymitive/karma
synced 2026-05-07 03:26:52 +00:00
11 lines
298 B
Go
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"`
|
|
}
|