Skip to content

vilterp/AllocProfileParser.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Alloc Profile Parser

Usage

1. Gather Profile

Using Julia on this branch:

GC.start_alloc_profile(100_000)

# code you wanna profile

file = open("my-profile.json", "w")
GC.stop_and_write_alloc_profile(file)

2. Parse & Visualize

prof = AllocProfileParser.parse_alloc_profile("my-profile.json")
AllocProfileParser.to_pprof(prof)

You should see something like:

PProf

About

parse allocation profiles from Julia

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages