8ff8e97da5
From Hugo 0.24 this must be provided in the archetype file itself, if needed. Example: --- title: "{{ replace .TranslationBaseName "-" " " | title }}" date: {{ .Date }} draft: true ---
642 B
642 B
+++
default attributes for an incident.
title = "{{ replace .TranslationBaseName "-" " " | title }}" date = {{ .Date }}
severity: represents the impact of
your system due to the current incident.
This is the list of supported severities:
- under-maintenance
- degraded-performance
- partial-outage
- major-outage
severity = "degraded-performance"
affectedsystems: is a list of systems affected
by the incident.
Example:
affectedsystems = ["API", "Build servers"]
affectedsystems = ["API", "Build servers"]
resolved: marks an incident as resolved.
It can be either true or false.
resolved = false +++