copilot-metrics-viewer
copilot-metrics-viewer copied to clipboard
The total line accepted is always 0 or less than the total acceptance
I am encountering an issue with the Abnormal Data:
- Total Lines Accepted vs. Total Acceptances Count: It is illogical that the total lines accepted are fewer than the total acceptances count. However, what I actually observe is that the total lines accepted are always 0, and in some cases, they are less than the total acceptances count.
Example JSON:
JSON
{ "day": "2024-09-25", "total_suggestions_count": 6, "total_acceptances_count": 3, "total_lines_suggested": 19, "total_lines_accepted": 0, "total_active_users": 2, "total_chat_acceptances": 0, "total_chat_turns": 0, "total_active_chat_users": 0, "breakdown": [ { "language": "c#", "editor": "visual_studio", "suggestions_count": 6, "acceptances_count": 3, "lines_suggested": 19, "lines_accepted": 0, "active_users": 2 } ] }
does anyone know what is the potential cause for the above issue?