<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>article How can I find which ActiveGate my HTTP Monitor execution ran on? in Troubleshooting</title>
    <link>https://community.dynatrace.com/t5/Troubleshooting/How-can-I-find-which-ActiveGate-my-HTTP-Monitor-execution-ran-on/ta-p/236034</link>
    <description>&lt;H2 id="toc-hId-1646435014"&gt;Summary&lt;/H2&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;When you’re troubleshooting intermittent HTTP Monitor failures in Dynatrace, it’s often necessary to determine which&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Synthetic ActiveGate&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;executed a specific monitor run—especially when using&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Private Synthetic Locations&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;with multiple ActiveGates.&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;This guide explains how to quickly find the exact ActiveGate involved in an HTTP Monitor execution and what to do if the information isn’t immediately visible.&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-TOC indent="15" liststyle="disc" maxheadinglevel="3"&gt;&lt;/LI-TOC&gt;&lt;/P&gt;
&lt;DIV class="lia-message-template-content-zone"&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2 id="toc-hId--709208442"&gt;Problem&lt;/H2&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;In Dynatrace, HTTP Monitor execution details show the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;synthetic location&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp; and &lt;STRONG&gt;engineId&lt;/STRONG&gt;&amp;nbsp;&lt;/SPAN&gt;where the run occurred. How can this information be used to determine&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;which specific ActiveGate&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;executed the test?&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;Knowing this is essential when diagnosing:&lt;/DIV&gt;
&lt;UL&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Intermittent failures&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Host‑specific issues&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Configuration differences&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Network or certificate problems&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Proxy‑related behavior&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 id="toc-hId-1033601893"&gt;&amp;nbsp;&lt;/H2&gt;
&lt;H2 id="toc-hId-837088388"&gt;Private Location Resolution&lt;/H2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3 id="toc-hId--1911582078"&gt;(Latest Dynatrace) How to find the ActiveGate used for an HTTP Monitor execution&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;STRONG&gt;Open a Notebook&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;in Dynatrace.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Add a DQL section.&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Paste in the following query:&lt;BR /&gt;&lt;LI-CODE lang="markup"&gt;fetch dt.synthetic.events
|filter event.type == "http_monitor_execution"
|fields timestamp, dt.synthetic.monitor.id, monitor.name, dt.entity.synthetic_location, location.name, event.id, result.engine.id, numberToHexString(toLong(result.engine.id))
|lookup [ fetch dt.entity.synthetic_location ],
    sourceField: dt.entity.synthetic_location,
    lookupField: id,
    fields: { location.name = entity.name }​
