Changed paths:
M pkg/fuzzer/fuzzer.go
M pkg/fuzzer/job.go
M pkg/fuzzer/stats.go
M pkg/manager/http.go
Log Message:
-----------
syz-manager: separate candidate triage jobs in the UI
Currently, candidate triage jobs are grouped together with regular triage
jobs in the manager's web UI, making it impossible to view them
separately.
Introduce a new JobType enum for fuzzer jobs and assign a dedicated
JobCandidateTriage type to candidate triage jobs. Update the dashboard
links and the HTTP handler in pkg/manager to support filtering and
displaying candidate triage jobs specifically.
Log Message:
-----------
pkg/fuzzer: use JobType constants for UI stat links
Update the links in `pkg/fuzzer/stats.go` to use the `JobType` enum
constants instead of raw string literals. This ensures consistency
with the rest of the job type refactoring and prevents potential typos
if job types are renamed in the future.