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 prebuilds that have been created to meet the desired count set by presets.",
19
+
"coderd_prebuilt_workspaces_created_total",
20
+
"The number of prebuilt workspaces that have been created to meet the desired count set by presets.",
21
21
labels,
22
22
nil,
23
23
)
24
24
failedPrebuildsDesc=prometheus.NewDesc(
25
-
"coderd_prebuilds_failed_total",
26
-
"The number of prebuilds that failed to build during creation.",
25
+
"coderd_prebuilt_workspaces_failed_total",
26
+
"The number of prebuilt workspaces that failed to build.",
27
27
labels,
28
28
nil,
29
29
)
30
30
claimedPrebuildsDesc=prometheus.NewDesc(
31
-
"coderd_prebuilds_claimed_total",
32
-
"The number of prebuilds that were claimed by a user. Each count means that a user created a workspace using a preset and was assigned a prebuild instead of a brand new workspace.",
33
-
labels,
34
-
nil,
35
-
)
36
-
usedPresetsDesc=prometheus.NewDesc(
37
-
"coderd_prebuilds_used_presets",
38
-
"The number of times a preset was used to build a prebuild.",
31
+
"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.",
39
33
labels,
40
34
nil,
41
35
)
42
36
desiredPrebuildsDesc=prometheus.NewDesc(
43
-
"coderd_prebuilds_desired",
44
-
"The number of prebuilds desired by each preset of each template.",
37
+
"coderd_prebuilt_workspaces_desired",
38
+
"The number of prebuilt workspaces desired by each preset of each template.",
45
39
labels,
46
40
nil,
47
41
)
48
42
runningPrebuildsDesc=prometheus.NewDesc(
49
-
"coderd_prebuilds_running",
50
-
"The number of prebuilds that are currently running. Running prebuilds have successfully started, but they may not be ready to be claimed by a user yet.",
43
+
"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.",
51
45
labels,
52
46
nil,
53
47
)
54
48
eligiblePrebuildsDesc=prometheus.NewDesc(
55
-
"coderd_prebuilds_eligible",
56
-
"The number of eligible prebuilds. Eligible prebuilds are prebuilds that are ready to be claimed by a user.",
49
+
"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.",
0 commit comments