-
Notifications
You must be signed in to change notification settings - Fork 151
[Dynamix Instrumentation] Fix DebuggerUploader adaptive flush interval #7831
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Execution-Time Benchmarks Report ⏱️Execution-time results for samples comparing This PR (7831) and master. ✅ No regressions detected - check the details below Full Metrics ComparisonFakeDbCommand
HttpMessageHandler
Comparison explanationExecution-time benchmarks measure the whole time it takes to execute a program, and are intended to measure the one-off costs. Cases where the execution time results for the PR are worse than latest master results are highlighted in **red**. The following thresholds were used for comparing the execution times:
Note that these results are based on a single point-in-time result for each branch. For full results, see the dashboard. Graphs show the p99 interval based on the mean and StdDev of the test run, as well as the mean value of the run (shown as a diamond below the graph). Duration chartsFakeDbCommand (.NET Framework 4.8)gantt
title Execution time (ms) FakeDbCommand (.NET Framework 4.8)
dateFormat x
axisFormat %Q
todayMarker off
section Baseline
This PR (7831) - mean (76ms) : 70, 82
master - mean (76ms) : 71, 80
section Bailout
This PR (7831) - mean (79ms) : 73, 85
master - mean (82ms) : 74, 90
section CallTarget+Inlining+NGEN
This PR (7831) - mean (1,119ms) : 1063, 1175
master - mean (1,148ms) : 1034, 1262
FakeDbCommand (.NET Core 3.1)gantt
title Execution time (ms) FakeDbCommand (.NET Core 3.1)
dateFormat x
axisFormat %Q
todayMarker off
section Baseline
This PR (7831) - mean (118ms) : 110, 126
master - mean (119ms) : 111, 127
section Bailout
This PR (7831) - mean (121ms) : 115, 127
master - mean (120ms) : 114, 126
section CallTarget+Inlining+NGEN
This PR (7831) - mean (804ms) : 765, 844
master - mean (811ms) : 767, 855
FakeDbCommand (.NET 6)gantt
title Execution time (ms) FakeDbCommand (.NET 6)
dateFormat x
axisFormat %Q
todayMarker off
section Baseline
This PR (7831) - mean (105ms) : 98, 111
master - mean (106ms) : 98, 114
section Bailout
This PR (7831) - mean (106ms) : 99, 113
master - mean (107ms) : 100, 114
section CallTarget+Inlining+NGEN
This PR (7831) - mean (748ms) : 707, 789
master - mean (763ms) : 712, 814
FakeDbCommand (.NET 8)gantt
title Execution time (ms) FakeDbCommand (.NET 8)
dateFormat x
axisFormat %Q
todayMarker off
section Baseline
This PR (7831) - mean (103ms) : 97, 109
master - mean (103ms) : 95, 111
section Bailout
This PR (7831) - mean (104ms) : 97, 111
master - mean (107ms) : 98, 116
section CallTarget+Inlining+NGEN
This PR (7831) - mean (713ms) : 683, 743
master - mean (723ms) : 693, 753
HttpMessageHandler (.NET Framework 4.8)gantt
title Execution time (ms) HttpMessageHandler (.NET Framework 4.8)
dateFormat x
axisFormat %Q
todayMarker off
section Baseline
This PR (7831) - mean (195ms) : 190, 200
master - mean (193ms) : 188, 199
section Bailout
This PR (7831) - mean (200ms) : 193, 207
master - mean (196ms) : 194, 199
section CallTarget+Inlining+NGEN
This PR (7831) - mean (1,190ms) : 1107, 1273
master - mean (1,166ms) : 1118, 1215
HttpMessageHandler (.NET Core 3.1)gantt
title Execution time (ms) HttpMessageHandler (.NET Core 3.1)
dateFormat x
axisFormat %Q
todayMarker off
section Baseline
This PR (7831) - mean (281ms) : 274, 288
master - mean (278ms) : 272, 284
section Bailout
This PR (7831) - mean (283ms) : 274, 292
master - mean (278ms) : 274, 282
section CallTarget+Inlining+NGEN
This PR (7831) - mean (947ms) : 899, 994
master - mean (951ms) : 907, 994
HttpMessageHandler (.NET 6)gantt
title Execution time (ms) HttpMessageHandler (.NET 6)
dateFormat x
axisFormat %Q
todayMarker off
section Baseline
This PR (7831) - mean (271ms) : 266, 277
master - mean (271ms) : 265, 277
section Bailout
This PR (7831) - mean (271ms) : 266, 275
master - mean (273ms) : 267, 278
section CallTarget+Inlining+NGEN
This PR (7831) - mean (929ms) : 879, 979
master - mean (925ms) : 878, 971
HttpMessageHandler (.NET 8)gantt
title Execution time (ms) HttpMessageHandler (.NET 8)
dateFormat x
axisFormat %Q
todayMarker off
section Baseline
This PR (7831) - mean (270ms) : 265, 274
master - mean (269ms) : 263, 274
section Bailout
This PR (7831) - mean (270ms) : 266, 274
master - mean (270ms) : 264, 276
section CallTarget+Inlining+NGEN
This PR (7831) - mean (853ms) : 832, 874
master - mean (865ms) : 845, 885
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Summary of changes
Fixes a bug where the adaptive flush interval in DebuggerUploaderBase never actually adapted because the interval was reinitialized on every loop iteration.
Reason for change
This bug caused our debug log to be very noisy with irrelevant messages on every timer interval, regardless of whether the interval changed or not.