You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 17, 2025. It is now read-only.
I am using opencensus-python library to trace requests to my Python Flask application.
I have noticed that when using a StackdriverExporter instance, the memory usage of my app grows steadily for each traced request. When observed using memory_profiler, the memory usage grows roughly 700KB to 1MB per request. I have also noticed similar usage growth on GKE metrics dashboard when running the app on GKE.
All other factors being the same, if I use a LoggingExporter instance (instead of StackdriverExporter), the memory usage stays constant (as expected).