-
Notifications
You must be signed in to change notification settings - Fork 224
/
mkdocs.yml
91 lines (82 loc) · 3.07 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Project Information
site_name: PagerDuty Incident Response Documentation
site_description: A collection of information about the PagerDuty incident response process. Not only how to prepare new employees for on-call responsibilities, but also how to handle major incidents, both in preparation and after-work.
site_author: PagerDuty, Inc.
site_url: https://response.pagerduty.com/
# Repository
repo_url: https://github.com/pagerduty/incident-response-docs
# Copyright
copyright: 'Copyright © PagerDuty, Inc.'
# Theme
theme:
name: 'pagerduty'
title: 'Incident Response'
# Set default cover image
extra:
cover: assets/img/covers/default.png
# Theme overrides and customizations for this specific site.
extra_css: ['assets/css/custom.css']
# Contents
nav:
- Home: 'index.md'
- Getting Started: 'getting_started.md'
- On-Call:
- Being On-Call: 'oncall/being_oncall.md'
- Who's On-Call?: 'oncall/whos_oncall.md'
- Alerting Principles: 'oncall/alerting_principles.md'
- Before an Incident:
- What is an Incident?: 'before/what_is_an_incident.md'
- Severity Levels: 'before/severity_levels.md'
- Different Roles: 'before/different_roles.md'
- Call Etiquette: 'before/call_etiquette.md'
- Complex Incidents: 'before/complex_incidents.md'
- During an Incident:
- During an Incident: 'during/during_an_incident.md'
- External Communication Guidelines: 'during/external_communication_guidelines.md'
- Security Incident: 'during/security_incident_response.md'
- After an Incident:
- After an Incident: 'after/after_an_incident.md'
- Postmortem Process: 'after/post_mortem_process.md'
- Postmortem Template: 'after/post_mortem_template.md'
- Effective Postmortems: 'after/effective_post_mortems.md'
- Crisis Response:
- Crisis Response Introduction: 'crisis/crisis_intro.md'
- Terminology: 'crisis/terms.md'
- Crisis Leadership: 'crisis/leadership.md'
- Crisis Response Operations: 'crisis/operations.md'
- Pre-crisis Phase: 'crisis/prework.md'
- PagerDuty for CRMOps: 'crisis/pagerduty.md'
- Training:
- Training Overview: 'training/overview.md'
- Incident Commander: 'training/incident_commander.md'
- Deputy: 'training/deputy.md'
- Scribe: 'training/scribe.md'
- Subject Matter Expert: 'training/subject_matter_expert.md'
- Customer Liaison: 'training/customer_liaison.md'
- Internal Liaison: 'training/internal_liaison.md'
- Glossary: 'training/glossary.md'
- Training Courses:
- Incident Response: 'training/courses/incident_response.md'
- Additional Resources:
- Reading: 'resources/reading.md'
- ChatOps: 'resources/chatops.md'
- Anti-Patterns: 'resources/anti_patterns.md'
- About: 'about.md'
# Analytics
google_analytics: ['UA-8759953-1', 'auto']
# Extensions
markdown_extensions:
- toc:
permalink: '#'
- sane_lists:
- admonition:
- meta:
- pymdownx.details:
- pymdownx.extra:
- pymdownx.mark:
- pymdownx.tilde:
- pymdownx.highlight:
- pymdownx.superfences:
- pymdownx.tabbed:
# Development URL, bind to local only.
dev_addr: '127.0.0.1:8000'