[jboss-jira] [JBoss JIRA] (WFLY-2453) Expose statistics configuration attribute per JGroups protocol

Paul Ferraro (JIRA) issues at jboss.org
Wed Dec 18 09:13:32 EST 2013


     [ https://issues.jboss.org/browse/WFLY-2453?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paul Ferraro updated WFLY-2453:
-------------------------------

    Description: 
By default, every JGroups protocol gathers statistics.  Currently, this can be disabled per protocol via:
<property name="stats">false</property>

This is a bit cumbersome.  Also, a standard property like this should be 1st class attribute of the <protocol/> element.
e.g..
<protocol type="..." statistics-enabled="false"/>

We may also want to add the ability to disable statistics per stack, so the user does not have to explicitly disable it in every protocol.  That way, to enable statistics for a single protocol, one could use:

<stack name="udp" statistics-enabled="false"><!-- Disables collection of statistics for all protocols -->
    <transport type="UDP" statistics-enabled="true"/><!-- Enables collection of statistics for just this protocol -->
    ...
</stack>

  was:
By default, every JGroups protocol gathers statistics.  Currently, this can be disabled per protocol via:
<property name="stats">false</property>

This is a bit cumbersome.  Also, a standard property like this should be 1st class attribute of the <protocol/> element.
e.g..
<protocol type="..." statistics="false"/>

We may also want to add the ability to disable statistics per stack, so the user does not have to explicitly disable it in every protocol.  That way, to enable statistics for a single protocol, one could use:

<stack name="udp" statistics="false"><!-- Disables collection of statistics for all protocols -->
    <transport type="UDP" statistics="true"/><!-- Enables collection of statistics for just this protocol -->
    ...
</stack>


    
> Expose statistics configuration attribute per JGroups protocol
> --------------------------------------------------------------
>
>                 Key: WFLY-2453
>                 URL: https://issues.jboss.org/browse/WFLY-2453
>             Project: WildFly
>          Issue Type: Enhancement
>      Security Level: Public(Everyone can see) 
>            Reporter: Paul Ferraro
>            Assignee: Paul Ferraro
>
> By default, every JGroups protocol gathers statistics.  Currently, this can be disabled per protocol via:
> <property name="stats">false</property>
> This is a bit cumbersome.  Also, a standard property like this should be 1st class attribute of the <protocol/> element.
> e.g..
> <protocol type="..." statistics-enabled="false"/>
> We may also want to add the ability to disable statistics per stack, so the user does not have to explicitly disable it in every protocol.  That way, to enable statistics for a single protocol, one could use:
> <stack name="udp" statistics-enabled="false"><!-- Disables collection of statistics for all protocols -->
>     <transport type="UDP" statistics-enabled="true"/><!-- Enables collection of statistics for just this protocol -->
>     ...
> </stack>

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the jboss-jira mailing list