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
@@ -1321,6 +1321,38 @@ void
1321
1321
}
1322
1322
```
1323
1323
1324
+
### startWork/open
1325
+
1326
+
> Sent when the user opens Start Work; use `instance` to correlate a StartWork "session"
1327
+
1328
+
```typescript
1329
+
{
1330
+
'instance': number
1331
+
}
1332
+
```
1333
+
1334
+
### startWork/opened
1335
+
1336
+
> Sent when the launchpad is opened; use `instance` to correlate a StartWork "session"
1337
+
1338
+
```typescript
1339
+
{
1340
+
'instance': number,
1341
+
'connected': false|true
1342
+
}
1343
+
```
1344
+
1345
+
### startWork/steps/connect
1346
+
1347
+
> 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"
1348
+
1349
+
```typescript
1350
+
{
1351
+
'instance': number,
1352
+
'connected': false|true
1353
+
}
1354
+
```
1355
+
1324
1356
### openReviewMode
1325
1357
1326
1358
> 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
@@ -311,6 +311,17 @@ export type TelemetryEvents = {
311
311
duration: number;
312
312
};
313
313
314
+
/** Sent when the user opens Start Work; use `instance` to correlate a StartWork "session" */
315
+
'startWork/open': StartWorkEventDataBase;
316
+
/** Sent when the launchpad is opened; use `instance` to correlate a StartWork "session" */
317
+
'startWork/opened': StartWorkEventData&{
318
+
connected: boolean;
319
+
};
320
+
/** 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" */
321
+
'startWork/steps/connect': StartWorkEventData&{
322
+
connected: boolean;
323
+
};
324
+
314
325
/** Sent when a PR review was started in the inspect overview */
315
326
openReviewMode: {
316
327
provider: string;
@@ -451,6 +462,14 @@ export type CommandEventData =
0 commit comments