Memory leakage #256
Answered
by
godlygeek
leonballonigomes
asked this question in
Q&A
Memory leakage
#256
-
Good day, everyone. Please, could you help me understand if it`s possible to evaluate my application memory leakage using memray? Thank you. |
Beta Was this translation helpful? Give feedback.
Answered by
godlygeek
Nov 19, 2022
Replies: 2 comments
-
You certainly can. You'd run your program with something like:
and then you can generate a report from that capture file using:
and then open that report in a web browser. See the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
godlygeek
-
Thank you! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You certainly can. You'd run your program with something like:
and then you can generate a report from that capture file using:
and then open that report in a web browser. See the
memray flamegraph
docs and our docs on Python allocators.