Expand my Community achievements bar.

Join us for the next Community Q&A Coffee Break on Tuesday April 23, 2024 with Eric Matisoff, Principal Evangelist, Analytics & Data Science, who will join us to discuss all the big news and announcements from Summit 2024!
SOLVED

What is the best way to track Click errors

Avatar

Level 1

Hi Team,

I was wondering if there is a way to capture Click errors with Adobe analytics? I noticed that many times visitors clicked on a particular link and the website just did not respond back. It would be helpful to collect this information and would love to hear if anyone has already implemented it or have ideas around it.

Kind Regards,

1 Accepted Solution

Avatar

Correct answer by
Level 2

Hey Tapan,

Yes you can tracked the click errors with below mention approach :

Example :

Create a function which is return the response of click and call that function on each click, fire an event based on mentioned below response code :

200 - OK

404 - Not found 

500 - Internal server error 

All response code list :

http://www.restapitutorial.com/httpstatuscodes.html

View solution in original post

2 Replies

Avatar

Correct answer by
Level 2

Hey Tapan,

Yes you can tracked the click errors with below mention approach :

Example :

Create a function which is return the response of click and call that function on each click, fire an event based on mentioned below response code :

200 - OK

404 - Not found 

500 - Internal server error 

All response code list :

http://www.restapitutorial.com/httpstatuscodes.html

Avatar

Level 1

Thanks for the response Vasima. :) I will ask the implementation specialist on the efforts required.