aboutsummaryrefslogtreecommitdiffstats
path: root/syz-verifier/monitoring_api.go
Commit message (Collapse)AuthorAgeFilesLines
* syz-verifier: use ignore flag because go mod tidy knows itTaras Madan2024-07-021-1/+1
|
* pkg/ipc: remove ProgInfoDmitry Vyukov2024-05-211-0/+4
| | | | | | Switch to flatrpc.ProgInfo. Note: this disables syz-runtest and syz-verifier.
* syz-verifier: fix a typo in commentsAKSUM2024-04-031-1/+1
|
* syz-verifier: fix stats access, remove racesTaras Madan2022-03-311-13/+14
| | | | Removed atomic operations. Added object level mutex.
* syz-verifier: improve statistics (#3038)Taras Madan2022-03-221-12/+14
| | | | s/TotalMismatches/TotalCallMismatches/ for readability. Add ExecErrorProgs to count failures.
* syz-verifier: use int64 instead of int for statistics (#2924)Taras Madan2021-12-151-6/+6
| | | | | Currently we use int to aggregate statistics. Counters update require the lock() operation. Lets relax it and move to int64 + atomic.AddInt64().
* syz-verifier: add monitoring api (#2869)Taras Madan2021-11-091-0/+85