This is an automated email from the ASF dual-hosted git repository.

brusdev pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis-console.git


The following commit(s) were added to refs/heads/main by this push:
     new 06b5851  ARTEMIS-5771 display creation time for producer
06b5851 is described below

commit 06b5851fdd9066474047a5b1295fc6549737300c
Author: Justin Bertram <[email protected]>
AuthorDate: Mon Nov 17 23:01:14 2025 -0600

    ARTEMIS-5771 display creation time for producer
---
 .../packages/artemis-console-plugin/src/producers/ProducerTable.tsx    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/producers/ProducerTable.tsx
 
b/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/producers/ProducerTable.tsx
index 245ea0a..6ac2c0a 100644
--- 
a/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/producers/ProducerTable.tsx
+++ 
b/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/producers/ProducerTable.tsx
@@ -53,6 +53,7 @@ export const ProducerTable: React.FunctionComponent<Navigate> 
= navigate => {
         {id: 'msgSent', name: 'Messages Sent', visible: false, sortable: true, 
filterable: false},
         {id: 'msgSizeSent', name: 'Messages Sent Size', visible: false, 
sortable: true, filterable: false},
         {id: 'lastProducedMessageID', name: 'Last Produced Message ID', 
visible: false, sortable: true, filterable: false},
+        {id: 'creationTime', name: 'Creation Time', visible: true, sortable: 
true, filterable: false},
       ];
 
       const listProducers = async ( page: number, perPage: number, activeSort: 
ActiveSort, filter: Filter):Promise<any> => {
@@ -60,6 +61,6 @@ export const ProducerTable: React.FunctionComponent<Navigate> 
= navigate => {
         const data = JSON.parse(response);
         return data;
       }
-      
+
     return <ArtemisTable allColumns={allColumns} getData={listProducers} 
storageColumnLocation={columnStorage.producers} navigate={navigate.search} 
filter={navigate.filter}/>
 }
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact


Reply via email to