Evan Jones
Evan Jones
Fixes syntax errors when trying to render pprof profiles that have double quotes in tags. These can be created with Go's pprof labels feature, for example with: Fixes syntax errors...
*Summary*: I have no Go-related environment variables set, other than putting the Go tools in `PATH`. Go tools work, but `govulncheck` seems to try to cache files in the wrong...
Go 1.19 introduced gofmt formatting changes. This change runs gofmt from Go 1.19, since commit 09f2d70be7d3 on 2023-07-14 updated to use that version. It also fixes bundle-import.sh to generate the...
This is a collection of minor API documentation edits I noticed while using ListOffsets. Notably: I had to look around to figure out that timestamps are Unix milliseconds. Detailed edits:...
The wiki Architecture Guide link is a redirect. Use the up to date one in the header comment.
The binaries that are checked in are dynamically linked. This means they break on newer versions of Debian and Ubuntu, which ship `libpng16.so.16` instead of `libpng12.so.0`. If they were statically...
We want to use Veneur in a mode where we run a set of "leaf" Veneurs which receive stats from applications, and forward ALL metrics to a global Veneur. This...
*TL;DR:* If I have a `py_library(..., srcs=["foo.py"], imports=["."])`, then with the standard Bazel Python rules I can use `import foo` to reference it. If I link this `py_library` into a...
When using pex without any entry points, it creates a PEX that is an interpreter that uses the bundled environment. This can be useful to distribute in order to execute...
The gocql documentation did not make it clear what units the query timestamps are in. Rename the variables to include a "Micros" suffix and revise the godoc comments to make...