Operational Reliability Reports
Incident Queue Reliability Report
Count incidents visible at a minimum severity and summarize high-severity work.
Incident Queue Reliability Report
IncidentQueueReliabilityReport.java
public class IncidentQueueReliabilityReport {
public static void main(String[] args) {
int minSeverity = ;
int[] severities = {1, 2, 3, 3};
int visible = 0;
int high = 0;
for (int severity : severities) {
if (severity >= minSeverity) {
visible += 1;
}
if (severity >= 3) {
high += 1;
}
}
System.out.println("min=" + minSeverity + " visible=" + visible + " high=" + high);
}
}
public class IncidentQueueReliabilityReport {
public static void main(String[] args) {
int minSeverity = ;
int[] severities = {1, 2, 3, 3};
int visible = 0;
int high = 0;
for (int severity : severities) {
if (severity >= minSeverity) {
visible += 1;
}
if (severity >= 3) {
high += 1;
}
}
System.out.println("min=" + minSeverity + " visible=" + visible + " high=" + high);
}
}
public class IncidentQueueReliabilityReport {
public static void main(String[] args) {
int minSeverity = ;
int[] severities = {1, 2, 3, 3};
int visible = 0;
int high = 0;
for (int severity : severities) {
if (severity >= minSeverity) {
visible += 1;
}
if (severity >= 3) {
high += 1;
}
}
System.out.println("min=" + minSeverity + " visible=" + visible + " high=" + high);
}
}
incident queue
A deterministic incident queue can be filtered into visible and high-severity counts without modeling live tickets.