| fieldsRename hex = `numberToHexString(toLong(result.engine.id))`&lt;/LI-CODE&gt;&lt;/LI&gt;
&lt;LI&gt;You can refine the filter to search for specific executions or monitors. For example, you could search for only the monitor with id &lt;STRONG&gt;HTTP_CHECK-472DC1A4B78A1758&amp;nbsp;&lt;/STRONG&gt;by adding to the filter.&lt;BR /&gt;&lt;LI-CODE lang="markup"&gt;|filter event.type == "http_monitor_execution"  and dt.synthetic.monitor.id=="HTTP_CHECK-472DC1A4B78A1758"​&lt;/LI-CODE&gt;&lt;/LI&gt;
&lt;LI&gt;Run the query&amp;nbsp;&lt;BR /&gt;
&lt;DIV id="tinyMceEditorHannahM_7" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV&gt;The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;CODE&gt;hex&lt;/CODE&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;column contains the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;ActiveGate ID in hexadecimal format&lt;/STRONG&gt;.&lt;/DIV&gt;
&lt;DIV&gt;Copy this hex value and use it to search on the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Deployment status &amp;gt; ActiveGates&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;page to find the exact ActiveGate that ran the HTTP Monitor execution.&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-03-06 155846.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/32273iDEDA097DC972A0CB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2026-03-06 155846.png" alt="Screenshot 2026-03-06 155846.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3 id="toc-hId--1911582078"&gt;(Classic) How to find the ActiveGate used for an HTTP Monitor execution&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;DIV&gt;Navigate to the &lt;STRONG&gt;HTTP Monitor&lt;/STRONG&gt; in Dynatrace.&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV&gt;&lt;SPAN&gt;Select &lt;/SPAN&gt;&lt;STRONG style="font-family: inherit;"&gt;Analyze execution details&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV&gt;Choose the execution you want to investigate.&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV&gt;If multiple locations appear, ensure you select the correct one&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HannahM_1-1706784638050.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/17356i463CE716E3EFE827/image-size/medium?v=v2&amp;amp;px=400" role="button" title="HannahM_1-1706784638050.png" alt="HannahM_1-1706784638050.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV&gt;
&lt;P&gt;&amp;nbsp;Inside the execution details, note the &lt;STRONG&gt;engineId&lt;/STRONG&gt; value.&lt;/P&gt;
&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HannahM_2-1706784783630.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/17357i23B18F71161FB640/image-size/medium?v=v2&amp;amp;px=400" role="button" title="HannahM_2-1706784783630.png" alt="HannahM_2-1706784783630.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;DIV&gt;
&lt;UL&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Dynatrace displays this value in &lt;STRONG&gt;decimal format&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;However, the &lt;STRONG&gt;ActiveGates page uses hexadecimal (hex)&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Convert the decimal engineId to hex using:&lt;/SPAN&gt;
&lt;OL&gt;
&lt;LI&gt;Your calculator&lt;/LI&gt;
&lt;LI&gt;Any online decimal‑to‑hex converter&lt;BR /&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;&lt;STRONG&gt;&lt;BR /&gt;Example:&lt;/STRONG&gt;&lt;BR /&gt;Decimal: &lt;CODE&gt;1532483830&lt;/CODE&gt;&lt;BR /&gt;Hex: &lt;CODE&gt;5B57D8F6&lt;/CODE&gt;&lt;/DIV&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Go to &lt;STRONG style="font-family: inherit;"&gt;Deployment Status &amp;gt; ActiveGates&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;Filter by &lt;STRONG&gt;ID&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;Enter the ID in hex format, prefixed with &lt;CODE&gt;0x&lt;/CODE&gt;:&lt;BR /&gt;&lt;LI-CODE lang="markup"&gt;0x5B57D8F6​&lt;/LI-CODE&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HannahM_1-1706785289301.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/17360iE28BE0F6C08B9BE0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="HannahM_1-1706785289301.png" alt="HannahM_1-1706785289301.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;You should now see the exact &lt;STRONG&gt;Synthetic ActiveGate&lt;/STRONG&gt; that executed the monitor.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;H2 id="toc-hId-1770552097"&gt;Cluster and Public Locations Resolution&lt;/H2&gt;
&lt;DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;Identifying the execution ActiveGate is not available through the UI.&lt;BR /&gt;Please&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;open a chat&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and provide:&lt;/DIV&gt;
&lt;UL&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;A link to the execution&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;A short description of the issue&lt;/LI&gt;
&lt;/UL&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;Support will help identify which ActiveGate processed the execution.&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2 id="toc-hId--781604864"&gt;What's Next&lt;/H2&gt;
&lt;P&gt;&lt;SPAN&gt;If you weren't able to find the ActiveGate that ran the execution using the steps above, open a chat and a link to the execution you are interested.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3 id="toc-hId-764691966"&gt;Related reading&lt;/H3&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":open_book:"&gt;📖&lt;/span&gt;&amp;nbsp;&amp;nbsp;&lt;A class="" href="https://community.dynatrace.com/t5/Troubleshooting/Synthetic-Troubleshooting-Map/ta-p/250426" target="_blank"&gt;Synthetic Troubleshooting Map&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":open_book:"&gt;📖&lt;/span&gt;&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.dynatrace.com/docs/observe/digital-experience/synthetic-on-grail/synthetic-metrics/http-monitor-metrics" target="_self" rel="noreferrer"&gt;HTTP Monitor metrics in Synthetic on Grail&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":open_book:"&gt;📖&lt;/span&gt;&amp;nbsp;&amp;nbsp;&lt;A href="https://docs.dynatrace.com/docs/analyze-explore-automate/dashboards-and-notebooks/notebooks" rel="noopener noreferrer" target="_blank"&gt;Notebooks&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":open_book:"&gt;📖&lt;/span&gt;&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.dynatrace.com/docs/observe/digital-experience/synthetic-monitoring/analysis-and-alerting/synthetic-details-for-http-monitors-classic" target="_self" rel="noreferrer"&gt;(Classic) HTTP Monitors reporting results&lt;/A&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
    <pubDate>Fri, 06 Mar 2026 16:00:44 GMT</pubDate>
    <dc:creator>HannahM</dc:creator>
    <dc:date>2026-03-06T16:00:44Z</dc:date>
    <item>
      <title>How can I find which ActiveGate my HTTP Monitor execution ran on?</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/How-can-I-find-which-ActiveGate-my-HTTP-Monitor-execution-ran-on/ta-p/236034</link>
      <description>&lt;H2 id="toc-hId-1646435014"&gt;Summary&lt;/H2&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;When you’re troubleshooting intermittent HTTP Monitor failures in Dynatrace, it’s often necessary to determine which&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Synthetic ActiveGate&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;executed a specific monitor run—especially when using&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Private Synthetic Locations&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;with multiple ActiveGates.&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;This guide explains how to quickly find the exact ActiveGate involved in an HTTP Monitor execution and what to do if the information isn’t immediately visible.&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-TOC indent="15" liststyle="disc" maxheadinglevel="3"&gt;&lt;/LI-TOC&gt;&lt;/P&gt;
