http GET, finding tag name for fired GTM event
up vote
0
down vote
favorite
I want to see which GTM tag was fired by looking at the network tab in Chrome dev tools. Unfortunately, it looks that the data is compressed or something.
I'm in this situation because Google AMP pages don't allow the nice web based GTM debugger that's usually available. Thus you must use dev tools for QA.
The http calls use GET and have a path of /collect. I've expanded everything I can find and no dice.
Here's the summary line from my network tab:
collect?v=1&_v=a1>m=2agbc0GTM-N83V7HM&ds=AMP&aip…=&t=event&ec=&ea=&el=&a=1305&z=0.7694027908318071
I'm not sure if including a picture of my network tab would be useful since there's just so much information.
Any help is appreciated. There are quite a number of sites that tell you to use the network tab to debug GTM. But, I can't find any that help with deciphering its contents.
add a comment |
up vote
0
down vote
favorite
I want to see which GTM tag was fired by looking at the network tab in Chrome dev tools. Unfortunately, it looks that the data is compressed or something.
I'm in this situation because Google AMP pages don't allow the nice web based GTM debugger that's usually available. Thus you must use dev tools for QA.
The http calls use GET and have a path of /collect. I've expanded everything I can find and no dice.
Here's the summary line from my network tab:
collect?v=1&_v=a1>m=2agbc0GTM-N83V7HM&ds=AMP&aip…=&t=event&ec=&ea=&el=&a=1305&z=0.7694027908318071
I'm not sure if including a picture of my network tab would be useful since there's just so much information.
Any help is appreciated. There are quite a number of sites that tell you to use the network tab to debug GTM. But, I can't find any that help with deciphering its contents.
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I want to see which GTM tag was fired by looking at the network tab in Chrome dev tools. Unfortunately, it looks that the data is compressed or something.
I'm in this situation because Google AMP pages don't allow the nice web based GTM debugger that's usually available. Thus you must use dev tools for QA.
The http calls use GET and have a path of /collect. I've expanded everything I can find and no dice.
Here's the summary line from my network tab:
collect?v=1&_v=a1>m=2agbc0GTM-N83V7HM&ds=AMP&aip…=&t=event&ec=&ea=&el=&a=1305&z=0.7694027908318071
I'm not sure if including a picture of my network tab would be useful since there's just so much information.
Any help is appreciated. There are quite a number of sites that tell you to use the network tab to debug GTM. But, I can't find any that help with deciphering its contents.
I want to see which GTM tag was fired by looking at the network tab in Chrome dev tools. Unfortunately, it looks that the data is compressed or something.
I'm in this situation because Google AMP pages don't allow the nice web based GTM debugger that's usually available. Thus you must use dev tools for QA.
The http calls use GET and have a path of /collect. I've expanded everything I can find and no dice.
Here's the summary line from my network tab:
collect?v=1&_v=a1>m=2agbc0GTM-N83V7HM&ds=AMP&aip…=&t=event&ec=&ea=&el=&a=1305&z=0.7694027908318071
I'm not sure if including a picture of my network tab would be useful since there's just so much information.
Any help is appreciated. There are quite a number of sites that tell you to use the network tab to debug GTM. But, I can't find any that help with deciphering its contents.
asked Nov 16 at 22:18
looch
13711
13711
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
/collect is the endpoint for Google Analytics. The "t" parameter indicates what type of hit this is - in this case it's an event, which further confirmed by "ec" (event category), "ea" (event action) and "el" (event label).
So this is (as you already know) a Google Analytics event tracking call. However it is not a valid call, since the mandatory parameters ("ec" and "ea") are empty.
And alas you cannot get the name of the GTM tag from the network call. You would have to enable preview mode, step through the different GTM events (left side of the debug panel) to see if they fire GA tags. Then in the "tag" pane of the preview panel you have to look into the GA tags (click the "more" link in the tag info) to see which tag sends empty values.
Thanks! With your advice, I was also able to find Google documentation that helped explain these query parameters even more: developers.google.com/analytics/devguides/collection/protocol/…
– looch
yesterday
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
/collect is the endpoint for Google Analytics. The "t" parameter indicates what type of hit this is - in this case it's an event, which further confirmed by "ec" (event category), "ea" (event action) and "el" (event label).
So this is (as you already know) a Google Analytics event tracking call. However it is not a valid call, since the mandatory parameters ("ec" and "ea") are empty.
And alas you cannot get the name of the GTM tag from the network call. You would have to enable preview mode, step through the different GTM events (left side of the debug panel) to see if they fire GA tags. Then in the "tag" pane of the preview panel you have to look into the GA tags (click the "more" link in the tag info) to see which tag sends empty values.
Thanks! With your advice, I was also able to find Google documentation that helped explain these query parameters even more: developers.google.com/analytics/devguides/collection/protocol/…
– looch
yesterday
add a comment |
up vote
1
down vote
accepted
/collect is the endpoint for Google Analytics. The "t" parameter indicates what type of hit this is - in this case it's an event, which further confirmed by "ec" (event category), "ea" (event action) and "el" (event label).
So this is (as you already know) a Google Analytics event tracking call. However it is not a valid call, since the mandatory parameters ("ec" and "ea") are empty.
And alas you cannot get the name of the GTM tag from the network call. You would have to enable preview mode, step through the different GTM events (left side of the debug panel) to see if they fire GA tags. Then in the "tag" pane of the preview panel you have to look into the GA tags (click the "more" link in the tag info) to see which tag sends empty values.
Thanks! With your advice, I was also able to find Google documentation that helped explain these query parameters even more: developers.google.com/analytics/devguides/collection/protocol/…
– looch
yesterday
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
/collect is the endpoint for Google Analytics. The "t" parameter indicates what type of hit this is - in this case it's an event, which further confirmed by "ec" (event category), "ea" (event action) and "el" (event label).
So this is (as you already know) a Google Analytics event tracking call. However it is not a valid call, since the mandatory parameters ("ec" and "ea") are empty.
And alas you cannot get the name of the GTM tag from the network call. You would have to enable preview mode, step through the different GTM events (left side of the debug panel) to see if they fire GA tags. Then in the "tag" pane of the preview panel you have to look into the GA tags (click the "more" link in the tag info) to see which tag sends empty values.
/collect is the endpoint for Google Analytics. The "t" parameter indicates what type of hit this is - in this case it's an event, which further confirmed by "ec" (event category), "ea" (event action) and "el" (event label).
So this is (as you already know) a Google Analytics event tracking call. However it is not a valid call, since the mandatory parameters ("ec" and "ea") are empty.
And alas you cannot get the name of the GTM tag from the network call. You would have to enable preview mode, step through the different GTM events (left side of the debug panel) to see if they fire GA tags. Then in the "tag" pane of the preview panel you have to look into the GA tags (click the "more" link in the tag info) to see which tag sends empty values.
edited yesterday
answered Nov 17 at 8:05
Eike Pierstorff
24.3k32245
24.3k32245
Thanks! With your advice, I was also able to find Google documentation that helped explain these query parameters even more: developers.google.com/analytics/devguides/collection/protocol/…
– looch
yesterday
add a comment |
Thanks! With your advice, I was also able to find Google documentation that helped explain these query parameters even more: developers.google.com/analytics/devguides/collection/protocol/…
– looch
yesterday
Thanks! With your advice, I was also able to find Google documentation that helped explain these query parameters even more: developers.google.com/analytics/devguides/collection/protocol/…
– looch
yesterday
Thanks! With your advice, I was also able to find Google documentation that helped explain these query parameters even more: developers.google.com/analytics/devguides/collection/protocol/…
– looch
yesterday
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53346160%2fhttp-get-finding-tag-name-for-fired-gtm-event%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown