@@ -251,17 +251,13 @@ def on_get(self, req, resp):
251
251
) / requests_received_in_last_x_seconds_that_are_successful
252
252
253
253
prometheus_text = f"""
254
- # HELP pending_requests The number of pending requests .
255
- # TYPE pending_requests gauge
256
- pending_requests { _utils .MAIN_INDEX . count ( query = { "-1.predicted_at" : 0 , "last_predictor_success" : True }) }
254
+ # HELP total_predictor_run_for_hours Total hours the predictor has been actively running predictions since start .
255
+ # TYPE total_predictor_run_for_hours counter
256
+ total_predictor_run_for_hours { _utils .GLOBAL_METRICS_INDEX [ "total_predictor_run_for_hours" ] }
257
257
258
- # HELP failed_requests The number of failed requests.
259
- # TYPE failed_requests gauge
260
- failed_requests { _utils .MAIN_INDEX .count (query = {"last_predictor_success" : False })}
261
-
262
- # HELP successful_requests The number of failed requests.
263
- # TYPE successful_requests gauge
264
- successful_requests { _utils .MAIN_INDEX .count (query = {"-1.predicted_at" : {"$ne" : 0 }, "last_predictor_success" : True })}
258
+ # HELP total_predictor_up_for_hours Total hours the predictor has been up since start.
259
+ # TYPE total_predictor_up_for_hours counter
260
+ total_predictor_up_for_hours { _utils .GLOBAL_METRICS_INDEX ["total_predictor_up_for_hours" ]}
265
261
266
262
# HELP requests_received_in_last_x_seconds The number of requests received in last { _LAST_X_SECONDS } seconds.
267
263
# TYPE requests_received_in_last_x_seconds gauge
@@ -394,18 +390,6 @@ def on_get(self, req, resp):
394
390
}
395
391
396
392
397
- class Failed (object ):
398
- def on_get (self , req , resp ):
399
- last_n_failed = int (req .params .get ("last_n_failed" , 10 ))
400
- failed_inputs = _utils .MAIN_INDEX .search (
401
- query = {"last_predictor_success" : False },
402
- n = last_n_failed ,
403
- select_keys = ["-1.inputs" ],
404
- )
405
-
406
- resp .media = failed_inputs
407
-
408
-
409
393
app = falcon .App (
410
394
middleware = falcon .CORSMiddleware (allow_origins = "*" , allow_credentials = "*" ),
411
395
)
0 commit comments