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
+43-29Lines changed: 43 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -898,6 +898,14 @@ or
898
898
}
899
899
```
900
900
901
+
### home/createBranch
902
+
903
+
> Sent when the user chooses to create a branch from the home view
904
+
905
+
```typescript
906
+
void
907
+
```
908
+
901
909
### home/preview/toggled
902
910
903
911
> Sent when the new Home view preview is toggled on/off
@@ -936,6 +944,14 @@ or
936
944
}
937
945
```
938
946
947
+
### home/startWork
948
+
949
+
> Sent when the user chooses to start work on an issue from the home view
950
+
951
+
```typescript
952
+
void
953
+
```
954
+
939
955
### launchpad/action
940
956
941
957
> Sent when the user takes an action on a launchpad item
@@ -1525,6 +1541,19 @@ void
1525
1541
}
1526
1542
```
1527
1543
1544
+
### startWork/action
1545
+
1546
+
> Sent when the user chooses to manage integrations
1547
+
1548
+
```typescript
1549
+
{
1550
+
'action': 'connect'|'manage',
1551
+
'connected': boolean,
1552
+
'instance': number,
1553
+
'items.count': number
1554
+
}
1555
+
```
1556
+
1528
1557
### startWork/issue/action
1529
1558
1530
1559
> Sent when the user takes an action on a StartWork issue
@@ -1535,8 +1564,7 @@ void
1535
1564
'connected': boolean,
1536
1565
'instance': number,
1537
1566
[`item.${string}`]: string|number|boolean,
1538
-
'items.count': number,
1539
-
'type': 'branch'|'issue'
1567
+
'items.count': number
1540
1568
}
1541
1569
```
1542
1570
@@ -1549,8 +1577,7 @@ void
1549
1577
'connected': boolean,
1550
1578
'instance': number,
1551
1579
[`item.${string}`]: string|number|boolean,
1552
-
'items.count': number,
1553
-
'type': 'branch'|'issue'
1580
+
'items.count': number
1554
1581
}
1555
1582
```
1556
1583
@@ -1560,8 +1587,7 @@ void
1560
1587
1561
1588
```typescript
1562
1589
{
1563
-
'instance': number,
1564
-
'type': 'branch'|'issue'
1590
+
'instance': number
1565
1591
}
1566
1592
```
1567
1593
@@ -1573,56 +1599,44 @@ void
1573
1599
{
1574
1600
'connected': boolean,
1575
1601
'instance': number,
1576
-
'items.count': number,
1577
-
'type': 'branch'|'issue'
1602
+
'items.count': number
1578
1603
}
1579
1604
```
1580
1605
1581
1606
### startWork/steps/connect
1582
1607
1583
-
```typescript
1584
-
{
1585
-
'connected': boolean,
1586
-
'instance': number,
1587
-
'items.count': number,
1588
-
'type': 'branch'|'issue'
1589
-
}
1590
-
```
1591
-
1592
-
### startWork/steps/issue
1608
+
> Sent when the user reaches the "connect an integration" step of Start Work
1593
1609
1594
1610
```typescript
1595
1611
{
1596
1612
'connected': boolean,
1597
1613
'instance': number,
1598
-
'items.count': number,
1599
-
'type': 'branch'|'issue'
1614
+
'items.count': number
1600
1615
}
1601
1616
```
1602
1617
1603
-
### startWork/steps/type
1618
+
### startWork/steps/issue
1604
1619
1605
-
> 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"
1620
+
> Sent when the user reaches the "choose an issue" step of Start Work
1606
1621
1607
1622
```typescript
1608
1623
{
1609
1624
'connected': boolean,
1610
1625
'instance': number,
1611
-
'items.count': number,
1612
-
'type': 'branch'|'issue'
1626
+
'items.count': number
1613
1627
}
1614
1628
```
1615
1629
1616
-
### startWork/type/chosen
1630
+
### startWork/title/action
1617
1631
1618
-
> Sent when the user chooses an option to start work in the first step
1632
+
> Sent when the user chooses to connect an integration
0 commit comments