What is "initiator other" in network in chrome console?

DebuggingConsoleGoogle Chrome-Devtools

Debugging Problem Overview


I fire an image tag when someone converts on our website for reporting and analytics:

<img src="https://example.evyy.net/conv/?somechannel=cats&cid=3790&oid=123&cat1=premium&sku1=123&qty1=1&amt1=456&custid=qbc" />

We noticed traffic decline yesterday. To debug I visited the site and signed up, with the console open network tab.

I typed "evyy" into the filter box and I see 3 line items for my tag.

What does this mean? Should there not be just 1 line item? One item has a 302 status and the other two a status of 200. That's good right?

Screen attached. Does this look "right"? Is there any drill down in the network tab I can look at to see if there is a problem on our end with tracking?

enter image description here

Debugging Solutions


Solution 1 - Debugging

"Initiator Other" usually means the network request was made from a user, not from Chrome, a redirect or a script.

The request was fired when someone clicked a button (this is what your analytics is probably tracking). You can read more about this in the Chrome DevTools docs.

> Initiator: The object or process that initiated the request. It can have one of the following values:

> 1. Parser - Chrome's HTML parser initiated the request.

> 2. Redirect - A HTTP redirect initiated the request.

> 3. Script - A script initiated the request.

> 4. Other - Some other process or action initiated the request, such as the user navigating to a page via a link, or by entering a URL in the address bar.

The requests are made in the order you see, the first received the [302] 2 response which said, "hey, go to this new url". That's (probably) why the second request was made, which got the 200. The third was probably from clicking on the button too. Looks fine to me.

Solution 2 - Debugging

I noticed another case not related with a user action:

<link rel="icon" type="image/jpeg" href="image.jpg" />

... causes the image.jpg to get loaded with "Initiator Other" (also true with images of another format).

(wanted to add this as a comment under the previous answer, but I am not allowed to)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDoug FirView Question on Stackoverflow
Solution 1 - DebuggingAndrewView Answer on Stackoverflow
Solution 2 - DebuggingloupioteView Answer on Stackoverflow