Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add a nicer table when viewing a selection of camel contexts in a table
  • Loading branch information
jstrachan committed Apr 26, 2013
1 parent a3b00ee commit 7c3f097
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions hawtio-web/src/main/webapp/app/camel/js/camelPlugin.ts
Expand Up @@ -56,6 +56,16 @@ module Camel {
};

var attributes = workspace.attributeColumnDefs;
attributes[jmxDomain + "/contexts/folder"] = [
stateColumn,
{field: 'CamelId', displayName: 'Name'},
{field: 'ExchangesCompleted', displayName: 'Completed #'},
{field: 'ExchangesFailed', displayName: 'Failed #'},
{field: 'MeanProcessingTime', displayName: 'Mean Time'},
{field: 'MinProcessingTime', displayName: 'Min Time'},
{field: 'MaxProcessingTime', displayName: 'Max Time'},
{field: 'TotalProcessingTime', displayName: 'Total Time'}
];
attributes[jmxDomain + "/components/folder"] = [
stateColumn,
{field: 'CamelId', displayName: 'Context'},
Expand Down

1 comment on commit 7c3f097

@davsclaus
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah yeah those custom folders is great. I think we should add the Uptime column so you can also see for how long they have been running

Please sign in to comment.