Hi,
Have a long running go routine to refresh a device auth token and was noticing a sharp increase in memory.
used pprof and idenitifed data dog's statsd buffer go keeping all the memory. More specifically, statsd.nextStatsBuffer have the max default size set for the buffer and initialize the buffer with the regular http client.
Tried forcing flush on statsd to no avail but the leak persists, any leads?