Ivan Kalinin

Results 5 issues of Ivan Kalinin

Hello! It would be very useful to have pre-compiled binaries for those who deploy it on bare-metal and VM. Maybe build it with travis and push to github releases?

enhancement
help wanted

https://cloud.yandex.com/en/docs/compute/concepts/instance-groups/scale#auto-scale-type

investigating

Hello! I want to make chrome healthcheck from prerender, but how we can check it? Requesting `await render.render('chrome://version')` fails with `TooManyResponseError` and `about:blank` just timeouts;

Make option to send internal metrics (requests, memory etc) to carbon server (like carbonapi, go-carbon and carbon-clickhouse does).

Example program: ```go package main import ( "fmt" "net/http" "net/http/httptest" "github.com/go-chi/chi/v5" ) func main() { mux := chi.NewMux() mux.Get("/{param:.+}.json", func(w http.ResponseWriter, r *http.Request) { param := chi.URLParam(r, "param") _, _...