File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,8 +21,7 @@ let setupResults = RawEventsVSCodeExt
2121| where isnotempty (tostring (Properties.result))
2222| summarize
2323 SetupSuccess = dcountif (VSCodeMachineId, tostring (Properties.result) == "success" ),
24- SetupError = dcountif (VSCodeMachineId, tostring (Properties.result) == "error" ),
25- MedianDurationMs = percentile(todouble (Properties.duration), 50 );
24+ SetupError = dcountif (VSCodeMachineId, tostring (Properties.result) == "error" );
2625let managerFailures = RawEventsVSCodeExt
2726| where ServerTimestamp > startDate and ServerTimestamp < endDate
2827| where EventName == "ms-python.vscode-python-envs/manager_registration.failed"
@@ -45,7 +44,6 @@ setupResults | extend _k = 1
4544 SetupSuccess,
4645 SetupError,
4746 SetupSuccessRate = round (todouble (SetupSuccess) / todouble (SetupSuccess + SetupError) * 100 , 1 ),
48- MedianSetupSec = round (MedianDurationMs / 1000 , 1 ),
4947 ManagerFailures,
5048 ManagerFailMachines,
5149 Hangs,
You can’t perform that action at this time.
0 commit comments