Technical Performance
Devices sending the most errors
SELECT
device,
sum(error_error_count) as total_errors
-- sum(error_critical_count)
-- sum(error_warning_count)
-- sum(error_info_count)
-- sum(error_debug_count)
FROM
`checkpoints.player_checkpoint`
WHERE
checkpoint = "2025-10-01"
AND game_id = 1234
GROUP BY 1
ORDER BY 2 DESC
LIMIT 1