mirror of
https://github.com/coder/coder.git
synced 2026-06-03 04:58:23 +00:00
feat: Associate connected workspace agents with replicas (#4914)
This will enable displaying a graph that associates agents to running replicas.
This commit is contained in:
Generated
+2
-1
@@ -390,7 +390,8 @@ CREATE TABLE workspace_agents (
|
||||
instance_metadata jsonb,
|
||||
resource_metadata jsonb,
|
||||
directory character varying(4096) DEFAULT ''::character varying NOT NULL,
|
||||
version text DEFAULT ''::text NOT NULL
|
||||
version text DEFAULT ''::text NOT NULL,
|
||||
last_connected_replica_id uuid
|
||||
);
|
||||
|
||||
COMMENT ON COLUMN workspace_agents.version IS 'Version tracks the version of the currently running workspace agent. Workspace agents register their version upon start.';
|
||||
|
||||
Reference in New Issue
Block a user