Am 11. Februar 2017 16:15:15 MEZ schrieb [email protected]: >Author: pmouawad >Date: Sat Feb 11 15:15:14 2017 >New Revision: 1782609 > >URL: http://svn.apache.org/viewvc?rev=1782609&view=rev >Log: >Improve regex to allow better filtering > >Modified: > jmeter/trunk/bin/user.properties > jmeter/trunk/xdocs/usermanual/generating-dashboard.xml > >Modified: jmeter/trunk/bin/user.properties >URL: >http://svn.apache.org/viewvc/jmeter/trunk/bin/user.properties?rev=1782609&r1=1782608&r2=1782609&view=diff >============================================================================== >--- jmeter/trunk/bin/user.properties (original) >+++ jmeter/trunk/bin/user.properties Sat Feb 11 15:15:14 2017 >@@ -89,10 +89,10 @@ > > # Indicates which graph series are filtered (regular expression) > # In the below example we filter on Search and Order samples >-# Note that the end of the pattern should always include >(-success|-failure)? >+# Note that the end of the pattern should always include >((-success$|-failure$)|$) ># TransactionsPerSecondGraphConsumer suffixes transactions with >"-success" or "-failure" depending > # on the result >-#jmeter.reportgenerator.exporter.html.series_filter=(Search|Order)(-success|-failure)? >+#jmeter.reportgenerator.exporter.html.series_filter=((^Search)|(^Order))((-success$|-failure$)|$)
^(a|b)(-(a|b))?$ would be shorter, but it would be even shorter, if you use match instead of find, when applying the regex. Regards, Felix > ># Indicates whether only controller samples are displayed on graphs >that support it. > #jmeter.reportgenerator.exporter.html.show_controllers_only=false > >Modified: jmeter/trunk/xdocs/usermanual/generating-dashboard.xml >URL: >http://svn.apache.org/viewvc/jmeter/trunk/xdocs/usermanual/generating-dashboard.xml?rev=1782609&r1=1782608&r2=1782609&view=diff >============================================================================== >--- jmeter/trunk/xdocs/usermanual/generating-dashboard.xml (original) >+++ jmeter/trunk/xdocs/usermanual/generating-dashboard.xml Sat Feb 11 >15:15:14 2017 >@@ -286,7 +286,7 @@ jmeter.save.saveservice.timestamp_format > Default: <code>true</code></property> > <property name="series_filter" required="No">Sets the filter > of series. An empty value deactivates the filtering. >- If not empty, regex should end with ><code>(-success|-failure)?</code><br/> >+ If not empty, regex should end with ><code>((-success$|-failure$)|$)</code><br/> > Format: regular expression. > Default: "" > </property>
