http GET, finding tag name for fired GTM event
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.
google-tag-manager amp-html
add a comment |
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.
google-tag-manager amp-html
add a comment |
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.
google-tag-manager amp-html
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.
google-tag-manager amp-html
google-tag-manager amp-html
asked Nov 16 '18 at 22:18
looch
13711
13711
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
/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
Nov 19 '18 at 13:01
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
/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
Nov 19 '18 at 13:01
add a comment |
/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
Nov 19 '18 at 13:01
add a comment |
/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 Nov 19 '18 at 9:17
answered Nov 17 '18 at 8:05
Eike Pierstorff
24.6k32345
24.6k32345
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
Nov 19 '18 at 13:01
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
Nov 19 '18 at 13:01
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
Nov 19 '18 at 13:01
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
Nov 19 '18 at 13:01
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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