diff --git a/website/docs/reference/global-configs/record-timing-info.md b/website/docs/reference/global-configs/record-timing-info.md index 503c8de3fe9..3caccfc5e4f 100644 --- a/website/docs/reference/global-configs/record-timing-info.md +++ b/website/docs/reference/global-configs/record-timing-info.md @@ -15,3 +15,10 @@ $ snakeviz timing.txt ``` + +Alternatively, you can use [`py-spy`](https://github.com/benfred/py-spy) to collect [speedscope](https://github.com/jlfwong/speedscope) profiles of dbt commands like this: + +```shell +python -m pip install py-spy +sudo py-spy record -s -f speedscope -- dbt parse +```