Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 616e1d7 commit be55dcdCopy full SHA for be55dcd
cli/list.go
@@ -24,6 +24,7 @@ type workspaceListRow struct {
24
WorkspaceName string `json:"-" table:"workspace,default_sort"`
25
Template string `json:"-" table:"template"`
26
Status string `json:"-" table:"status"`
27
+ Healthy bool `json:"-" table:"healthy"`
28
LastBuilt string `json:"-" table:"last built"`
29
Outdated bool `json:"-" table:"outdated"`
30
StartsAt string `json:"-" table:"starts at"`
@@ -57,6 +58,7 @@ func workspaceListRowFromWorkspace(now time.Time, usersByID map[uuid.UUID]coders
57
58
WorkspaceName: user.Username + "/" + workspace.Name,
59
Template: workspace.TemplateName,
60
Status: status,
61
+ Healthy: workspace.Health.Healthy,
62
LastBuilt: durationDisplay(lastBuilt),
63
Outdated: workspace.Outdated,
64
StartsAt: autostartDisplay,
0 commit comments