2016-11-22 00:52:41 +02:00
|
|
|
+++
|
|
|
|
# default attributes for an incident.
|
|
|
|
#
|
2017-06-29 20:01:47 +03:00
|
|
|
title = "{{ replace .TranslationBaseName "-" " " | title }}"
|
|
|
|
date = {{ .Date }}
|
2016-11-22 00:52:41 +02:00
|
|
|
|
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
|
|
|
|
2017-02-09 12:49:53 +02:00
|
|
|
# affectedsystems: is a list of systems affected
|
2016-11-22 00:52:41 +02:00
|
|
|
# by the incident.
|
|
|
|
# Example:
|
2017-02-09 12:49:53 +02:00
|
|
|
# affectedsystems = ["API", "Build servers"]
|
2016-11-22 00:52:41 +02:00
|
|
|
#
|
2017-02-09 12:49:53 +02:00
|
|
|
affectedsystems = ["API", "Build servers"]
|
2016-11-22 00:52:41 +02:00
|
|
|
|
|
|
|
# resolved: marks an incident as resolved.
|
|
|
|
# It can be either true or false.
|
|
|
|
#
|
|
|
|
resolved = false
|
|
|
|
+++
|