Skip to content

Commit 198c349

Browse files
committed
update
1 parent c5d008a commit 198c349

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

analysis/kusto/06-weekly-health-summary.kql

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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");
2625
let 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,

0 commit comments

Comments
 (0)