File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
x-pack/plugin/esql/qa/testFixtures/src/main/resources Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -100,13 +100,13 @@ rate_bytes:double | cluster:keyword | time_bucket:datetime | rate_kb:double
100100rate_of_aggregate_metric
101101required_capability: metrics_command
102102TS k8s-downsampled
103- | STATS rate_bytes = sum(rate(network.total_bytes_in)),
103+ | STATS sum_bytes = sum(rate(network.total_bytes_in)),
104104 max_bytes = max(rate(network.total_bytes_in)),
105105 min_bytes = min(rate(network.total_bytes_in)),
106106 avg_bytes = avg(rate(network.total_bytes_in)) BY time_bucket = bucket(@timestamp, 30minute)
107107| SORT time_bucket | LIMIT 10;
108108
109- rate_bytes :double | max_bytes:double | min_bytes:double | avg_bytes:double | time_bucket:datetime
109+ sum_bytes :double | max_bytes:double | min_bytes:double | avg_bytes:double | time_bucket:datetime
1101100.7751851851851852 | 0.17694444444444443 | 0.025925925925925936 | 0.08613168724279835 | 2024-05-09T23:30:00.000Z
111111
112112;
You can’t perform that action at this time.
0 commit comments