Using Measures in Scuba [v5]
Use measures to create queries in Scuba to aggregate your data in different ways. Take a few minutes to review the aggregation options available in Scuba. You will be working with them when you create queries. Scuba v5 includes the following options:
Measure Aggregation | Used in | Description | Notes |
---|---|---|---|
Count Events |
| A simple count of events matching the query. | |
Count Unique |
| A count of unique values within a column matching the query. This measure is valid for numeric and string data. |
|
Sum |
| The sum of the numeric values of all results returned for a query. |
|
Average |
| The average (mean) value of a given parameter over the specified time period. |
|
Minimum |
| The lowest value that matched the query at any time over the specified time period. |
|
Maximum |
| The highest value that matched the query at any time over the specified time period. |
|
Percentile |
| The value at the selected percentile for a given parameter over the specified time period. |
|
First, Last |
| The First and Last measures return the value of a given column with the smallest (First) or largest (Last) event timestamp. |
|
Every |
| Create an actor or flow property that contains a list of values in a given column. | |
Variance |
| The statistical variance of a random value in the given numeric column from the column’s average (mean) over the specified time period. |
|