Ivan Danyliuk

Results 109 comments of Ivan Danyliuk

Any workarounds or explanation of this issue?

Oh, nice example, thanks! I'll investigate it.

Good point. Definitely should be added.

Hey @Igorpollo, when you run command from shell, it is normally looking for binary in specific folders, listed in PATH environment variable. If you install Go app via `go install`...

Hi @cklenetsky, thanks for the issue and PR! It's a really interesting case, and I assume you don't have any access to the metrics producing code, right? I like the...

@cklenetsky, perfect! Yes, I think keeping both versions of metrics is a way to go in your case.

Hey @arl, this feature is unsupported. I wonder, where is the expectation of `[0]` to work with JSON comes from – from `jq` experience? Other tooling? I'm asking because if...

Hi, Does "Goroutines" field is present in /debug/vars JSON? Whit is the output of the following command? `curl -s http://localhost:4000/debug/vars | grep Goroutines`

Oh right, _expvar_ package doesn't export goroutines number. It should be done via expvar.Func, something like this: ``` func goroutines() interface{} { return runtime.NumGoroutine() } ... expvar.Publish("Goroutines", expvar.Func(goroutines)) ``` I...

> is there a published list of default variables? Sorry for delay (half a year one) with response :) The list is available as part of the `expvarmon --help` output.