Profiling?

Is there a way, on Linux, to profile the time-usage of functions written in Crystal?

1 Like
crystal build --debug <file>
perf record --call-graph dwarf <executable>
hotspot perf.data
7 Likes

@BrucePerens
Hey Bruce!

Welcome to Crystal community! Great to see you here!