File tree 1 file changed +6
-6
lines changed 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -119,26 +119,26 @@ Returns PLEG (pod lifecycle event generator) latency metrics. This represents t
119
119
120
120
### OpenShift build related queries
121
121
122
- > count(openshift_build_active_time_seconds{phase="running "} < time() - 600)
122
+ > count(openshift_build_active_time_seconds{phase="Running "} < time() - 600)
123
123
124
124
Returns the number of builds that have been running for more than 10 minutes (600 seconds).
125
125
126
- > count(openshift_build_active_time_seconds{phase="pending "} < time() - 600)
126
+ > count(openshift_build_active_time_seconds{phase="Pending "} < time() - 600)
127
127
128
128
Returns the number of build that have been waiting at least 10 minutes (600 seconds) to start.
129
129
130
- > sum(openshift_build_total{phase="failed "})
130
+ > sum(openshift_build_total{phase="Failed "})
131
131
132
132
Returns the number of failed builds, regardless of the failure reason.
133
133
134
- > openshift_build_total{phase="failed",reason="fetchsourcefailed "}
134
+ > openshift_build_total{phase="failed",reason="FetchSourceFailed "}
135
135
136
136
Returns the number of failed builds because of problems retrieving source from the associated Git repository.
137
137
138
- > sum(openshift_build_total{phase="complete "})
138
+ > sum(openshift_build_total{phase="Complete "})
139
139
140
140
Returns the number of successfully completed builds.
141
141
142
- > openshift_build_total{phase="failed "} offset 5m
142
+ > openshift_build_total{phase="Failed "} offset 5m
143
143
144
144
Returns the failed builds totals, per failure reason, from 5 minutes ago.
You can’t perform that action at this time.
0 commit comments