File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -1149,6 +1149,7 @@ type Snapshot struct {
1149
1149
NetworkEvents []NetworkEvent `json:"network_events"`
1150
1150
Organizations []Organization `json:"organizations"`
1151
1151
TelemetryItems []TelemetryItem `json:"telemetry_items"`
1152
+ UserTailnetConnections []UserTailnetConnection `json:"user_tailnet_connections"`
1152
1153
}
1153
1154
1154
1155
// Deployment contains information about the host running Coder.
@@ -1711,6 +1712,16 @@ type TelemetryItem struct {
1711
1712
UpdatedAt time.Time `json:"updated_at"`
1712
1713
}
1713
1714
1715
+ type UserTailnetConnection struct {
1716
+ ConnectedAt time.Time `json:"connected_at"`
1717
+ DisconnectedAt * time.Time `json:"disconnected_at"`
1718
+ UserID string `json:"user_id"`
1719
+ PeerID string `json:"peer_id"`
1720
+ DeviceID * string `json:"device_id"`
1721
+ DeviceOS * string `json:"device_os"`
1722
+ CoderDesktopVersion * string `json:"coder_desktop_version"`
1723
+ }
1724
+
1714
1725
type noopReporter struct {}
1715
1726
1716
1727
func (* noopReporter ) Report (_ * Snapshot ) {}
You can’t perform that action at this time.
0 commit comments