-
Notifications
You must be signed in to change notification settings - Fork 894
feat: add startup script logs to the ui #6558
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
99d510c
66c8ec3
1cc3e9d
45d250f
7fed360
7ce73aa
b86c400
0c4d2c3
1bb700f
736705f
f741523
54c30be
adb06ea
4061b13
4c5b630
05d536c
34fde1a
379f1f4
decde5c
d74457c
ac55f48
8d75963
cc715cd
e3a4b2c
399dad7
45c0aca
5a0b15d
b1b3fcb
6e1032c
3762e8d
f6b9fce
c48658c
4ec1a0e
b55b7a1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- 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.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
DROP TABLE workspace_agent_startup_logs; | ||
DROP INDEX workspace_agent_startup_logs_id_agent_id_idx; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CREATE TABLE IF NOT EXISTS workspace_agent_startup_logs ( | ||
agent_id uuid NOT NULL REFERENCES workspace_agents (id) ON DELETE CASCADE, | ||
id bigint NOT NULL, | ||
created_at timestamptz NOT NULL, | ||
output varchar(1024) NOT NULL, | ||
UNIQUE(agent_id, id) | ||
); | ||
|
||
CREATE INDEX workspace_agent_startup_logs_id_agent_id_idx ON workspace_agent_startup_logs USING btree (agent_id, id ASC); |
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.
Uh oh!
There was an error while loading. Please reload this page.