mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-21 01:25:37 -05:00
Telemetry for Query Execution Plans (#19039)
* Adds telemetry around how the properties window is opened * Adds telemetry around accessing execution plan top operations * Adds key for viewing top operations * Adds telemetry around using the open query button and context menu item * Adds telemetry around execution plan zoom in, out, to fit, and custom * Adds telemetry around searching for nodes in execution plans * Reduces telemetry additional properties to 1. * Code review changes * Removes unnecessary export
This commit is contained in:
@@ -38,6 +38,7 @@ export const enum TelemetryView {
|
||||
AgentNotebookHistory = 'AgentNotebookHistory',
|
||||
AgentNotebooks = 'AgentNotebooks',
|
||||
ConnectionDialog = 'ConnectionDialog',
|
||||
ExecutionPlan = 'ExecutionPlan',
|
||||
ExtensionHost = 'ExtensionHost',
|
||||
ExtensionRecommendationDialog = 'ExtensionRecommendationDialog',
|
||||
Notebook = 'Notebook',
|
||||
@@ -55,6 +56,7 @@ export const enum TelemetryAction {
|
||||
AddServerGroup = 'AddServerGroup',
|
||||
adsCommandExecuted = 'adsCommandExecuted',
|
||||
ConnectToServer = 'ConnectToServer',
|
||||
CustomZoom = 'CustomZoom',
|
||||
BackupCreated = 'BackupCreated',
|
||||
DashboardNavigated = 'DashboardNavigated',
|
||||
DatabaseConnected = 'DatabaseConnected',
|
||||
@@ -69,6 +71,7 @@ export const enum TelemetryAction {
|
||||
CancelQuery = 'CancelQuery',
|
||||
ChartCreated = 'ChartCreated',
|
||||
Click = 'Click',
|
||||
FindNode = 'FindNode',
|
||||
FirewallRuleRequested = 'FirewallRuleCreated',
|
||||
GenerateScript = 'GenerateScript',
|
||||
GeneratePreviewReport = 'GeneratePreviewReport',
|
||||
@@ -82,6 +85,8 @@ export const enum TelemetryAction {
|
||||
NewQuery = 'NewQuery',
|
||||
ObjectExplorerExpand = 'ObjectExplorerExpand',
|
||||
Open = 'Open',
|
||||
OpenQuery = 'OpenQuery',
|
||||
OpenExecutionPlanProperties = 'OpenExecutionPlanProperties',
|
||||
PublishChanges = 'PublishChanges',
|
||||
RestoreRequested = 'RestoreRequested',
|
||||
RunAgentJob = 'RunAgentJob',
|
||||
@@ -90,9 +95,13 @@ export const enum TelemetryAction {
|
||||
RunQueryString = 'RunQueryString',
|
||||
ShowChart = 'ShowChart',
|
||||
StopAgentJob = 'StopAgentJob',
|
||||
ViewTopOperations = 'ViewTopOperations',
|
||||
WizardPagesNavigation = 'WizardPagesNavigation',
|
||||
SearchStarted = 'SearchStarted',
|
||||
SearchCompleted = 'SearchCompleted'
|
||||
SearchCompleted = 'SearchCompleted',
|
||||
ZoomIn = 'ZoomIn',
|
||||
ZoomOut = 'ZoomOut',
|
||||
ZoomToFit = 'ZoomToFIt'
|
||||
}
|
||||
|
||||
export const enum NbTelemetryAction {
|
||||
|
||||
Reference in New Issue
Block a user