16 Dec 2019
01:03 AM
- last edited on
27 Apr 2021
04:06 AM
by
MaciejNeumann
I need to monitor the cookie for all the users for an application which shall show me if the cookie was dropped at the server end or a load balancer end. Is it possible to monitor or trace them ?
Regards
Rohit Sharma
Solved! Go to Solution.
You can accually, but not in thay way you think. Cookie is just header in requests, so you can configure Request Attribute based on request header with name "Cookie". You will see string that contains all cookies (if they are not too long). Then you can based on this information create dedicated request attributes based on cookies.
Sebastian