Skip to content

Commit

Permalink
added nicer UI for network connectors and persistence adapters
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrachan committed May 2, 2013
1 parent f6cea37 commit ea15bf5
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion hawtio-web/src/main/webapp/app/activemq/js/activemqPlugin.ts
Expand Up @@ -56,7 +56,19 @@ module ActiveMQ {
{field: 'DispatchedQueueSize', displayName: 'Dispatched Queue #'},
{field: 'SlowConsumer', displayName: 'Slow ?'},
{field: 'Retroactive', displayName: 'Retroactive'},
{field: 'Selector', displayName: 'Selector'},
{field: 'Selector', displayName: 'Selector'}
];
attributes[jmxDomain + "/networkConnectors/folder"] = [
{field: 'Name', displayName: 'Name', width: "**"},
{field: 'UserName', displayName: 'User Name'},
{field: 'PrefetchSize', displayName: 'Prefetch Size'},
{field: 'ConduitSubscriptions', displayName: 'Conduit Subscriptions?'},
{field: 'Duplex', displayName: 'Duplex'},
{field: 'DynamicOnly', displayName: 'Dynamic Only'}
];
attributes[jmxDomain + "/PersistenceAdapter/folder"] = [
{field: 'IndexDirectory', displayName: 'Index Directory', width: "**"},
{field: 'LogDirectory', displayName: 'Log Directory', width: "**"}
];

workspace.topLevelTabs.push({
Expand Down

0 comments on commit ea15bf5

Please sign in to comment.