Convert pprof samples to Rprof format.

to_rprof(pprof, rprof = tempfile())

Arguments

pprof

Path to pprof samples.

rprof

Path to Rprof samples.

Value

Path to pprof samples.

Examples

if (identical(Sys.getenv("PROFFER_EXAMPLES"), "true")) {
pprof <- record_pprof(replicate(1e2, sample.int(1e4)))
to_rprof(pprof)
}