mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-07-30 09:18:40 -04:00
27 lines
1.1 KiB
Go
27 lines
1.1 KiB
Go
// Copyright The Prometheus Authors
|
||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
// you may not use this file except in compliance with the License.
|
||
// You may obtain a copy of the License at
|
||
//
|
||
// http://www.apache.org/licenses/LICENSE-2.0
|
||
//
|
||
// Unless required by applicable law or agreed to in writing, software
|
||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
// See the License for the specific language governing permissions and
|
||
// limitations under the License.
|
||
|
||
package alert
|
||
|
||
// AlertStatus stores the state of an alert and, as applicable, the IDs of
|
||
// silences silencing the alert and of other alerts inhibiting the alert. Note
|
||
// that currently, SilencedBy is supposed to be the complete set of the relevant
|
||
// silences while InhibitedBy may contain only a subset of the inhibiting alerts
|
||
// – in practice exactly one ID. (This somewhat confusing semantics might change
|
||
// in the future.)
|
||
type AlertStatus struct {
|
||
State AlertState `json:"state"`
|
||
SilencedBy []string `json:"silencedBy"`
|
||
InhibitedBy []string `json:"inhibitedBy"`
|
||
}
|