Profiling Fastly Compute applications

Hi!

I published a blog post on Profiling Fastly Compute Applications | Fastly. I even snuck in a nice fractal image.

Are you profiling your Compute applications?

Leon

Any tips on profiling compute applications written in TypeScript? I tried it but the loaded profille has everything listed as wasm function

Unfortunately there’s no integration at this moment. One workaround would be to use the JavaScript native performance.now() and console.time(‘event’) and console.timeEnd(‘event’) functions to add your own profiling to your own code blocks. Alternatively profiling with Node.js and –jitless might give a similar result.