Skip to content
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

DeltaLatency events are not frequent enough in automation #10398

Closed
vladsud opened this issue May 22, 2022 · 1 comment
Closed

DeltaLatency events are not frequent enough in automation #10398

vladsud opened this issue May 22, 2022 · 1 comment
Assignees
Labels
ado Issue is tracked in the internal Azure DevOps backlog bug Something isn't working
Milestone

Comments

@vladsud
Copy link
Contributor

vladsud commented May 22, 2022

union office_fluid_ffautomation_*
| where Event_Time > ago(14d)
| where Data_eventName contains "DeltaLatency"
| summarize count(), toint(avg(Data_duration)), toint(percentile(Data_duration, 95)) by Data_driverType

This gives me 499 hits, only for FRS.
We need to adjust how often we collect it to make sure automation collects enough data to be useful.
Example of investigation where it would be super useful - #8908

At the same time we should be careful not to submit too much data in production.
Likely it's a problem of when we collect it, i.e. something like count % 1000 === 0 to be changed to count % 1000 === 1 to ensure every connection records one data point (that's pure guess)

@vladsud vladsud added the bug Something isn't working label May 22, 2022
@vladsud vladsud added this to the June 2022 milestone May 22, 2022
@NicholasCouri
Copy link
Contributor

@curtisman curtisman added the ado Issue is tracked in the internal Azure DevOps backlog label Jun 15, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ado Issue is tracked in the internal Azure DevOps backlog bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants