2016-11-21 14:52:41 -08:00
|
|
|
+++
|
|
|
|
# default attributes for an incident.
|
|
|
|
#
|
2017-06-29 11:01:47 -06:00
|
|
|
title = "{{ replace .TranslationBaseName "-" " " | title }}"
|
|
|
|
date = {{ .Date }}
|
2016-11-21 14:52:41 -08:00
|
|
|
|
2016-11-23 09:53:38 -08:00
|
|
|
# severity: represents the impact of
|
2016-11-21 14:52:41 -08:00
|
|
|
# your system due to the current incident.
|
2016-11-23 09:53:38 -08:00
|
|
|
# This is the list of supported severities:
|
2016-11-21 14:52:41 -08:00
|
|
|
#
|
|
|
|
# - under-maintenance
|
|
|
|
# - degraded-performance
|
|
|
|
# - partial-outage
|
|
|
|
# - major-outage
|
|
|
|
#
|
2016-11-23 09:53:38 -08:00
|
|
|
severity = "degraded-performance"
|
2016-11-21 14:52:41 -08:00
|
|
|
|
2017-02-09 11:49:53 +01:00
|
|
|
# affectedsystems: is a list of systems affected
|
2016-11-21 14:52:41 -08:00
|
|
|
# by the incident.
|
|
|
|
# Example:
|
2017-02-09 11:49:53 +01:00
|
|
|
# affectedsystems = ["API", "Build servers"]
|
2016-11-21 14:52:41 -08:00
|
|
|
#
|
2017-02-09 11:49:53 +01:00
|
|
|
affectedsystems = ["API", "Build servers"]
|
2016-11-21 14:52:41 -08:00
|
|
|
|
|
|
|
# resolved: marks an incident as resolved.
|
|
|
|
# It can be either true or false.
|
|
|
|
#
|
|
|
|
resolved = false
|
|
|
|
+++
|