-
Notifications
You must be signed in to change notification settings - Fork 23
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
Add collection time bucket to GroupedTableAppenderResponse #33
Comments
Another option: the |
That's an interesting feature. I tried to achieve the same with |
Thank you! In that case, I think my second post could be used as a workaround - appending to the target table instead of merging and using the Upload interval as the time bucket (along with |
Sure, this can be done! Let me work out something and I'll get back to you |
I'd like to trend aggregated data for insights over time.
Example:
XE definition
json config (simplified)
Current
It will group by
database_id
sumduration
of waits. For each collection it will then merge with what's in the table so I get total waits per DB since the collection started (similar to how SQL Server tracks wait stats since last restart)Ideal
Introduce a date bucket syntax for the
collection_time
columnFor example:
So instead of
collection_time
, I'd have something likebin(collection_time, 5m)
and have the aggregates in 5-minute intervals.The text was updated successfully, but these errors were encountered: