You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From time to time I run into issues with results in aggregate table for certain metrics. This usually happens when the count of measures fluctuates over time. E.g., I have a script, that usually takes 1 measures/minute, but intentionally might speed up to 15 measures/minute. In these times the aggregate values often get completely out of range. I checked data for these periods - content looks fine (happy to provide the raw data if needed).
Workaround that works for me:
Comment line 276 of Aggregation.php: /* 'SUM(agg.val_by_time) / (MAX(agg.timestamp) - MIN(agg.prev_timestamp)), ' . */
The text was updated successfully, but these errors were encountered:
From time to time I run into issues with results in aggregate table for certain metrics. This usually happens when the count of measures fluctuates over time. E.g., I have a script, that usually takes 1 measures/minute, but intentionally might speed up to 15 measures/minute. In these times the aggregate values often get completely out of range. I checked data for these periods - content looks fine (happy to provide the raw data if needed).
Workaround that works for me:
Comment line 276 of Aggregation.php:
/* 'SUM(agg.val_by_time) / (MAX(agg.timestamp) - MIN(agg.prev_timestamp)), ' . */
The text was updated successfully, but these errors were encountered: