<%= fmt_sort('Virtual host', 'vhost') %> | <% } %> <% if(disable_stats) { %><%= fmt_sort('Name', 'name') %> | <% } else { %><%= fmt_sort('Name', 'client_properties.connection_name') %> | <% } %> <% if (nodes_interesting) { %><%= fmt_sort('Node', 'node') %> | <% } %> <% if (show_column('streamConnections', 'user')) { %><%= fmt_sort('User name', 'user') %> | <% } %> <% if (!disable_stats) { %> <% if (show_column('streamConnections', 'state')) { %><%= fmt_sort('State', 'state') %> | <% } %> <% if (show_column('streamConnections', 'ssl')) { %><%= fmt_sort('SSL / TLS', 'ssl') %> | <% } %> <% if (show_column('streamConnections', 'ssl_info')) { %>SSL Details | <% } %> <% if (show_column('streamConnections', 'protocol')) { %><%= fmt_sort('Protocol', 'protocol') %> | <% } %> <% if (show_column('streamConnections', 'frame_max')) { %><%= fmt_sort('Frame max', 'frame_max') %> | <% } %> <% if (show_column('streamConnections', 'auth_mechanism')) { %><%= fmt_sort('Auth mechanism', 'auth_mechanism') %> | <% } %> <% if (show_column('streamConnections', 'client')) { %><%= fmt_sort('Client', 'properties') %> | <% } %> <% if (show_column('streamConnections', 'from_client')) { %><%= fmt_sort('From client', 'recv_oct_details.rate') %> | <% } %> <% if (show_column('streamConnections', 'to_client')) { %><%= fmt_sort('To client', 'send_oct_details.rate') %> | <% } %> <% if (show_column('streamConnections', 'heartbeat')) { %><%= fmt_sort('Heartbeat', 'timeout') %> | <% } %> <% if (show_column('streamConnections', 'connected_at')) { %><%= fmt_sort('Connected at', 'connected_at') %> | <% } %> <% } %>
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
<%= fmt_string(connection.vhost) %> | <% } %> <% if(connection.client_properties) { %><%= link_stream_conn(connection.vhost, connection.name) %> <%= fmt_string(short_conn(connection.client_properties.connection_name)) %> | <% } else { %><%= link_stream_conn(connection.vhost, connection.name) %> | <% } %> <% if (nodes_interesting) { %><%= fmt_node(connection.node) %> | <% } %> <% if (show_column('streamConnections', 'user')) { %><%= fmt_string(connection.user) %> | <% } %> <% if (!disable_stats) { %> <% if (show_column('streamConnections', 'state')) { %><%= fmt_object_state(connection) %> | <% } %> <% if (show_column('streamConnections', 'ssl')) { %><%= fmt_boolean(connection.ssl, '') %> | <% } %> <% if (show_column('streamConnections', 'ssl_info')) { %><% if (connection.ssl) { %> <%= connection.ssl_protocol %> <%= connection.ssl_key_exchange %> <%= connection.ssl_cipher %> <%= connection.ssl_hash %> <% } %> | <% } %> <% if (show_column('streamConnections', 'protocol')) { %><%= connection.protocol %> | <% } %> <% if (show_column('streamConnections', 'frame_max')) { %><%= fmt_string(connection.frame_max, '') %> | <% } %> <% if (show_column('streamConnections', 'auth_mechanism')) { %><%= fmt_string(connection.auth_mechanism, '') %> | <% } %> <% if (show_column('streamConnections', 'client')) { %><%= fmt_client_name(connection.client_properties) %> | <% } %> <% if (show_column('streamConnections', 'from_client')) { %><%= fmt_detail_rate_bytes(connection, 'recv_oct') %> | <% } %> <% if (show_column('streamConnections', 'to_client')) { %><%= fmt_detail_rate_bytes(connection, 'send_oct') %> | <% } %> <% if (show_column('streamConnections', 'heartbeat')) { %><%= fmt_time(connection.timeout, 's') %> | <% } %> <% if (show_column('streamConnections', 'connected_at')) { %><%= fmt_timestamp_mini(connection.connected_at) %> | <% } %> <% } %>
... no connections ...
<% } %>