&lt;DIV class="lia-message-template-content-zone"&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2 id="toc-hId--709208442"&gt;Problem&lt;/H2&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;In Dynatrace, HTTP Monitor execution details show the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;synthetic location&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp; and &lt;STRONG&gt;engineId&lt;/STRONG&gt;&amp;nbsp;&lt;/SPAN&gt;where the run occurred. How can this information be used to determine&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;which specific ActiveGate&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;executed the test?&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;Knowing this is essential when diagnosing:&lt;/DIV&gt;
&lt;UL&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Intermittent failures&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Host‑specific issues&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Configuration differences&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Network or certificate problems&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Proxy‑related behavior&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 id="toc-hId-1033601893"&gt;&amp;nbsp;&lt;/H2&gt;
&lt;H2 id="toc-hId-837088388"&gt;Private Location Resolution&lt;/H2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3 id="toc-hId--1911582078"&gt;(Latest Dynatrace) How to find the ActiveGate used for an HTTP Monitor execution&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;STRONG&gt;Open a Notebook&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;in Dynatrace.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Add a DQL section.&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Paste in the following query:&lt;BR /&gt;&lt;LI-CODE lang="markup"&gt;fetch dt.synthetic.events
|filter event.type == "http_monitor_execution"
|fields timestamp, dt.synthetic.monitor.id, monitor.name, dt.entity.synthetic_location, location.name, event.id, result.engine.id, numberToHexString(toLong(result.engine.id))
|lookup [ fetch dt.entity.synthetic_location ],
    sourceField: dt.entity.synthetic_location,
    lookupField: id,
    fields: { location.name = entity.name }​
