diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2026-01-29 14:40:26 +0000 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2026-02-17 14:55:28 +0000 |
| commit | 02c4ab0e326c060626c1aa78bb6eaab414dc5d31 (patch) | |
| tree | 3de3d870c44b7e170d96dbcd069e6a56016f0864 /pkg/manager/html/main.html | |
| parent | 5c431cdadf7d8c81afa46915b85f6a63aaff9871 (diff) | |
pkg/manager: display core dumps on the syz-manager web ui
Diffstat (limited to 'pkg/manager/html/main.html')
| -rw-r--r-- | pkg/manager/html/main.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pkg/manager/html/main.html b/pkg/manager/html/main.html index ab279f668..d1cf58c08 100644 --- a/pkg/manager/html/main.html +++ b/pkg/manager/html/main.html @@ -31,6 +31,9 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the <th><a onclick="return sortTable(this, 'First Time', textSort, true)" href="#">First Time</a></th> <th><a onclick="return sortTable(this, 'Last Time', textSort, true)" href="#">Last Time</a></th> <th><a onclick="return sortTable(this, 'Report', textSort)" href="#">Report</a></th> + {{if .ShowCore}} + <th><a onclick="return sortTable(this, 'Core', textSort)" href="#">Core</a></th> + {{end}} <th><a onclick="return sortTable(this, 'Repro Attempts', numSort)" href="#">Repro Attempts</a></th> </tr> </thead> @@ -57,6 +60,13 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the <a href="/file?name={{$c.StraceFile}}">Strace</a> {{end}} </td> + {{if $.ShowCore}} + <td> + {{if $c.MemoryDumpFile}} + <a href="/file?name={{$c.MemoryDumpFile}}&raw=1">Dump</a> + {{end}} + </td> + {{end}} <td class="stat {{if not $c.ReproAttempts}}inactive{{end}}">{{$c.ReproAttempts}}</td> </tr> {{end}} |
