File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -58,9 +58,10 @@ type goCollector struct {
58
58
// collector will use the memstats from a previous collection if
59
59
// runtime.ReadMemStats takes more than 1s. However, if there are no previously
60
60
// collected memstats, or their collection is more than 5m ago, the collection
61
- // will block until runtime.ReadMemStats succeeds. (The problem might be solved
62
- // in Go1.13, see https://github.com/golang/go/issues/19812 for the related Go
63
- // issue.)
61
+ // will block until runtime.ReadMemStats succeeds.
62
+ //
63
+ // NOTE: The problem is solved in Go 1.15, see
64
+ // https://github.com/golang/go/issues/19812 for the related Go issue.
64
65
func NewGoCollector () Collector {
65
66
return & goCollector {
66
67
goroutinesDesc : NewDesc (
You can’t perform that action at this time.
0 commit comments