2016-11-22 00:52:41 +02:00
|
|
|
+++
|
|
|
|
# default attributes for an incident.
|
|
|
|
#
|
|
|
|
# Hugo adds `title` and `date` by default
|
|
|
|
# when running `hugo new incidents/new-incident.md`,
|
|
|
|
# so we don't have to specify them here.
|
|
|
|
|
2016-11-23 19:53:38 +02:00
|
|
|
# severity: represents the impact of
|
2016-11-22 00:52:41 +02:00
|
|
|
# your system due to the current incident.
|
2016-11-23 19:53:38 +02:00
|
|
|
# This is the list of supported severities:
|
2016-11-22 00:52:41 +02:00
|
|
|
#
|
|
|
|
# - under-maintenance
|
|
|
|
# - degraded-performance
|
|
|
|
# - partial-outage
|
|
|
|
# - major-outage
|
|
|
|
#
|
2016-11-23 19:53:38 +02:00
|
|
|
severity = "degraded-performance"
|
2016-11-22 00:52:41 +02:00
|
|
|
|
|
|
|
# affectedsystem: is a list of systems affected
|
|
|
|
# by the incident.
|
|
|
|
# Example:
|
|
|
|
# affectedsytems = ["API", "Build servers"]
|
|
|
|
#
|
|
|
|
affectedsytems = ["API", "Build servers"]
|
|
|
|
|
|
|
|
# resolved: marks an incident as resolved.
|
|
|
|
# It can be either true or false.
|
|
|
|
#
|
|
|
|
resolved = false
|
|
|
|
+++
|