fix metrics

This commit is contained in:
vee1e 2025-06-30 15:28:54 +05:30
parent a5286cbb48
commit de1c3fd73c

View file

@ -163,28 +163,13 @@ mongosh --eval "db.runCommand('ping')"
Below is a real example of metrics collected for uploading 9 forms (each with ~400 questions and 3-10 options per question) on two different machines:
### HP Laptop 14s Ryzen 5 5500U 16GB RAM/512GB SSD
| Metric | Time | Description |
| ------------------------------- | ----------------------- | ------------------------------------------------ |
| `validation_time_per_form` | 120-260ms | Time to validate each form file |
| `form_process_time` | 240-1080ms | Time to process and save one form |
| `questions_process_time` | 1.6-2.92s | Time to process and save all questions in a form |
| `avg_one_question_process_time` | 4-7ms | Average time to process one question |
| `avg_one_option_process_time` | 3.6-4.5ms | Average time to process one option |
| `all_forms_batch_process_time` | 15.63s | Time to process all forms in the batch |
| `total_forms` | 9 | Number of forms processed in the batch |
| `avg_one_form_process_time` | 1.74s | Average time to process one form in the batch |
### M3 Pro MacBook Pro 18GB RAM/512GB SSD
| Metric | Time | Description |
| ------------------------------- | ----------------------- | ------------------------------------------------ |
| `validation_time_per_form` | 51.28ms (46.58-59.83ms) | Time to validate each form file |
| `form_process_time` | 0.73ms (0.53-1.19ms) | Time to process and save one form |
| `questions_process_time` | 62.46ms (55.66-73.13ms) | Time to process and save all questions in a form |
| `avg_one_question_process_time` | 0.15ms (0.14-0.18ms) | Average time to process one question |
| `avg_one_option_process_time` | 0.15ms (0.14-0.15ms) | Average time to process one option |
| `all_forms_batch_process_time` | 2.16s (1.96-2.34s) | Time to process all forms in the batch |
| `total_forms` | 9 | Number of forms processed in the batch |
| `avg_one_form_process_time` | 240.3ms (217.25-259.99) | Average time to process one form in the batch |
| Description | Ryzen 5 5500U | M3 Pro |
| ------------------------------------------------ | ----------------------- | ----------------------- |
| Time to validate each form file | 120-260ms | 51.28ms (46.58-59.83ms) |
| Time to process and save one form | 240-1080ms | 0.73ms (0.53-1.19ms) |
| Time to process and save all questions in a form | 1.6-2.92s | 62.46ms (55.66-73.13ms) |
| Average time to process one question | 4-7ms | 0.15ms (0.14-0.18ms) |
| Average time to process one option | 3.6-4.5ms | 0.15ms (0.14-0.15ms) |
| Time to process all forms in the batch | 15.63s | 2.16s (1.96-2.34s) |
| Number of forms processed in the batch | 9 | 9 |
| Average time to process one form in the batch | 1.74s | 240.3ms (217.25-259.99) |