-
Notifications
You must be signed in to change notification settings - Fork 535
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
Summary data: Notes based on observation of telemetry data & code #9635
Comments
#1. Done. #2. there is no need to have that constant summaryAck #3 As for avg_Data_opsSinceLastSummary | avg_Data_totalBlobSize showing on Summarize, it should happen after they update their runtime version. See below. union Office_Fluid_FluidRuntime_*
Here are the builds where it starts to be populated (0.57.2):
#4 -The large numbers comes from the fact we store the time in ms. Ex.
|
Hey @NicholasCouri , any chance you can provide some insights here on what was wrong with # 4 item from above? |
@vladsud - Working on it |
Why do we need to events with exactly same name in same function? I think you can leverage first one just fine - they represent the same starting point in time.
union Office_Fluid_FluidRuntime_*
| where Event_Time > ago(7d)
| where Data_eventName == "fluid:telemetry:Summarizer:Running:Summarize_end"
| extend WB = Data_hostScenarioName contains "Whiteboard"
| summarize count(), avg(Data_timeSinceLastAttempt), avg(Data_opsSinceLastSummary), avg(Data_totalBlobSize), avg(Data_duration)
by Data_eventName, WB
Note that if we look at fluid:telemetry:Summarizer:Running:GenerateSummary data, we will see that Whiteboard has both opsSinceLastSummary & timeSinceLastAttempt payload. So maybe it's a mix of different versions and their format that screws the data.
The text was updated successfully, but these errors were encountered: