diff --git a/components/dashboard/src/start/StartWorkspace.tsx b/components/dashboard/src/start/StartWorkspace.tsx index f5e47bca0e5e13..114e2bfed3e714 100644 --- a/components/dashboard/src/start/StartWorkspace.tsx +++ b/components/dashboard/src/start/StartWorkspace.tsx @@ -65,6 +65,24 @@ export default class StartWorkspace extends React.Component window.addEventListener('DOMContentLoa ideService.onDidChange(() => { updateLoadingState(); updateCurrentFrame(); + + window.gitpod.service.server.trackEvent({ + event: "status_rendered", + properties: { + workspaceId: gitpodServiceClient.info.latestInstance?.workspaceId, + phase: `ide-${ideService.state}`, + error: ideService.failureCause?.message, + }, + }); }); //#endregion