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
Copy file name to clipboardExpand all lines: docs/metrics/introduction/metric-quantization.md
+10-28Lines changed: 10 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ import useBaseUrl from '@docusaurus/useBaseUrl';
9
9
10
10
Sumo ingests individual metric data points from your metric sources. In metric visualizations, rather than charting individual data points, Sumo presents the aggregated value of the data points received during an interval.
11
11
12
-
Quantization is the process of aggregating metric data points for time series over an interval, for example, an hour or a minute, using a particular aggregation function: `avg`, `min`, `max`, `sum`, or `count`.
12
+
Quantization is the process of aggregating metric data points for time series over an interval, for example, an hour or a minute, using a particular aggregation function: `avg`, `min`, `max`, `sum`, `count`, or `rate`.
13
13
14
14
15
15
### Quantization terminology
@@ -38,38 +38,20 @@ By default, Sumo uses the `avg` rollup type. You can specify another rollup type
38
38
39
39
We use the term rollup to refer to the aggregation function Sumo uses when quantizing metrics. This table describes the different rollup types you can select when running a query.
40
40
41
-
<table>
42
-
<tr>
43
-
<td><strong>Rollup type</strong> </td>
44
-
<td><strong>Description</strong> </td>
45
-
</tr>
46
-
<tr>
47
-
<td><code>avg</code> </td>
48
-
<td>Calculates the average value of the data points for a time series in each bucket. </td>
49
-
</tr>
50
-
<tr>
51
-
<td><code>min</code> </td>
52
-
<td>Calculates the minimum value among the data points for a time series in each bucket. </td>
53
-
</tr>
54
-
<tr>
55
-
<td><code>max</code> </td>
56
-
<td>Calculates the maximum value among the data points for a time series in each bucket. </td>
57
-
</tr>
58
-
<tr>
59
-
<td><code>sum</code></td>
60
-
<td>Calculates the sum of the values of the data points for a time series in each bucket. </td>
61
-
</tr>
62
-
<tr>
63
-
<td><code>count</code></td>
64
-
<td>Calculates the count of data points for a time series in each bucket. </td>
65
-
</tr>
66
-
</table>
41
+
| Rollup type | Description |
42
+
| :-- | :-- |
43
+
|[`avg`](/docs/metrics/metrics-operators/avg/)| Calculates the average value of the data points for a time series in each bucket. |
44
+
|[`min`](/docs/metrics/metrics-operators/min/)| Calculates the minimum value among the data points for a time series in each bucket. |
45
+
|[`max`](/docs/metrics/metrics-operators/max/)| Calculates the maximum value among the data points for a time series in each bucket. |
46
+
|[`sum`](/docs/metrics/metrics-operators/sum/)| Calculates the sum of the values of the data points for a time series in each bucket. |
47
+
|[`count`](/docs/metrics/metrics-operators/count/)| Calculates the count of data points for a time series in each bucket. |
48
+
|[`rate`](/docs/metrics/metrics-operators/rate/)| Calculates the per-second rate of change between data points in a time series in each bucket. |
67
49
68
50
Sumo quantizes metrics upon ingestion and at query time.
69
51
70
52
### Quantization at ingestion
71
53
72
-
Upon ingestion, Sumo quantizes raw metric data points to one hour resolutions for all rollup types: `avg`, `min`, `max`, `sum`, and `count`. This data is stored in one hour rollup tables in Sumo. The raw data is stored in a table referred to as the baseline table. For information about retention times, see [Metric Ingestion and Storage](/docs/metrics/manage-metric-volume/metric-ingestion-and-storage.md).
54
+
Upon ingestion, Sumo quantizes raw metric data points to one hour resolutions for all rollup types: `avg`, `min`, `max`, `sum`, `count`, and `rate`. This data is stored in one hour rollup tables in Sumo. The raw data is stored in a table referred to as the baseline table. For information about retention times, see [Metric Ingestion and Storage](/docs/metrics/manage-metric-volume/metric-ingestion-and-storage.md).
Copy file name to clipboardExpand all lines: docs/metrics/metrics-operators/quantize.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ You can use the `quantize` operator to control the Sumo’s quantization behavio
9
9
You can specify:
10
10
11
11
* The size of the time buckets across which Sumo aggregates your metrics. If you do not specify a quantization interval, Sumo determines an optimum size for time buckets, as described in [Automatic quantization at query time](../introduction/metric-quantization.md).
12
-
* The rollup type that Sumo uses to aggregate the individual data points in a time bucket, which can be one of `avg, min, max, sum,` or `count`. If you do not specify a rollup type in the `quantize` clause of your query, for each time bucket, Sumo presents the average of the data points in that bucket.
12
+
* The rollup type that Sumo uses to aggregate the individual data points in a time bucket, which can be one of `avg`, `min`, `max`, `sum`, `count`, or `rate`. If you do not specify a rollup type in the `quantize` clause of your query, for each time bucket, Sumo presents the average of the data points in that bucket.
0 commit comments