I've seen similar issues being asked, but no solutions/updates on any and hoping that this has been already resolved?
| eval Month=strftime(_time,"%b")
| stats avg(rtt) by RouteRegion Month
| sort -RouteRegion
So, as an example, some of my RouteRegion values are APAC_APAC EUR_LATAM LATAM_MEA MEA_USA USA_USA (basically these regions are in full mesh). I want to re-arrange the trellis so that USA to USA and to other regions will be first but the sort function does not work on trellis.
... View more