Skip to content

Commit 10ae3e1

Browse files
committed
comments
1 parent a32f128 commit 10ae3e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

x-pack/plugin/esql/qa/testFixtures/src/main/resources/k8s-timeseries-rate.csv-spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,13 @@ rate_bytes:double | cluster:keyword | time_bucket:datetime | rate_kb:double
100100
rate_of_aggregate_metric
101101
required_capability: metrics_command
102102
TS 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
110110
0.7751851851851852 | 0.17694444444444443 | 0.025925925925925936 | 0.08613168724279835 | 2024-05-09T23:30:00.000Z
111111

112112
;

0 commit comments

Comments
 (0)