Parcourir la source

add a few more metrics to debug

Blake Blackshear il y a 5 ans
Parent
commit
088bd18adb
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  1. 5 0
      detect_objects.py

+ 5 - 0
detect_objects.py

@@ -194,6 +194,11 @@ def main():
             'inference_speed': round(tflite_process.avg_inference_speed.value*1000, 2)
         }
 
+        rc = plasma_process.poll()
+        stats['plasma_store_rc'] = rc
+
+        stats['tracked_objects_queue'] = tracked_objects_queue.qsize()
+
         return jsonify(stats)
 
     @app.route('/<camera_name>/<label>/best.jpg')