add telemetry event comments and owner (#149070)

This commit is contained in:
Martin Aeschlimann
2022-05-17 15:20:02 +02:00
committed by GitHub
parent f2380f2c90
commit caa463191f
4 changed files with 8 additions and 15 deletions

View File

@@ -242,7 +242,9 @@ export function startClient(context: ExtensionContext, newLanguageClient: Langua
if (runtime.telemetry && uri.authority === 'schema.management.azure.com') {
/* __GDPR__
"json.schema" : {
"schemaURL" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
"owner": "aeschli",
"comment": "Measure the use of the Azure resource manager schemas",
"schemaURL" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "comment": "The azure schema URL that was requested." }
}
*/
runtime.telemetry.sendTelemetryEvent('json.schema', { schemaURL: uriPath });