Skip to content

Commit 560cb53

Browse files
committed
syz-cluster: explain graphs on the stats page
Add more detailed graph descriptions. Move "Click and drag to zoom into a time range" tips below the graphs.
1 parent e12e5ba commit 560cb53

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

syz-cluster/dashboard/templates/graphs.html

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,41 @@
11
{{define "content"}}
22
<main class="container-fluid my-4">
33
<div class="chart-wrapper mb-5">
4-
<h2 class="h4">Processed Series (weekly)</h2>
5-
<p class="text-muted small">Click and drag to zoom into a time range. Right-click to reset.</p>
4+
<h2 class="h4">Processed Patch Series (weekly)</h2>
5+
<p class="text-muted small">How many patch series have been extracted/triaged/built/fuzzed per each week.</p>
66
<div id="processed_chart_div" style="width: 100%; height: 400px;"></div>
7+
<p class="text-muted small">Click and drag to zoom into a time range. Right-click to reset.</p>
78
</div>
89

910
<hr class="my-4">
1011

1112
<div class="chart-wrapper mb-4">
1213
<h2 class="h4">Findings (weekly)</h2>
13-
<p class="text-muted small">Click and drag to zoom into a time range. Right-click to reset.</p>
14+
<p class="text-muted small">How many kernel crashes or kernel build/boot errors have been detected each week.</p>
1415
<div id="findings_chart_div" style="width: 100%; height: 400px;"></div>
16+
<p class="text-muted small">Click and drag to zoom into a time range. Right-click to reset.</p>
1517
</div>
1618

1719
<hr class="my-4">
1820

1921
<div class="chart-wrapper mb-4">
2022
<h2 class="h4">Wait Time before Fuzzing (avg hours, weekly)</h2>
2123
<p class="text-muted small">How many hours have passed since the moment the series was published and the moment we started fuzzing it.</p>
22-
<p class="text-muted small">Click and drag to zoom into a time range. Right-click to reset.</p>
2324
<div id="avg_wait_chart_div" style="width: 100%; height: 400px;"></div>
25+
<p class="text-muted small">Click and drag to zoom into a time range. Right-click to reset.</p>A
2426
</div>
2527

2628
<hr class="my-4">
2729

2830
<div class="chart-wrapper mb-4">
2931
<h2 class="h4">Status Distribution (weekly)</h2>
30-
<p class="text-muted small">Click and drag to zoom into a time range. Right-click to reset.</p>
32+
<p class="text-muted small">
33+
<b>Processed:</b> Among the processed series, how many have been actually fuzzed.<br />
34+
<b>Skipped:</b> Among the processed series, how many were skipped during triage (e.g. because no proper base commit was found).<br />
35+
<b>Some steps skipped:</b> Among the processed series, how often did we skip the fuzzing step (e.g. because the patch/patch series did not modify the code we compile).
36+
</p>
3137
<div id="distribution_chart_div" style="width: 100%; height: 400px;"></div>
38+
<p class="text-muted small">Click and drag to zoom into a time range. Right-click to reset.</p>
3239
</div>
3340
</main>
3441
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>

0 commit comments

Comments
 (0)