diff --git a/ci/start_emu_headless.sh b/ci/start_emu_headless.sh
index 3f29818d2625f8c8c7a66b68a53db94f60d8799c..b5947d70f1d3ed54874cc1ff53c260d5dee5b598 100755
--- a/ci/start_emu_headless.sh
+++ b/ci/start_emu_headless.sh
@@ -39,7 +39,7 @@ hw_accel_flag=$(check_hardware_acceleration)
 
 function launch_emulator () {
     adb devices | grep emulator | cut -f1 | xargs -I {} adb -s "{}" emu kill
-    options="@${emulator_name} -no-window -no-snapshot -noaudio -no-boot-anim -memory 2048 ${hw_accel_flag} -camera-back none"
+    options="@${emulator_name} -no-window -no-snapshot -noaudio -no-boot-anim -memory 2048 ${hw_accel_flag} -camera-back none -no-metrics"
     if [[ "$OSTYPE" == *linux* ]]; then
         echo "${OSTYPE}: emulator ${options} -gpu off"
         nohup emulator $options -gpu off &