mirror of
https://github.com/coder/coder.git
synced 2025-07-13 21:36:50 +00:00
feat: improve resources_monitoring for OOM & OOD monitoring (#16241)
As requested for [this issue](https://github.com/coder/internal/issues/245) we need to have a new resource `resources_monitoring` in the agent. It needs to be parsed from the provisioner and inserted into a new db table.
This commit is contained in:
30
coderd/database/migrations/testdata/fixtures/000289_agent_resource_monitors.up.sql
vendored
Normal file
30
coderd/database/migrations/testdata/fixtures/000289_agent_resource_monitors.up.sql
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
INSERT INTO
|
||||
workspace_agent_memory_resource_monitors (
|
||||
agent_id,
|
||||
enabled,
|
||||
threshold,
|
||||
created_at
|
||||
)
|
||||
VALUES (
|
||||
'45e89705-e09d-4850-bcec-f9a937f5d78d', -- uuid
|
||||
true,
|
||||
90,
|
||||
'2024-01-01 00:00:00'
|
||||
);
|
||||
|
||||
INSERT INTO
|
||||
workspace_agent_volume_resource_monitors (
|
||||
agent_id,
|
||||
path,
|
||||
enabled,
|
||||
threshold,
|
||||
created_at
|
||||
)
|
||||
VALUES (
|
||||
'45e89705-e09d-4850-bcec-f9a937f5d78d', -- uuid
|
||||
'/',
|
||||
true,
|
||||
90,
|
||||
'2024-01-01 00:00:00'
|
||||
);
|
||||
|
Reference in New Issue
Block a user