| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
1. Updated the "include"s.
2. No logs read API in the AppEngine anymore. Replaced by the GCP logging API.
3. Use "GO111MODULE=off gcloud beta app deploy ./dashboard/app/app.yaml --no-promote" to test new deployment.
4. Updated the documentation.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* syz-manager: add prometheus metrics
Add prometheus metrics client to syz-manager.
Expose metrics on a new port defined in mgrconfig.
Allows for prometheus to scrape metrics from syz-manager.
* syz-manager: expose metrics endpoint in http server
.gitignore : remove local .img path
* mgrconfig: remove unnecessary config option
* syz-manager: update stats to use gaugefunc
added docs for prometheus exported metrics
added more gaugefunc metrics
Signed-off-by: Palash Oswal <oswalpalash@gmail.com>
* syz-manager: minor changes for CI tests
added periods to comments and renamed go variables
Signed-off-by: Palash Oswal <oswalpalash@gmail.com>
* syz-manager: re-position prometheus counter declaration
docs updated with PR comments
Signed-off-by: Palash Oswal <oswalpalash@gmail.com>
|
| |
|
|
| |
Issue: #2495
|
| | |
|
| |
|
|
|
|
|
|
| |
Update to HEAD to fix:
$ go-fuzz-build ./pkg/tool
failed to execute go build: exit status 2
/go1.15/src/reflect/value.go:1432: misplaced compiler directive
|
| |
|
|
|
|
| |
Required to talk to KCIDB.
Update #2144
|
| | |
|
| |
|
|
|
|
|
|
| |
Otherwise go-fuzz-build now fails with:
+ go-fuzz-build -libfuzzer -func FuzzDeserialize -o fuzzer.a ./prog/test
-: cannot find package "." in:
/syzkaller/gopath/src/github.com/google/syzkaller/vendor/github.com/dvyukov/go-fuzz/go-fuzz-dep
|
| | |
|
| |
|
|
|
|
|
| |
Since we started using modules, it's a good time to update some deps.
Update to latest official versions packages that have newer versions.
Update #1247
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Godep is long deprecated and modules is the future.
Updating dependencies with godep is painful and non-transparent.
This will hopefully help to create custom golangci-lint linters.
The change was created with:
go mod init
rm -rf vendor
go mod vendor
Fixes #1247
|
| |
|
|
|
|
| |
Required to switch dashboard/app to go1.11.
Update #1461
|
| |
|
|
|
| |
To pick up fix for:
https://github.com/google/go-cmp/issues/103
|
| |
|
|
|
|
| |
Add the new package required by pkg/report/fuchsia.go.
Also update everything else because there does not seem
to be a way to add a package without a wholesale update.
|
| |
|
|
| |
This package simplifies diffing complex objects in tests.
|
| |
|
|
|
|
| |
google.golang.org/api/compute/v0.beta again changed public interfaces
which causes breakages in other build environments.
Update everything to HEAD.
|
| |
|
|
|
|
|
| |
dep tool vendored too much code (100MB) including tests and unused packages.
godep vendored significantly less (12MB) without tests and unused packages.
The main advantage is that pre-Go1.9 toolchain does not run tests
of all vendor packages now.
|
|
|
All dependencies are vendored with:
go get github.com/golang/dep
dep init
If necessary, can be updated with:
dep ensure -update
Fixes #215
|