@@ -12,20 +12,20 @@ const { sortBy: activeColumn } = storeToRefs(monitoringStore);
12
12
<section role =" table" aria-label =" endpoint-list" >
13
13
<!-- Table headings-->
14
14
<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" >
17
17
<template #help >Queue length: The number of messages waiting to be processed in the input queue(s) of the endpoint.</template >
18
18
</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" >
20
20
<template #help >Throughput: The number of messages per second successfully processed by a receiving endpoint.</template >
21
21
</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" >
23
23
<template #help >Scheduled retries: The number of messages per second scheduled for retries (immediate or delayed).</template >
24
24
</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" >
26
26
<template #help >Processing time: The time taken for a receiving endpoint to successfully process a message.</template >
27
27
</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" >
29
29
<template #help >Critical time: The elapsed time from when a message was sent, until it was successfully processed by a receiving endpoint.</template >
30
30
</ColumnHeader >
31
31
</div >
0 commit comments