http GET, finding tag name for fired GTM event












0














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&gtm=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.










share|improve this question



























    0














    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&gtm=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.










    share|improve this question

























      0












      0








      0







      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&gtm=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.










      share|improve this question













      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&gtm=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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 16 '18 at 22:18









      looch

      13711




      13711
























          1 Answer
          1






          active

          oldest

          votes


















          1














          /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.






          share|improve this answer























          • 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











          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
          });


          }
          });














          draft saved

          draft discarded


















          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









          1














          /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.






          share|improve this answer























          • 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
















          1














          /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.






          share|improve this answer























          • 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














          1












          1








          1






          /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.






          share|improve this answer














          /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.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          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


















          • 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


















          draft saved

          draft discarded




















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

          ComboBox Display Member on multiple fields

          Is it possible to collect Nectar points via Trainline?