vdab...@gmail.com
unread,Jul 9, 2013, 6:22:03 AM7/9/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jmeter-...@googlegroups.com, rank...@googlemail.com
Hi,
I create external tool to filter log results from JMeter.
This filters are used when the test is finished not in real time before reload the filtred logs in Listeners.
I use this tool to remove ramp up threads creation and keep only Transaction Controler corresponding to Pages (begin with character P) not every url labels.
Some extracts of the parameters properties file.
# filter by date
# dateMin : logs BEFORE dateMin are not considered
# dateMin format YYYY-MM-DD HH:MM:SS
#dateMin=2012-09-05 17:33:00
# dateMax : logs AFTER dateMax are not considered
# dateMax format YYYY-MM-DD HH:MM:SS
#dateMax=2012-09-05 17:53:00
# offsetFromStartSec logs BEFORE offsetFromStartSec sec are not considered, offset is from the first line time
# offsetFromStartSec parameter has priority over dateMin
#offsetFromStartSec=2220
# offsetFromStartMaxSec logs AFTER offsetFromStartMaxSec sec are not considered, offset is from the first line time
# offsetFromStartMaxSec parameter has priority over dateMax
#offsetFromStartMaxSec=4020
# regular expression to filter label transaction, find pattern
# if not set, the default value = .*
# ex P[0-9]_.* filter labels start whith P followed by a number and then an underscore and every characters, ex P3_02_LOGIN ou P4_03_FIND_BY_ID
#rechPatternLib=P[0-9]_.*
#rechPatternLib=P4_01_DMD_FORM_LOGIN
#rechPatternLib=.*
rechPatternLib=[SP][0-9]_.*
# withdraws French accented letters (label, groupe name, hostname), slowed processing
# if true remove French accented letters, false by default
# If true, you should probably put in the command line :
# -Dfile.encoding=UTF-8 or -Dfile.encoding=ISO-8859-15 or -Dfile.encoding=Cp1252
# java -Dfile.encoding=UTF-8 ...
#removeAccent=true
You may be inspired by filters on the date or offset time (very usefull) and the regular pattern to include specifics names (label) and deleting accent.
Regards
Vincent D.