You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"The number of prebuilt workspaces that have been created to meet the desired count set by presets.",
20
+
"Total number of prebuilt workspaces that have been created to meet the desired instance count of each "+
21
+
"template preset.",
21
22
labels,
22
23
nil,
23
24
)
24
25
failedPrebuildsDesc=prometheus.NewDesc(
25
26
"coderd_prebuilt_workspaces_failed_total",
26
-
"The number of prebuilt workspaces that failed to build.",
27
+
"Total number of prebuilt workspaces that failed to build.",
27
28
labels,
28
29
nil,
29
30
)
30
31
claimedPrebuildsDesc=prometheus.NewDesc(
31
32
"coderd_prebuilt_workspaces_claimed_total",
32
-
"The number of prebuilt workspaces that were claimed by a user. Each count means that a user created a workspace using a preset and claimed a prebuilt workspace instead of a brand new workspace being created.",
33
+
"Total number of prebuilt workspaces which were claimed by users. Claiming refers to creating a workspace "+
34
+
"with a preset selected for which eligible prebuilt workspaces are available and one is reassigned to a user.",
33
35
labels,
34
36
nil,
35
37
)
36
38
desiredPrebuildsDesc=prometheus.NewDesc(
37
39
"coderd_prebuilt_workspaces_desired",
38
-
"The number of prebuilt workspaces desired by each preset of each template.",
40
+
"Target number of prebuilt workspaces that should be available for each template preset.",
39
41
labels,
40
42
nil,
41
43
)
42
44
runningPrebuildsDesc=prometheus.NewDesc(
43
45
"coderd_prebuilt_workspaces_running",
44
-
"The number of prebuilt workspaces that are currently running. Running prebuilt workspaces have successfully started, but includes both eligible and ineligible workspaces.",
46
+
"Current number of prebuilt workspaces that are in a running state. These workspaces have started "+
47
+
"successfully but may not yet be claimable by users (see coderd_prebuilt_workspaces_eligible).",
45
48
labels,
46
49
nil,
47
50
)
48
51
eligiblePrebuildsDesc=prometheus.NewDesc(
49
52
"coderd_prebuilt_workspaces_eligible",
50
-
"The number of eligible prebuilt workspaces. Eligible prebuilt workspaces are ones whose agent is marked 'ready', and can be claimed by a user.",
53
+
"Current number of prebuilt workspaces that are eligible to be claimed by users. These are workspaces that "+
54
+
"have completed their build process with their agent reporting 'ready' status.",
0 commit comments