aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard
Commit message (Collapse)AuthorAgeFilesLines
* pkg/aflow: make LLM model per-agent rather than per-flowDmitry Vyukov2026-01-2011-30/+29
| | | | | | Having LLM model per-agent is even more flexible than per-flow. We can have some more complex tasks during patch generation with the most elaborate model, but also some simpler ones with less elaborate models.
* dashboard/config/linux: regenerateTaras Madan2026-01-2046-1863/+3527
|
* dashboard/config/linux: enable more configsTaras Madan2026-01-202-0/+5
| | | | | | 1. DEBUG_GENERIC_PT. 2. DEBUG_XARRAY. 3. PHY_GOOGLE_USB.
* dashboard/config/linux/bits: enable DEBUG_BUGVERBOSE_DETAILEDTaras Madan2026-01-201-0/+1
| | | | Closes #6595.
* dashboard/config/linux: update to v6.19-rc5Taras Madan2026-01-2011-18/+33
|
* pkg/subsystem: regenerate Linux subsystemsAleksandr Nogikh2026-01-201-0/+1
|
* dashboard/app: don't treat memcache.ErrNotStored as an errorDmitry Vyukov2026-01-191-1/+1
| | | | | We have a bunch of "failed to throttle: memcache: item not stored" errors in logs. It seems that the cache item is evicted before we do CompareAndSwap.
* dashboard/app: filter out few more problems in errors logsDmitry Vyukov2026-01-161-1/+9
|
* dashboard: fix manuallyUpstreamedAleksandr Nogikh2026-01-153-0/+22
| | | | | The function returned incorrect result when the reporting stage of interest was completely skipped and never reported.
* dashboard/config: update Android 6.12Aleksandr Nogikh2026-01-155-181/+62
| | | | | | Use the latest available revision and disable ANDROID_BINDER_IPC - as of now, it's no longer possible to compile in both C and Rust versions at the same time.
* dashboard/config: regenerate Linux configsAleksandr Nogikh2026-01-1578-426/+861
| | | | | No extra changes, just a newer Docker container to minimize noise in the following commits.
* dashboard/app: slightly improve coverage report wordingDmitry Vyukov2026-01-153-5/+6
| | | | | Use the proper namespace name to show. +few minor tweaks
* dashboard: add a manuallyUpstreamed helperAleksandr Nogikh2026-01-153-0/+98
| | | | | | | | | | This helper function can be used in the reporting filtering rules to skip certain reporting stages depending on whether the previous stage(s) have been manually upstreamed. Add tests that it does have the intended effect. Cc #6554.
* dashboard/app: show crash report on AI job pageDmitry Vyukov2026-01-152-6/+26
|
* dashboard/app: improve AI UIDmitry Vyukov2026-01-154-25/+51
| | | | | A bag of minor assorted improvements to data formatting. + show job results in the jobs table
* pkg/aflow: allow to specify model per-flowDmitry Vyukov2026-01-144-29/+30
| | | | | We may want to use a weaker model for some workflows. Allow to use different models for different workflows.
* dashboard/app: add race harmfullness labelDmitry Vyukov2026-01-136-11/+173
| | | | | Add race:harmful/benign label. Set it automatically by confirmed AI jobs.
* dashboard/dashapi: retry requests on errorsDmitry Vyukov2026-01-131-8/+21
| | | | | | | | | API requests episodically fail due to internal datastore errors, some timeouts, etc. Failure of some requests is especially unpleasant and leads to lots of wasted work (uploading of syz-ci build info, job completion, etc). So we retry requests several times. We do this always for all requests, since we don't expect any of them to legitimately fail (we don't send malformed requests), and it won't harm for any request types.
* dashboard/app: add manual AI job triageDmitry Vyukov2026-01-133-2/+59
| | | | Allow to set the Correct flag for completed AI jobs.
* dashboard/app: make bug lists collapsibleDmitry Vyukov2026-01-132-11/+7
| | | | | | The bug lists on the main page are extremely long, it's very hard to navigate between them. Make bug lists collapsible.
* dashboard/app: fix rendering of dup bugs captionDmitry Vyukov2026-01-131-1/+0
| | | | | | | | After addition of collapsible sections on the bug page, we show 2 captions for the duplicate bugs table. One for the collapsible span "Duplicate bugs (2)", and another inside for the table "duplicates (2):". Remove the inner duplicate caption.
* dashboard/app: add spanner Jobs.Correct fieldDmitry Vyukov2026-01-135-8/+36
| | | | | | Lay down foundation for spanner DB migrations by adding Jobs.Correct field. This will allow us to test deployment of such changes. The field will be used to record results of manual assessment of AI job results.
* dashboard/app: prepare for spanner migrationsDmitry Vyukov2026-01-131-6/+27
| | | | | | | | If the code uses "select *", it's not possible to update spanner schema. Adding a field to spanner first leads to "missing field in Go struct" errors, adding a field to Go struct first leads to "missing field in spanner" errors. Replace "select *" with concrete set of fields the code knowns about. This should allow adding fields to spanner first.
* pkg/aflow/flow/assessment: add UAF moderation workflowDmitry Vyukov2026-01-122-1/+14
| | | | | | Add workflow that can be used for moderation of UAF bugs (consistent/actionable reports), such UAF bugs can be upstreammed automatically, even if they happened only once and don't have a reproducer.
* pkg/report: move TitleToCrashType to crash packageDmitry Vyukov2026-01-091-2/+1
| | | | | | | | | TitleToCrashType is a simple function with no heavy dependencies that is used by the dashboard app. Currnetly we have to import pkg/report into dashboard/app, and this package has lots of heavy deps (symbolizer, demangler, coverage report generation, etc). Move TitleToCrashType to pkg/report/crash (where it arguably belongs anyway).
* dashboard/app: fix format in cron.yamlTaras Madan2026-01-051-1/+1
| | | | It fixes the deployment error.
* dashboard/app: split handleBug functionDmitry Vyukov2026-01-051-56/+64
| | | | Linter points it become too long.
* dashboard/app: add support for AI workflowsDmitry Vyukov2026-01-0519-4/+1297
| | | | | | | | Support for: - polling for AI jobs - handling completion of AI jobs - submitting job trajectory logs - basic visualization for AI jobs
* all: remove unused nolint directivesDmitry Vyukov2026-01-028-16/+2
|
* dashboard/app: make it possible to test code that uses spannerDmitry Vyukov2025-12-315-0/+96
| | | | | | Start spanner emulator for tests. Create isolated per-test instance+database. Test that DDL migration scripts are work.
* dashboard/app: filter out some entries from the error logDmitry Vyukov2025-12-301-20/+19
| | | | | Don't show package update errors, they happen in hundreds every day. Don't show internal datastore bugs (these are not our bugs).
* dashboard/app: wire more admin handlersDmitry Vyukov2025-12-292-31/+6
| | | | | | | Make it possible 3 more admin handlers that look useful for future and safe. Now that we don't deploy the app from local machines, it's problematic to call them without this wiring. Remove one old handler that we don't need anymore.
* dashboard: extend bug's JSON representationAleksandr Nogikh2025-12-294-20/+73
| | | | Add status, crash, fix, close and commit dates.
* dashboard: factor out uiBugDetails and loadBugDetailsAleksandr Nogikh2025-12-293-121/+138
| | | | | | | Separate the code that loads all details about a particular bug from the code that is only necessary for rendering a bug page on Web UI. These can be used in mass bug exports.
* dashboard/app: make static resources work for dev_appserver.pyDmitry Vyukov2025-12-232-0/+7
| | | | | | | | The production app sets CWD to the root of the syzkaller repository, so paths that refer to static resources in app.yaml look like dashboard/app/static/*. However, dev_appserver.py sets CWD to dashboard/app, so these paths do not work. Add soft link dashboard/app/dashboard/app/static that point to dashboard/app/static, so that dashboard/app/static/* paths work from both locations.
* dashboard/app: fix admin checks for dev_appserverDmitry Vyukov2025-12-221-2/+9
| | | | | | Admin checks broke at some point for local app runs (the auth domain is overriden only in tests). Restore proper checking for dev_appserver.
* dashboard/app: improve test names in TestUserAccessLevelDmitry Vyukov2025-12-221-15/+15
| | | | | | The test uses test names with spaces, testing package replaces spaces with _. As the result, it's impossible to search for failed tests, and they all look very similar. Replace space with _, so that it's possible to search for failed tests.
* dashboard/app: fix up pprof handlers accessDmitry Vyukov2025-12-221-1/+1
| | | | The url pattern needs to include all debug/.* subpaths, not just debug page itself.
* dashboard/app: fix up top menuDmitry Vyukov2025-12-221-4/+4
| | | | | Colors do not affect 🐞, so extend the color to text as well. Remove navigation_right style, it does not exist.
* dashboard/app: add pprof handlersDmitry Vyukov2025-12-222-1/+3
| | | | | | | These are useful for debugging of deadlocks, hangs (slowness), and memory consumption issues. Can be used on a local instance during development. On the production system pprof handlers are restricted to admins only.
* all: use any instead of interface{}Dmitry Vyukov2025-12-2213-57/+57
| | | | Any is the preferred over interface{} now in Go.
* dashboard/app: add typed handler middlewareDmitry Vyukov2025-12-222-150/+59
| | | | Remove duplicated code related to request deserialization using middleware.
* dashboard/app: fix comment reference to ExternalConfig structAndrew Donnellan2025-12-111-1/+1
| | | | | | | | | | | Commit b190f060619b ("dashboard/app: fix testing for go1.11 runtime") removed the unused ExternalConfig struct. However, config.go still refers to ExternalConfig in a comment explaining how it can be used to attach to external reporting systems. Change this to say the user can implement their own type if they need. Signed-off-by: Andrew Donnellan <ajd@linux.ibm.com>
* dashboard/app: set aetest startup timeoutPimyn Girgis2025-11-031-0/+1
| | | | | Set aetest startup timeout to 120 seconds to prevent flaky tests from failing due to timeouts. This is especially helpful on slower machines or when the system is under heavy load.
* dashboard/app: provide better reply when receiving an incorrect syz test commandPimyn Girgis2025-11-032-3/+10
| | | | Syzbot is now more clear on what constitutes a correct syz test command.
* dashboard: enable ext4 in base configPimyn Girgis2025-10-2218-20/+123
| | | | Ext4 is necessary for normal boot, enable it unconditionally in base.
* dashboard: regenerate Linux configsPimyn Girgis2025-10-2117-218/+34
| | | | Disable rust by default for all instance, only enabling it where it's specified.
* dashboard: regenerate Linux configsPimyn Girgis2025-10-2053-1710/+2111
| | | | Use v6.18-rc1 and the latest linux-next tag.
* dashboard/config/linux: regenerate filesTaras Madan2025-10-0678-3824/+8243
|
* dashboard/config/linux: update bitsTaras Madan2025-10-066-45/+84
|