@@ -12,20 +12,20 @@ const { sortBy: activeColumn } = storeToRefs(monitoringStore);
1212 <section role =" table" aria-label =" endpoint-list" >
1313 <!-- Table headings-->
1414 <div role =" row" aria-label =" column-headers" class =" table-head-row" >
15- <ColumnHeader :name =" columnName.ENDPOINTNAME" label =" Endpoint name" column- class =" table-first-col" v-model =" activeColumn" sortable default-ascending />
16- <ColumnHeader :name =" columnName.QUEUELENGTH" label =" Queue length" unit =" (msgs)" column- class =" table-col" v-model =" activeColumn" sortable :sort-by =" monitoringStore.endpointListIsGrouped ? '' : columnName.QUEUELENGTH" >
15+ <ColumnHeader :name =" columnName.ENDPOINTNAME" label =" Endpoint name" class =" table-first-col" v-model =" activeColumn" sortable default-ascending />
16+ <ColumnHeader :name =" columnName.QUEUELENGTH" label =" Queue length" unit =" (msgs)" class =" table-col" v-model =" activeColumn" sortable :sort-by =" monitoringStore.endpointListIsGrouped ? '' : columnName.QUEUELENGTH" >
1717 <template #help >Queue length: The number of messages waiting to be processed in the input queue(s) of the endpoint.</template >
1818 </ColumnHeader >
19- <ColumnHeader :name =" columnName.THROUGHPUT" label =" Throughput" unit =" (msgs/s)" column- class =" table-col" v-model =" activeColumn" sortable :sort-by =" monitoringStore.endpointListIsGrouped ? '' : columnName.THROUGHPUT" >
19+ <ColumnHeader :name =" columnName.THROUGHPUT" label =" Throughput" unit =" (msgs/s)" class =" table-col" v-model =" activeColumn" sortable :sort-by =" monitoringStore.endpointListIsGrouped ? '' : columnName.THROUGHPUT" >
2020 <template #help >Throughput: The number of messages per second successfully processed by a receiving endpoint.</template >
2121 </ColumnHeader >
22- <ColumnHeader :name =" columnName.SCHEDULEDRETRIES" label =" Scheduled retries" unit =" (msgs/s)" column- class =" table-col" v-model =" activeColumn" sortable :sort-by =" monitoringStore.endpointListIsGrouped ? '' : columnName.SCHEDULEDRETRIES" >
22+ <ColumnHeader :name =" columnName.SCHEDULEDRETRIES" label =" Scheduled retries" unit =" (msgs/s)" class =" table-col" v-model =" activeColumn" sortable :sort-by =" monitoringStore.endpointListIsGrouped ? '' : columnName.SCHEDULEDRETRIES" >
2323 <template #help >Scheduled retries: The number of messages per second scheduled for retries (immediate or delayed).</template >
2424 </ColumnHeader >
25- <ColumnHeader :name =" columnName.PROCESSINGTIME" label =" Processing time" unit =" (t)" column- class =" table-col" v-model =" activeColumn" sortable :sort-by =" monitoringStore.endpointListIsGrouped ? '' : columnName.PROCESSINGTIME" >
25+ <ColumnHeader :name =" columnName.PROCESSINGTIME" label =" Processing time" unit =" (t)" class =" table-col" v-model =" activeColumn" sortable :sort-by =" monitoringStore.endpointListIsGrouped ? '' : columnName.PROCESSINGTIME" >
2626 <template #help >Processing time: The time taken for a receiving endpoint to successfully process a message.</template >
2727 </ColumnHeader >
28- <ColumnHeader :name =" columnName.CRITICALTIME" label =" Critical time" unit =" (t)" column- class =" table-col" v-model =" activeColumn" sortable :sort-by =" monitoringStore.endpointListIsGrouped ? '' : columnName.CRITICALTIME" >
28+ <ColumnHeader :name =" columnName.CRITICALTIME" label =" Critical time" unit =" (t)" class =" table-col" v-model =" activeColumn" sortable :sort-by =" monitoringStore.endpointListIsGrouped ? '' : columnName.CRITICALTIME" >
2929 <template #help >Critical time: The elapsed time from when a message was sent, until it was successfully processed by a receiving endpoint.</template >
3030 </ColumnHeader >
3131 </div >
0 commit comments