Browse Source

add a few more metrics to debug

Blake Blackshear 5 years ago
parent
commit
088bd18adb
1 changed files with 5 additions and 0 deletions
  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')