| fieldsRename hex = `numberToHexString(toLong(result.engine.id))`&lt;/LI-CODE&gt;&lt;/LI&gt;
&lt;LI&gt;You can refine the filter to search for specific executions or monitors. For example, you could search for only the monitor with id &lt;STRONG&gt;HTTP_CHECK-472DC1A4B78A1758&amp;nbsp;&lt;/STRONG&gt;by adding to the filter.&lt;BR /&gt;&lt;LI-CODE lang="markup"&gt;|filter event.type == "http_monitor_execution"  and dt.synthetic.monitor.id=="HTTP_CHECK-472DC1A4B78A1758"​&lt;/LI-CODE&gt;&lt;/LI&gt;
&lt;LI&gt;Run the query&amp;nbsp;&lt;BR /&gt;
&lt;DIV id="tinyMceEditorHannahM_7" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV&gt;The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;CODE&gt;hex&lt;/CODE&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;column contains the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;ActiveGate ID in hexadecimal format&lt;/STRONG&gt;.&lt;/DIV&gt;
&lt;DIV&gt;Copy this hex value and use it to search on the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Deployment status &amp;gt; ActiveGates&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;page to find the exact ActiveGate that ran the HTTP Monitor execution.&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-03-06 155846.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/32273iDEDA097DC972A0CB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2026-03-06 155846.png" alt="Screenshot 2026-03-06 155846.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3 id="toc-hId--1911582078"&gt;(Classic) How to find the ActiveGate used for an HTTP Monitor execution&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;DIV&gt;Navigate to the &lt;STRONG&gt;HTTP Monitor&lt;/STRONG&gt; in Dynatrace.&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV&gt;&lt;SPAN&gt;Select &lt;/SPAN&gt;&lt;STRONG style="font-family: inherit;"&gt;Analyze execution details&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV&gt;Choose the execution you want to investigate.&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV&gt;If multiple locations appear, ensure you select the correct one&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HannahM_1-1706784638050.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/17356i463CE716E3EFE827/image-size/medium?v=v2&amp;amp;px=400" role="button" title="HannahM_1-1706784638050.png" alt="HannahM_1-1706784638050.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV&gt;
&lt;P&gt;&amp;nbsp;Inside the execution details, note the &lt;STRONG&gt;engineId&lt;/STRONG&gt; value.&lt;/P&gt;
&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HannahM_2-1706784783630.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/17357i23B18F71161FB640/image-size/medium?v=v2&amp;amp;px=400" role="button" title="HannahM_2-1706784783630.png" alt="HannahM_2-1706784783630.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;DIV&gt;
&lt;UL&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Dynatrace displays this value in &lt;STRONG&gt;decimal format&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;However, the &lt;STRONG&gt;ActiveGates page uses hexadecimal (hex)&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Convert the decimal engineId to hex using:&lt;/SPAN&gt;
&lt;OL&gt;
&lt;LI&gt;Your calculator&lt;/LI&gt;
&lt;LI&gt;Any online decimal‑to‑hex converter&lt;BR /&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;&lt;STRONG&gt;&lt;BR /&gt;Example:&lt;/STRONG&gt;&lt;BR /&gt;Decimal: &lt;CODE&gt;1532483830&lt;/CODE&gt;&lt;BR /&gt;Hex: &lt;CODE&gt;5B57D8F6&lt;/CODE&gt;&lt;/DIV&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;LI&gt;Go to &lt;STRONG style="font-family: inherit;"&gt;Deployment Status &amp;gt; ActiveGates&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;Filter by &lt;STRONG&gt;ID&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;Enter the ID in hex format, prefixed with &lt;CODE&gt;0x&lt;/CODE&gt;:&lt;BR /&gt;&lt;LI-CODE lang="markup"&gt;0x5B57D8F6​&lt;/LI-CODE&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HannahM_1-1706785289301.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/17360iE28BE0F6C08B9BE0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="HannahM_1-1706785289301.png" alt="HannahM_1-1706785289301.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;You should now see the exact &lt;STRONG&gt;Synthetic ActiveGate&lt;/STRONG&gt; that executed the monitor.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;H2 id="toc-hId-1770552097"&gt;Cluster and Public Locations Resolution&lt;/H2&gt;
&lt;DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;Identifying the execution ActiveGate is not available through the UI.&lt;BR /&gt;Please&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;open a chat&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and provide:&lt;/DIV&gt;
&lt;UL&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;A link to the execution&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;A short description of the issue&lt;/LI&gt;
&lt;/UL&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;Support will help identify which ActiveGate processed the execution.&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2 id="toc-hId--781604864"&gt;What's Next&lt;/H2&gt;
&lt;P&gt;&lt;SPAN&gt;If you weren't able to find the ActiveGate that ran the execution using the steps above, open a chat and a link to the execution you are interested.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3 id="toc-hId-764691966"&gt;Related reading&lt;/H3&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":open_book:"&gt;📖&lt;/span&gt;&amp;nbsp;&amp;nbsp;&lt;A class="" href="https://community.dynatrace.com/t5/Troubleshooting/Synthetic-Troubleshooting-Map/ta-p/250426" target="_blank"&gt;Synthetic Troubleshooting Map&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":open_book:"&gt;📖&lt;/span&gt;&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.dynatrace.com/docs/observe/digital-experience/synthetic-on-grail/synthetic-metrics/http-monitor-metrics" target="_self" rel="noreferrer"&gt;HTTP Monitor metrics in Synthetic on Grail&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":open_book:"&gt;📖&lt;/span&gt;&amp;nbsp;&amp;nbsp;&lt;A href="https://docs.dynatrace.com/docs/analyze-explore-automate/dashboards-and-notebooks/notebooks" rel="noopener noreferrer" target="_blank"&gt;Notebooks&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":open_book:"&gt;📖&lt;/span&gt;&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.dynatrace.com/docs/observe/digital-experience/synthetic-monitoring/analysis-and-alerting/synthetic-details-for-http-monitors-classic" target="_self" rel="noreferrer"&gt;(Classic) HTTP Monitors reporting results&lt;/A&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 06 Mar 2026 16:00:44 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/How-can-I-find-which-ActiveGate-my-HTTP-Monitor-execution-ran-on/ta-p/236034</guid>
      <dc:creator>HannahM</dc:creator>
      <dc:date>2026-03-06T16:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find which ActiveGate my HTTP Monitor execution ran on?</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/How-can-I-find-which-ActiveGate-my-HTTP-Monitor-execution-ran-on/tac-p/236068#M551</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/1433"&gt;@HannahM&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It would be interesting to get this Product Idea: &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.dynatrace.com/t5/Product-ideas/Split-filter-Synthetic-metrics-by-Activegate-Browser-doing/idi-p/185872" target="_blank"&gt;https://community.dynatrace.com/t5/Product-ideas/Split-filter-Synthetic-metrics-by-Activegate-Browser-doing/idi-p/185872&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 18:00:33 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/How-can-I-find-which-ActiveGate-my-HTTP-Monitor-execution-ran-on/tac-p/236068#M551</guid>
      <dc:creator>AntonioSousa</dc:creator>
      <dc:date>2024-02-01T18:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find which ActiveGate my HTTP Monitor execution ran on?</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/How-can-I-find-which-ActiveGate-my-HTTP-Monitor-execution-ran-on/tac-p/236194#M552</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/1433"&gt;@HannahM&lt;/a&gt;&amp;nbsp;Thanks a lot, this is very much informative.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tijust&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2024 00:13:53 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/How-can-I-find-which-ActiveGate-my-HTTP-Monitor-execution-ran-on/tac-p/236194#M552</guid>
      <dc:creator>sujit_k_singh</dc:creator>
      <dc:date>2024-02-04T00:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find which ActiveGate my HTTP Monitor execution ran on?</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/How-can-I-find-which-ActiveGate-my-HTTP-Monitor-execution-ran-on/tac-p/236199#M553</link>
      <description>&lt;P&gt;Thanks for sharing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Alex Romanenkov&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2024 09:06:41 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/How-can-I-find-which-ActiveGate-my-HTTP-Monitor-execution-ran-on/tac-p/236199#M553</guid>
      <dc:creator>Romanenkov_Al3x</dc:creator>
      <dc:date>2024-02-04T09:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find which ActiveGate my HTTP Monitor execution ran on?</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/How-can-I-find-which-ActiveGate-my-HTTP-Monitor-execution-ran-on/tac-p/236200#M554</link>
      <description>&lt;P&gt;Thanks Hannah&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2024 09:33:23 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/How-can-I-find-which-ActiveGate-my-HTTP-Monitor-execution-ran-on/tac-p/236200#M554</guid>
      <dc:creator>Malaik</dc:creator>
      <dc:date>2024-02-04T09:33:23Z</dc:date>
    </item>
  </channel>
</rss>

