Add more telemetry for sql database projects (#18751)

* add more telemetry for sql database projects

* add publishToContainer events

* send target platform when publishing

* add duration for createProjectFromDb and updateProjectFromDb
This commit is contained in:
Kim Santiago
2022-03-17 16:44:10 -07:00
committed by GitHub
parent 6c51b934f9
commit 3071a7b710
2 changed files with 39 additions and 2 deletions

View File

@@ -26,11 +26,17 @@ export enum TelemetryActions {
deleteObjectFromProject = 'deleteObjectFromProject',
editProjectFile = 'editProjectFile',
addItemFromTree = 'addItemFromTree',
addExistingItem = 'addExistingItem',
excludeFromProject = 'excludeFromProject',
projectSchemaCompareCommandInvoked = 'projectSchemaCompareCommandInvoked',
publishProject = 'publishProject',
build = 'build',
updateProjectForRoundtrip = 'updateProjectForRoundtrip',
changePlatformType = 'changePlatformType',
updateSystemDatabaseReferencesInProjFile = 'updateSystemDatabaseReferencesInProjFile'
updateSystemDatabaseReferencesInProjFile = 'updateSystemDatabaseReferencesInProjFile',
startAddSqlBinding = 'startAddSqlBinding',
finishAddSqlBinding = 'finishAddSqlBinding',
createProjectFromDatabase = 'createProjectFromDatabase',
updateProjectFromDatabase = 'updateProjectFromDatabase',
publishToContainer = 'publishToContainer'
}