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
The total statistic doesn't seem to be particularly useful and worse most users seem to interpret it incorrectly. Currently, the total statistic is the sum of all datapoints shown for a given time series on the graph. Most users I have talked with assume it is the total number of events (assuming a counter) that occurred within the time frame of the chart.
Options:
Just remove total. This was done several years ago and it got re-added when someone complained. Though it is quite likely their interpretation of the value was wrong.
Change the value reported with total to try and match the more common user interpretation. This is possible for simple expressions using sum over counters as the aggregate. With something like max or avg it would be an estimate of the total number for a single item. However, if combined with non-counter data it wouldn't be meaningful. Neither make much sense with gauges.
Add support for some sort of legend stat control similar to the current :legend operator. It would be used to specify the stats format. We can then remote total by default and allow users to specify a total variant for counters. This could also help with requests to have some stats, but reduce the amount of vertical space taken up with the statistics. Complications:
Different statistics per line can make the legend rendering more complex. However it is likely needed for correctness as things like total don't really make sense for gauges.
It would be up to the user to make sure it made sense for the input line. One advantage of Option 2 if it could be done cleanly, is it would be more automatic based on the input data.
The text was updated successfully, but these errors were encountered:
Option 3 seems good. The default could be based on the statistic tag, or the UI could interpret the statistic tag to set a reasonable value. For consistent formatting, possibly it could use "N/A" for invalid lines instead of dropping the entry.
The total statistic doesn't seem to be particularly useful and worse most users seem to interpret it incorrectly. Currently, the total statistic is the sum of all datapoints shown for a given time series on the graph. Most users I have talked with assume it is the total number of events (assuming a counter) that occurred within the time frame of the chart.
Options:
:legend
operator. It would be used to specify the stats format. We can then remote total by default and allow users to specify a total variant for counters. This could also help with requests to have some stats, but reduce the amount of vertical space taken up with the statistics. Complications:The text was updated successfully, but these errors were encountered: