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
Copy file name to clipboardExpand all lines: docs/telemetry-events.md
+32Lines changed: 32 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1310,6 +1310,38 @@ void
1310
1310
}
1311
1311
```
1312
1312
1313
+
### startWork/open
1314
+
1315
+
> Sent when the user opens Start Work; use `instance` to correlate a StartWork "session"
1316
+
1317
+
```typescript
1318
+
{
1319
+
'instance': number
1320
+
}
1321
+
```
1322
+
1323
+
### startWork/opened
1324
+
1325
+
> Sent when the launchpad is opened; use `instance` to correlate a StartWork "session"
1326
+
1327
+
```typescript
1328
+
{
1329
+
'instance': number,
1330
+
'connected': false|true
1331
+
}
1332
+
```
1333
+
1334
+
### startWork/steps/connect
1335
+
1336
+
> Sent when the Start Work has "reloaded" (while open, e.g. user refreshed or back button) and is disconnected; use `instance` to correlate a Start Work "session"
1337
+
1338
+
```typescript
1339
+
{
1340
+
'instance': number,
1341
+
'connected': false|true
1342
+
}
1343
+
```
1344
+
1313
1345
### openReviewMode
1314
1346
1315
1347
> Sent when a PR review was started in the inspect overview
Copy file name to clipboardExpand all lines: src/constants.telemetry.ts
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -304,6 +304,17 @@ export type TelemetryEvents = {
304
304
duration: number;
305
305
};
306
306
307
+
/** Sent when the user opens Start Work; use `instance` to correlate a StartWork "session" */
308
+
'startWork/open': StartWorkEventDataBase;
309
+
/** Sent when the launchpad is opened; use `instance` to correlate a StartWork "session" */
310
+
'startWork/opened': StartWorkEventData&{
311
+
connected: boolean;
312
+
};
313
+
/** Sent when the Start Work has "reloaded" (while open, e.g. user refreshed or back button) and is disconnected; use `instance` to correlate a Start Work "session" */
314
+
'startWork/steps/connect': StartWorkEventData&{
315
+
connected: boolean;
316
+
};
317
+
307
318
/** Sent when a PR review was started in the inspect overview */
308
319
openReviewMode: {
309
320
provider: string;
@@ -441,6 +452,14 @@ export type CommandEventData =
0 commit comments