-
Notifications
You must be signed in to change notification settings - Fork 875
feat: add provisioning timings to understand slow build times #14274
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
7e36010
45b7fb4
38c4197
803a9d4
973ec6d
a070e07
4a29b96
275bfca
73bac3f
3d77c63
c0ae1ba
28fa2f7
68b16ff
6f0b8f8
724f139
c30a900
0d68e69
15282bb
82ca13e
597ec85
805c0f2
46f3318
ebbaf31
eb5ec5c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
Signed-off-by: Danny Kopping <danny@coder.com>
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
-- TODO |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CREATE TABLE provisioner_job_timings | ||
( | ||
provisioner_job_id uuid NOT NULL REFERENCES provisioner_jobs (id) ON DELETE CASCADE, | ||
started_at timestamp with time zone not null, | ||
ended_at timestamp with time zone not null, | ||
context text not null, -- TODO: enum? | ||
action text not null, -- TODO: enum? | ||
resource text not null -- TODO: enum? | ||
); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See
InsertProvisionerJobLogs
andInsertProvisionerJob
above