syzkaller/dashboard/app
2020-04-03 10:49:59 +02:00
..
static dashboard/app: allow main UI to show bisect results 2019-08-08 15:58:57 +02:00
access_test.go dashboard/app: fix testing for go1.11 runtime 2020-01-29 16:01:06 +01:00
access.go dashboard/app: fix testing for go1.11 runtime 2020-01-29 16:01:06 +01:00
admin.go dashboard: update to go111 runtime 2020-01-29 16:01:06 +01:00
admin.html dashboard/app: split dashboard per-namespace 2019-04-08 14:32:32 +02:00
api.go dashboard: update to go111 runtime 2020-01-29 16:01:06 +01:00
app_test.go dashboard/app: fix tests hang 2020-03-27 10:43:05 +01:00
app.yaml dashboard: update to go111 runtime 2020-01-29 16:01:06 +01:00
bisect_test.go all: fix new golangci-lint warnings 2020-03-13 08:26:02 +01:00
bug.html dashboard/app: few more cosmetic UI changes 2019-11-07 12:37:52 +01:00
commit_poll_test.go dashboard/app: fix testing for go1.11 runtime 2020-01-29 16:01:06 +01:00
config.go all: fix new golangci-lint warnings 2020-03-13 08:26:02 +01:00
cron.yaml dashboard/app: change backup bucket 2018-09-20 18:29:38 +02:00
dashboard.go dashboard/app: fix testing for go1.11 runtime 2020-01-29 16:01:06 +01:00
email_test.go dashboard/app: fix testing for go1.11 runtime 2020-01-29 16:01:06 +01:00
entities.go dashboard: update to go111 runtime 2020-01-29 16:01:06 +01:00
error.html dashboard/app: add support for Google Analytics 2018-03-21 13:46:45 +01:00
fix_test.go dashboard/app: fix testing for go1.11 runtime 2020-01-29 16:01:06 +01:00
handler.go dashboard: update to go111 runtime 2020-01-29 16:01:06 +01:00
index.yaml dashboard/app: report newer crashes in the next reporting 2019-12-11 11:05:32 +01:00
jobs_test.go dashboard/app: fix testing for go1.11 runtime 2020-01-29 16:01:06 +01:00
jobs.go dashboard/app: fix testing for go1.11 runtime 2020-01-29 16:01:06 +01:00
mail_bisect_result.txt syz-ci: send build info for failed bisections 2019-11-05 09:15:56 +01:00
mail_bug.txt dashboard/app: add bisection link to emails 2019-03-22 12:00:50 +01:00
mail_test_result.txt dashboard/app: include dashboard link in job reports 2019-08-24 13:42:14 -07:00
main.go dashboard: update to go111 runtime 2020-01-29 16:01:06 +01:00
main.html dashboard/app: split dashboard per-namespace 2019-04-08 14:32:32 +02:00
notifications_test.go dashboard/app: fix testing for go1.11 runtime 2020-01-29 16:01:06 +01:00
README.md dashboard/app: add instructions on how to update the scheme 2020-04-03 10:49:59 +02:00
reporting_email.go all: fix new golangci-lint warnings 2020-03-13 08:26:02 +01:00
reporting_external.go dashboard/app: fix testing for go1.11 runtime 2020-01-29 16:01:06 +01:00
reporting_test.go dashboard/app: fix testing for go1.11 runtime 2020-01-29 16:01:06 +01:00
reporting.go dashboard/app: fix testing for go1.11 runtime 2020-01-29 16:01:06 +01:00
repro_test.go dashboard/app: fix testing for go1.11 runtime 2020-01-29 16:01:06 +01:00
templates.html dashboard/app: show what fix bisections we will mail 2019-11-07 14:27:46 +01:00
terminal.html dashboard/app: add invalid bugs page 2019-05-27 11:28:02 +02:00
util_test.go dashboard/app: skip tests if dev_appserver.py is missing 2020-01-29 16:15:37 +01:00

Dashboard

dashboard is an App Engine app that powers syzbot. The main deployment is at syzkaller.appspot.com.

It is so-called Standard environment Go app.
To deploy and manage the app you need to install Google Cloud SDK.
For more details about App Engine refer to the docs.

Note: The app is not stable and is not officially supported. It's here only to power the main deployment.

Here is "big" picture of a possible setup: Overall picture of syzbot setup

Note: the vector source is here; to update: make a copy of the source, edit, download a png, update the png and include a link to your vector copy into the PR.

To deploy the app you need to add a .go file with production config. The config specifies kernel namespaces, bug reporting details, API keys, etc. Tests contain a config example, but it's not ready for production use.

The app also needs one or more syz-ci instances running elsewhere. The syz-ci instances do the actual fuzzing, bisection, patch testing, etc.

The app can be deployed with gcloud app deploy/update, refer to the docs for more details.

The app tests can be run with:

go test github.com/google/syzkaller/dashboard/app

During development it's handy to use -short flag to not run the longest tests.

If any of the tests fail, use -v flag to see log of what happens and -run flag to run a single test, e.g.:

go test -short -v -run=TestEmailReport github.com/google/syzkaller/dashboard/app