The Toolkit plugin can be used to monitor output from commands. This article provides a sample which reformats the data with comma delimiters such that the Toolkit plugin can parse the output. |
The ulimit -a command displays some comma characters by itself, which may cause confusion with the delimiter in Toolkit plugin. |
|
Here we have picked the sed command to first strip out the commas and extra space characters, and then insert commas in place of the parentheses. ulimit -a | /bin/sed -e 's/,//' -e 's/\s\{1,\}/ /g' -e 's/ (/,/' -e 's/) /,/' Below is the Active Console output when this is configured in the Toolkit plugin. The sampler configuration in XML file has been attached in this article. |
Comments
0 comments
Please sign in to leave a comment.