diff options
| author | Michael Tuexen <tuexen@freebsd.org> | 2019-01-17 23:11:37 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-01-18 13:20:33 +0100 |
| commit | 2103a236f19bebcfb1c0cff08feea6e93b3af7b3 (patch) | |
| tree | bc55fdb28196e3738a281ec3e1f6c5b8166a1c36 | |
| parent | 5bf17c30b217c1b3fbcec5c292e7f22d5df24918 (diff) | |
syz-manager: provide config name in Stats
| -rw-r--r-- | syz-manager/html.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/syz-manager/html.go b/syz-manager/html.go index d702dba6d..5f8d5a9cb 100644 --- a/syz-manager/html.go +++ b/syz-manager/html.go @@ -122,7 +122,7 @@ func (mgr *Manager) collectStats() []UIStat { } stats := []UIStat{ {Name: "revision", Value: fmt.Sprint(head[:8]), Link: "https://github.com/google/syzkaller/commit/" + head}, - {Name: "config", Value: "config", Link: "/config"}, + {Name: "config", Value: mgr.cfg.Name, Link: "/config"}, {Name: "uptime", Value: fmt.Sprint(time.Since(mgr.startTime) / 1e9 * 1e9)}, {Name: "fuzzing", Value: fmt.Sprint(mgr.fuzzingTime / 60e9 * 60e9)}, {Name: "corpus", Value: fmt.Sprint(len(mgr.corpus)), Link: "/corpus"}, |
