Hi Vinny,
It should be possible. See the CustomViewsAndReports.xml that is part of your VCOps vApp.
Here is the sample List View that shows how you can define sorting on one of the columns:
<ListView> <!--Settings specific to view types --> <!--List view (aka ComparisonView) --> <Columns> <!--Average of the hourly values in the whole view range --> <Column> <!--The title is optional if the function=Avg--> <Metric metricKey="badge|workload" function="Average"></Metric> </Column> <!--Worst health request example: Min(badge|health) --> <Column sort="DESCENDING"> <!--Sort attribute is optional. sort=ascending|descending--> <Title lang="US_en">Min(badge|health)</Title> <!--The title is optional if the function=Avg--> <Metric metricKey="badge|health" function="Minimum"></Metric> <!--Min/Max of the hourly values in the whole view range; we could have function=avg as a default--> </Column> <!--Workload at worst health request example: badge|workload@Min(badge|health) --> <Column> <Title lang="US_en">badge|workload@Min(badge|health</Title> <Metric metricKey="badge|workload" function="Minimum" secMetricKey="badge|health"></Metric> <!-- Hourly value at Min/Max of the hourly value of the secondary in the whole view range--> </Column> </Columns></ListView>
This should help,
Alex D.