If I have something super simple like this, a bunch of records with a few fields and a timestamp.
Is there a way to build a Data Table (or some other visualization), grouping by each of the fields?
For example, in the following simple data,
I like to see what are my average for each field, "a","b","c" given a period of time range.
The "bucket" seems to be working for a specific field only as far as I can see.
{
"a":1,
"b":2,
"c":3,
"d":4,
"e":5,
"f":6,
"@timeStamp":"2020-02-03"
}
Formatted JSON Data
{
"a":7,
"b":8,
"c":9,
"d":10,
"e":11,
"f":12,
"@timeStamp":"2020-02-04"
}
