microsoft-performance-toolkit-sdk icon indicating copy to clipboard operation
microsoft-performance-toolkit-sdk copied to clipboard

Is there any documentation for AggregationOverTime?

Open 0xhellord opened this issue 1 year ago • 0 comments

AggregationOverTime.cs:

    public enum AggregationOverTime
    {
        //
        // TODO: the documentation of these values needs to have additional detail
        //       added.
        //

        /// <summary>
        ///     Aggregates the current values.
        /// </summary>
        Current,

        /// <summary>
        ///     Aggregates the rate of the values.
        /// </summary>
        Rate,

        /// <summary>
        ///     Performs a cumulative aggregation.
        /// </summary>
        Cumulative,

        /// <summary>
        ///     Performs an outstanding aggregation.
        /// </summary>
        Outstanding,

        /// <summary>
        ///     Performs an aggregation of the peak.
        /// </summary>
        OutstandingPeak,
    }

Is there any documentation for rate, Outstanding, OutstandingPeak? Thx!

0xhellord avatar Nov 24 '24 19:11 0xhellord