You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fixed
Telemetry uploads are now idempotent, ending duplicate dashboard rows.
The durable startup resend re-POSTs every pending row, and a client can spawn
several MCP server processes at once, so the same logical event could be
POSTed more than once — the payload carried no identifier and the dashboard
inserted every POST as a new row. Each recorded event now carries a stable EventId (GUID) that is sent with the upload; the dashboard dedupes on it via
a unique index plus an idempotent insert, so a re-send collapses to a no-op.
Older clients that send no EventId, and older dashboards that ignore the
field, keep working unchanged.