diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2025-08-27 20:14:39 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2025-08-28 08:38:36 +0000 |
| commit | 74e8e8f5469dcac539f57af8e93ca361117d26c2 (patch) | |
| tree | 31adc25d4cac88063adf2c68b63092dbb7beaffa /syz-cluster | |
| parent | e12e5ba469cd05aa76330394486b1f2a24dd4ef6 (diff) | |
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.
Diffstat (limited to 'syz-cluster')
| -rw-r--r-- | syz-cluster/dashboard/templates/graphs.html | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/syz-cluster/dashboard/templates/graphs.html b/syz-cluster/dashboard/templates/graphs.html index 0972ae6df..e972b81ca 100644 --- a/syz-cluster/dashboard/templates/graphs.html +++ b/syz-cluster/dashboard/templates/graphs.html @@ -1,17 +1,19 @@ {{define "content"}} <main class="container-fluid my-4"> <div class="chart-wrapper mb-5"> - <h2 class="h4">Processed Series (weekly)</h2> - <p class="text-muted small">Click and drag to zoom into a time range. Right-click to reset.</p> + <h2 class="h4">Processed Patch Series (weekly)</h2> + <p class="text-muted small">How many patch series have been extracted/triaged/built/fuzzed each week.</p> <div id="processed_chart_div" style="width: 100%; height: 400px;"></div> + <p class="text-muted small">Click and drag to zoom into a time range. Right-click to reset.</p> </div> <hr class="my-4"> <div class="chart-wrapper mb-4"> <h2 class="h4">Findings (weekly)</h2> - <p class="text-muted small">Click and drag to zoom into a time range. Right-click to reset.</p> + <p class="text-muted small">How many kernel crashes or kernel build/boot errors have been detected each week.</p> <div id="findings_chart_div" style="width: 100%; height: 400px;"></div> + <p class="text-muted small">Click and drag to zoom into a time range. Right-click to reset.</p> </div> <hr class="my-4"> @@ -19,16 +21,21 @@ <div class="chart-wrapper mb-4"> <h2 class="h4">Wait Time before Fuzzing (avg hours, weekly)</h2> <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> - <p class="text-muted small">Click and drag to zoom into a time range. Right-click to reset.</p> <div id="avg_wait_chart_div" style="width: 100%; height: 400px;"></div> + <p class="text-muted small">Click and drag to zoom into a time range. Right-click to reset.</p> </div> <hr class="my-4"> <div class="chart-wrapper mb-4"> <h2 class="h4">Status Distribution (weekly)</h2> - <p class="text-muted small">Click and drag to zoom into a time range. Right-click to reset.</p> + <p class="text-muted small"> + <b>Processed:</b> Among the processed series, how many have been actually fuzzed.<br /> + <b>Skipped:</b> Among the processed series, how many were skipped during triage (e.g. because no proper base commit was found).<br /> + <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). + </p> <div id="distribution_chart_div" style="width: 100%; height: 400px;"></div> + <p class="text-muted small">Click and drag to zoom into a time range. Right-click to reset.</p> </div> </main> <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> |
