Skip to content

Commit 1b645f3

Browse files
committed
v4.0
1 parent 0544fff commit 1b645f3

File tree

7 files changed

+116
-18
lines changed

7 files changed

+116
-18
lines changed

config.yml

Lines changed: 85 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ defaultContentLanguage: en
8383
# What is the hostname or path to the root?
8484
# Where is the site hosted?
8585
#
86-
# 💥 cState & Hugo don’t support '/' in
86+
# cState & Hugo don’t support '/' in
8787
# production use. It will break RSS
8888
# feeds and breaks permalinks since
8989
# version 3. If you are just testing,
@@ -99,17 +99,51 @@ baseURL: https://cstate.mnts.lt
9999
############################################################
100100

101101
params:
102+
# Before setting up your systems, you need
103+
# to first define at least one category.
104+
#
105+
# Categories are shown in the order that
106+
# you define in this config file.
107+
#
108+
# Categories can have a:
109+
# - name
110+
# - description
111+
# - closed boolean `closed: true`
112+
# That would collapse the category upon first load
113+
# and the user can expand by clicking on the category
114+
# (Requires JavaScript.)
115+
# - untitled boolean `untitled: true`
116+
# This would complerely hide the name of the category.
117+
# This is useful, if you do not want to use categories
118+
# because you need to set an 'Uncategorized' category.
119+
# Or it can be used alongside other categories.
120+
#
121+
# For help, see the wiki:
122+
# https://github.com/cstate/cstate/wiki/Customization
123+
categories:
124+
- name: North Coast
125+
description: The main servers are located here.
126+
closed: true
127+
- name: East Coast
128+
- name: Uncategorized
129+
untitled: true
130+
102131
# These are your systems. Change them to
103132
# change the amount of components.
104133
#
105134
# For help, see the wiki:
106135
# https://github.com/cstate/cstate/wiki/Customization
107136
systems:
108137
- name: Gateway
138+
category: North Coast
139+
- name: Backup Gateway
140+
category: East Coast
109141
- name: API
110142
description: The guts of the application.
143+
category: Uncategorized
111144
- name: Media Proxy
112145
description: This is the service responsible for serving images, audio, and video. It is reliant on our CDN.
146+
category: Uncategorized
113147

114148
# What date format to use?
115149
#
@@ -129,6 +163,30 @@ params:
129163
# BOOLEAN; `true`, `false`
130164
useLargeHeaderDesign: false
131165

166+
# Should incident history be separated
167+
# like in an archive view?
168+
#
169+
# Note: This WILL disable pagination.
170+
#
171+
# Default: `yearly`
172+
# STRING; `monthly`, `yearly`, `none`
173+
incidentHistoryFormat: "yearly"
174+
175+
# Disable dark mode
176+
#
177+
# If your OS and browser support the
178+
# `prefers-color-scheme` media query,
179+
# cState will automatically switch to
180+
# a darker user interface.
181+
#
182+
# cState uses its built-in colors for
183+
# most of the interface to ensure
184+
# a good user experience.
185+
#
186+
# Default: false
187+
# BOOLEAN; `true`, `false`
188+
disableDarkMode: false
189+
132190
# Should we show the logo or the title
133191
# of the status page?
134192
#
@@ -179,20 +237,22 @@ params:
179237
incidentPostsPerPage: 10
180238

181239
# Colors throughout cState
182-
# HEX codes without the #
240+
#
241+
# We recommend using HEX
242+
# (with the # symbol).
183243
#
184244
# Defaults:
185245
#
186-
# brand: "0a0c0f"
187-
# ok: "008000"
188-
# disrupted: "cc4400"
189-
# down: "e60000"
190-
# notice: "24478f"
191-
brand: "0a0c0f"
192-
ok: "008000"
193-
disrupted: "cc4400"
194-
down: "e60000"
195-
notice: "24478f"
246+
# brand: "#0a0c0f"
247+
# ok: "#008000"
248+
# disrupted: "#cc4400"
249+
# down: "#e60000"
250+
# notice: "#24478f"
251+
brand: "#0a0c0f"
252+
ok: "#008000"
253+
disrupted: "#cc4400"
254+
down: "#e60000"
255+
notice: "#24478f"
196256

197257
# If the status page shows that
198258
# there are disruptions or outages
@@ -229,3 +289,16 @@ preserveTaxonomyNames: true
229289

230290
taxonomies:
231291
affected: affected
292+
293+
outputs:
294+
page:
295+
- html
296+
- json
297+
section:
298+
- html
299+
- json
300+
- rss
301+
home:
302+
- html
303+
- json
304+
- rss

content/issues/2018-01-17-sending-dms-impacted.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Issues Sending DMs
3-
date: 2018-01-17 16:24:00
3+
date: 2017-12-17 16:24:00
44
resolved: true
5-
resolvedWhen: 2018-01-17 16:58:00
5+
resolvedWhen: 2017-12-17 16:58:00
66
# Possible severity levels: down, disrupted, notice
77
severity: disrupted
88
affected:

content/issues/2018-05-25-us-east-conn-issues.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
---
22
title: US East Connection Issues
3-
date: 2018-05-25 04:13:00
3+
date: 2018-04-25 04:13:00
44
resolved: true
5-
resolvedWhen: 2018-05-25 04:13:59
5+
resolvedWhen: 2018-04-25 04:13:59
66
# Possible severity levels: down, disrupted, notice
77
severity: down
88
affected:
99
- API
1010
- Media Proxy
11+
- Gateway
1112
section: issue
1213
---
1314

content/issues/2018-06-13-maintenance-window.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
title: Maintenance Window
33
date: 2018-06-13 15:54:00
4-
resolved: false
4+
resolved: true
5+
resolvedWhen: 2018-06-13 16:54:00
56
# Possible severity levels: down, disrupted, notice
67
severity: disrupted
78
affected:
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: Testing New cState Features
3+
date: 2019-10-04 18:05:00
4+
informational: true
5+
section: issue
6+
---
7+
8+
There is a new feature in cState version 4 that lets you make what are called _informational_ posts. The main difference is that there will be no _Unresolved_ or _Resolved in under a minute_ text on the pages.
9+
10+
This is essentially a page with a date and title.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: New Pipeline Rollout
3+
date: 2019-10-05 16:24:00
4+
resolved: false
5+
resolvedWhen: 2019-10-05 16:58:00
6+
# Possible severity levels: down, disrupted, notice
7+
severity: disrupted
8+
affected:
9+
- API
10+
section: issue
11+
---
12+
13+
There may be disruptions in the rollout.

0 commit comments

Comments
 (0)