Skip to content

Instantly share code, notes, and snippets.

@Tjorriemorrie
Created March 27, 2018 23:34
Show Gist options
  • Save Tjorriemorrie/b28e4289d9dba9b184d8a872d827cf1c to your computer and use it in GitHub Desktop.
Save Tjorriemorrie/b28e4289d9dba9b184d8a872d827cf1c to your computer and use it in GitHub Desktop.
python tracemalloc display top 10
def display_top(snapshot, key_type='lineno', limit=10):
snapshot = snapshot.filter_traces((
tracemalloc.Filter(False, "<frozen importlib._bootstrap>"),
tracemalloc.Filter(False, "<unknown>"),
))
top_stats = snapshot.statistics(key_type)
print("Top %s lines" % limit)
for index, stat in enumerate(top_stats[:limit], 1):
frame = stat.traceback[0]
# replace "/path/to/module/file.py" with "module/file.py"
filename = os.sep.join(frame.filename.split(os.sep)[-2:])
print("#%s: %s:%s: %.1f KiB"
% (index, filename, frame.lineno, stat.size / 1024))
line = linecache.getline(frame.filename, frame.lineno).strip()
if line:
print(' %s' % line)
other = top_stats[limit:]
if other:
size = sum(stat.size for stat in other)
print("%s other: %.1f KiB" % (len(other), size / 1024))
total = sum(stat.size for stat in top_stats)
print("Total allocated size: %.1f KiB" % (total / 1024))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment