-
Notifications
You must be signed in to change notification settings - Fork 676
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7739 from dibarbet/activation_telemetry
Improve activation telemetry to track down when dropoffs occur
- Loading branch information
Showing
3 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for license information. | ||
*--------------------------------------------------------------------------------------------*/ | ||
|
||
/** | ||
* Defines all telemetry event names to ensure we do not have overlapping events. | ||
*/ | ||
export enum TelemetryEventNames { | ||
// Common extension events | ||
CSharpActivated = 'CSharpActivated', | ||
|
||
// Events related to the roslyn language server. | ||
ClientInitialize = 'roslyn/clientInitialize', | ||
ClientServerStart = 'roslyn/clientServerInitialize', | ||
AcquiredRuntime = 'roslyn/acquiredRuntime', | ||
LaunchedServer = 'roslyn/launchedServer', | ||
ClientConnected = 'roslyn/clientConnected', | ||
} |