Skip to content

Commit

Permalink
Add severity table to support case form (ClickHouse#32736)
Browse files Browse the repository at this point in the history
  • Loading branch information
codyrobert authored Dec 14, 2021
1 parent dadaeab commit 05b9300
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 16 deletions.
2 changes: 1 addition & 1 deletion website/css/main.css

Large diffs are not rendered by default.

12 changes: 0 additions & 12 deletions website/src/scss/components/_form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,6 @@ form {
appearance: none;
padding-right: 24px;
white-space: pre-wrap;

&[name=priority] {
height: 84px;

@media screen and (max-width: 767.98px) {
height: 104px;
}

@media screen and (max-width: 499.98px) {
height: 124px;
}
}
}

select.form-control:not([data-chosen]) {
Expand Down
12 changes: 12 additions & 0 deletions website/src/scss/components/_severity-table.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.severity-table {
th {
background: $gray-100;
font-size: $font-size-sm;
padding: 8px 16px;
}

td {
border-top: 1px solid $gray-500;
padding: 16px 16px;
}
}
35 changes: 32 additions & 3 deletions website/templates/support/form.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
<div class="form-group col-md-12 mb-3 is-select">
<select class="form-control" id="priority" name="priority">
<option disabled selected>Severity Classification</option>
<option value="Sev-1">Severity 1 - Critical Business Impact: DBMS is not functioning or is stopped or severely impacted so that Customer cannot reasonably continue use of DBMS and no Workaround is available.</option>
<option value="Sev-2">Severity 2 - Major Business Impact: DBMS is functioning inconsistently causing significantly impaired Customer usage and productivity, such as periodic work stoppages and feature crashes.</option>
<option value="Sev-3">Severity 3 - Minor Business Impact: DBMS is functioning inconsistently causing slightly impaired Customer usage and productivity but Customer can work around such inconsistency or impairment.</option>
<option value="Sev-1">Severity 1 Critical Business Impact</option>
<option value="Sev-2">Severity 2 Major Business Impact</option>
<option value="Sev-3">Severity 3 Minor Business Impact or General Questions</option>
</select>
</div>
<div class="form-group col-md-12 mb-3">
Expand All @@ -43,6 +43,35 @@
</div>

</form>

<h2 class="h3 mt-10">Severity Classification Level Definitions</h2>

<table class="severity-table">
<thead>
<tr>
<th style="width:15%;">Severity Classification Level</th>
<th style="width:25%;">Organizational Impact</th>
<th style="width:60%;">Definition</th>
</tr>
</thead>
<tbody>
<tr>
<td>Severity 1</td>
<td>Critical Business Impact</td>
<td>ClickHouse DBMS LTS or stable software release in production use is not functioning or is stopped or severely impacted so that Customer cannot reasonably continue use of DBMS and no Workaround is available</td>
</tr>
<tr>
<td>Severity 2</td>
<td>Major Business Impact</td>
<td>ClickHouse DBMS LTS or stable software release is functioning inconsistently causing significantly impaired Customer usage and productivity, such as periodic work stoppages and feature crashes</td>
</tr>
<tr>
<td>Severity 3</td>
<td>Minor Business Impact or General Questions</td>
<td>ClickHouse DBMS LTS or stable software release is functioning inconsistently causing slightly impaired Customer usage and productivity but Customer can work around such inconsistency or impairment, or Customer has a question or enhancement for the DBMS or ClickHouse not determined an Error</td>
</tr>
</tbody>
</table>

<hr class="is-yellow mt-10">

Expand Down

0 comments on commit 05b9300

Please sign in to comment.