@@ -3874,3 +3874,24 @@ city:keyword|c:long
38743874Raleigh |1
38753875;
38763876
3877+ inlineStatsOnAggregateMetricDouble
3878+ required_capability: inline_stats
3879+ required_capability: aggregate_metric_double_literal_registered
3880+ FROM k8s-downsampled
3881+ | INLINE STATS tx_max = MAX(network.eth0.tx) BY pod
3882+ | SORT @timestamp, cluster, pod
3883+ | KEEP @timestamp, cluster, pod, network.eth0.tx, tx_max
3884+ | LIMIT 9
3885+ ;
3886+
3887+ @timestamp:datetime | cluster:keyword | pod:keyword | network.eth0.tx:aggregate_metric_double | tx_max:double
3888+ 2024-05-09T23:30:00.000Z | prod | one | {"min":565.0,"max":829.0,"sum":7290.0,"value_count":10} | 1060.0
3889+ 2024-05-09T23:30:00.000Z | prod | three | {"min":201.0,"max":582.0,"sum":1794.0,"value_count":6} | 824.0
3890+ 2024-05-09T23:30:00.000Z | prod | two | {"min":20.0,"max":190.0,"sum":370.0,"value_count":10} | 1419.0
3891+ 2024-05-09T23:30:00.000Z | qa | one | {"min":346.0,"max":356.0,"sum":1765.0,"value_count":5} | 1060.0
3892+ 2024-05-09T23:30:00.000Z | qa | three | {"min":605.0,"max":605.0,"sum":605.0,"value_count":1} | 824.0
3893+ 2024-05-09T23:30:00.000Z | qa | two | {"min":304.0,"max":1148.0,"sum":8590.0,"value_count":10} | 1419.0
3894+ 2024-05-09T23:30:00.000Z | staging | one | {"min":263.0,"max":740.0,"sum":5390.0,"value_count":10} | 1060.0
3895+ 2024-05-09T23:30:00.000Z | staging | three | {"min":341.0,"max":592.0,"sum":1956.0,"value_count":5} | 824.0
3896+ 2024-05-09T23:30:00.000Z | staging | two | {"min":442.0,"max":1011.0,"sum":3850.0,"value_count":7} | 1419.0
3897+ ;
0 commit comments