Bart

Results 53 comments of Bart

Every 5s a health/live check is performed, which uses an int64 counter (+1) and an int64 histogram (+duration). Each function call does the same, with differently named counters/histograms. The non-health/live...

I'll need a few days to find some time to enable pprof, update the package version, and capture the heap dumps - stay tuned.

Over the course of some 6 hours I took 5 heap dumps using pprof, see attachment. In those 6 hours only the live and health checks were called every 5...

I deployed a fresh instance and will let it run until Monday so I can collect a new sample to give you even more to work with. If there are...

I called the tool with `inuse_objects` followed by `top` to get the highest memory consumers, and got the following: ``` go tool pprof --inuse_objects https://[host]:[port]/debug/pprof/heap Fetching profile over HTTP from...

Another update: ``` Showing nodes accounting for 1653226, 98.38% of 1680435 total Dropped 54 nodes (cum

I think we're getting close to the solution. Curling the `/metrics` endpoint gave me "http_server" count and histogram metrics repeated thousands upon thousands of times (until I quit the command)....

What is your current suggestion in my situation? Hold off on updating until #3744 is fixed, or do I need to change something on my end?

The following extract shows how we set up the exporter and meter provider: ``` // Create the metric exporter. logger.Info("Creating metric exporter.") metricExporter, err := prometheus.New() if err != nil...

I experienced this too on Mac OS Mojave 10.14.6 while writing to an exFat formatted drive. Writing the data to a Mac OS Extended (Journaled) RAID drive instead was successful....