blob: 67f7c6da0bb8b1da69e62bfd6dcefb7b02dacd44 [file] [log] [blame]
package alerts
const (
// TOPIC is the PubSub topic for alert messages.
TOPIC = "promtheus-alerts"
// Well known keys and values for Metric.
TYPE = "__name__" // The two valid values are ALERTS and HEALTHZ.
TYPE_ALERTS = "ALERTS"
TYPE_HEALTHZ = "HEALTHZ"
STATE = "__state__"
STATE_ACTIVE = "active"
STATE_RESOLVED = "resolved"
// Where the alert came from, e.g. 'skia-public' or 'skolo'.
LOCATION = "location"
)