Group Similar Transaction
This is only applicable for PHP agent versions below 4.0; for PHP agents 4.0 and above, it should be modified via edit configuration.
Grouping Similar transactions
- Create a new file named "transaction_merge_patterns.conf" in the conf directory.
- Open the file in a text editor and add key value pairs as per the below syntax.
- Regular expression of URLs/web transaction=new name to be assigned.
- Restart the agent.
Example:
1. To group URLs containing varying suffix,
{/wordpress/2020/01/02}
{/wordpress/2020/03/04}
{/wordpress/2020/05/06}
use
/wordpress/2020*=wordpress_2020
2. To group URLs containing varying prefix,
{/2020/01/02/wordpress}
{/2020/03/04/wordpress}
{/2020/05/06/wordpress}
use
/2020*/wordpress=wordpress_2020
or even,
*/wordpress=wordpress_all