-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Currently the following telemetry events have been added - A telemetry event on launch - A telemetry event on exit (including exit code) - A telemetry event for each command executed including whether or not it was successful - Telemetry events for the init commands to start to build a funnel for that flow to identify common failure points - A telemetry event about the status of loading and parsing a saved config.json - Abstracts away the actual telemetry system and code used. The goal is to change this in the near future - Adds a CI/CD option to (for now) enable or disable telemetry. Telemetry is disabled by default - Added CI/CD configuration to switch to using the production telemetry tenant instead of the developer one - Added some flow charts using Markdown and Mermaid with the current init flow, a proposed simplified init flow, and a more detailed current flow that tries to capture method calls as well - Fixed a bug in the LoginHelpers flow where it would not properly clear previous text - Fixed a bug in the code that verified the saved config.json that was not handling empty or invalid JSON
- Loading branch information
1 parent
aad961d
commit 933810f
Showing
43 changed files
with
2,368 additions
and
380 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 |
---|---|---|
|
@@ -8,4 +8,5 @@ | |
**/obj/* | ||
ideas/website/node_modules/** | ||
testresults/** | ||
**/launchSettings.json | ||
**/launchSettings.json | ||
*.user |
This file was deleted.
Oops, something went wrong.
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,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<clear /> | ||
<add key="CarbonSpx" value="https://msasg.pkgs.visualstudio.com/Skyman/_packaging/CarbonSpx/nuget/v3/index.json" /> | ||
</packageSources> | ||
</configuration> |
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
Oops, something went wrong.