<?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>topic Re: How do get synthetic monitor availabililty from API? in Dynatrace API</title>
    <link>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225901#M2707</link>
    <description>&lt;P&gt;That's because now-30d is more than 30d, (30 days and few hours), and when you set the resolution to 30d you still have some extra points to be captured, so you get two values.&lt;/P&gt;&lt;P&gt;Setting the resolution to a higher number than the from will get you one single data point then.&lt;/P&gt;&lt;P&gt;from=now-30d, resolution=31d&lt;/P&gt;&lt;P&gt;from=now-7d, resolution=8d&lt;/P&gt;&lt;P&gt;from=now-90d, resolution=91d&lt;/P&gt;</description>
    <pubDate>Wed, 18 Oct 2023 19:35:15 GMT</pubDate>
    <dc:creator>dannemca</dc:creator>
    <dc:date>2023-10-18T19:35:15Z</dc:date>
    <item>
      <title>How do get synthetic monitor availabililty from API?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225474#M2689</link>
      <description>&lt;P&gt;I would like to query the API with the id of a specific synthetic monitor and get the availability for the current day, for the last 7 days, for the last 30 days and for the last 90 days.&lt;/P&gt;&lt;P&gt;The API documentation indicates that general information about a monitor is available, but I can't find any documenation on how to get the availability numbers.&lt;/P&gt;&lt;P&gt;Is this possible through the API?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 13:40:42 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225474#M2689</guid>
      <dc:creator>DuaneRoelands</dc:creator>
      <dc:date>2023-10-16T13:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do get synthetic monitor availabililty from API?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225483#M2690</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/42547"&gt;@DuaneRoelands&lt;/a&gt; , you can achieve this with the Get metric data points API: &lt;A href="https://www.dynatrace.com/support/help/dynatrace-api/environment-api/metric-v2/get-data-points" target="_blank" rel="noopener"&gt;https://www.dynatrace.com/support/help/dynatrace-api/environment-api/metric-v2/get-data-points &lt;/A&gt;&lt;/P&gt;&lt;P&gt;And use the builtin metrics for Synthetic Monitors, &lt;A href="https://www.dynatrace.com/support/help/observe-and-explore/metrics/built-in-metrics#synthetic-monitoring" target="_blank" rel="noopener"&gt;https://www.dynatrace.com/support/help/observe-and-explore/metrics/built-in-metrics#synthetic-monitoring&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example, querying an HTTP monitor ID from last 30 days:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;curl --location 'https://tenant.live.dynatrace.com/api/v2/metrics/query?from=now-30d&amp;amp;resolution=30d&amp;amp;metricSelector=builtin%3Asynthetic.http.availability.location.total%3Afilter(and(or(in(%22dt.entity.http_check%22%2CentitySelector(%22type(http_check)%2CentityId(~%22HTTP_CHECK-B97FBA280E3DC655~%22)%22)))))%3AsplitBy(%22dt.entity.http_check%22%2C%22dt.entity.synthetic_location%22)%3Asort(value(auto%2Cdescending))' \ --header 'Authorization: Api-token dt0c01.4OHVEPBHJGFYCVRCPHAI4FU4.tokenwithrightscope'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;result:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
    "totalCount": 1,
    "nextPageKey": null,
    "resolution": "30d",
    "result": [
        {
            "metricId": "builtin:synthetic.http.availability.location.total:filter(and(or(in(\"dt.entity.http_check\",entitySelector(\"type(http_check),entityId(~\"HTTP_CHECK-B97FBA280E3DC655~\")\"))))):splitBy(\"dt.entity.http_check\",\"dt.entity.synthetic_location\"):sort(value(auto,descending))",
            "dataPointCountRatio": 0.0,
            "dimensionCountRatio": 1.0E-5,
            "data": [
                {
                    "dimensions": [
                        "HTTP_CHECK-B97FBA280E3DC655",
                        "SYNTHETIC_LOCATION-27E967621146D2EC"
                    ],
                    "dimensionMap": {
                        "dt.entity.synthetic_location": "SYNTHETIC_LOCATION-27E967621146D2EC",
                        "dt.entity.http_check": "HTTP_CHECK-B97FBA280E3DC655"
                    },
                    "timestamps": [
                        1697500800000
                    ],
                    "values": [
                        99.71761587744338
                    ]
                }
            ]
        }
    ]
}&lt;/LI-CODE&gt;&lt;P&gt;where:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;from=now-30d&lt;UL&gt;&lt;LI&gt;query last 30 days&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;resolution=30d&lt;UL&gt;&lt;LI&gt;get the resolution of one single value with the average of last 30 days&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;metricSelector=builtin:synthetic.http.availability.location.total&lt;UL&gt;&lt;LI&gt;that's the metric selector where you can filter by a specific Monitor ID, work on the split by locations, if requried, etc, you can go crazy here.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Try and let us know.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 14:31:25 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225483#M2690</guid>
      <dc:creator>dannemca</dc:creator>
      <dc:date>2023-10-16T14:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do get synthetic monitor availabililty from API?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225863#M2696</link>
      <description>&lt;P&gt;Can't get data using this method.&amp;nbsp; Steps:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Browsed through the Dynatrace UI to a synthetic at this URL:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;https://{environmentid}.live.dynatrace.com/ui/browser-monitor/SYNTHETIC_TEST-6F96250FB9911AAC?gtf=-2h&amp;amp;gf=all&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Took the "SYNTHETIC_TEST-6F96250FB9911AAC" value from that URL and plugged into the URL described above:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;https://{environmentid}.live.dynatrace.com/api/v2/metrics/query?from=now-30d&amp;amp;resolution=30d&amp;amp;metricSelector=builtin:synthetic.http.availability.location.total:filter(and(or(in("dt.entity.http_check",entitySelector("type(http_check),entityId(~"SYNTHETIC_TEST-6F96250FB9911AAC~")"))))):splitBy("dt.entity.http_check","dt.entity.synthetic_location"):sort(value(auto,descending))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Got the following JSON response:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
    "totalCount": 0,
    "nextPageKey": null,
    "resolution": "30d",
    "result": [
        {
            "metricId": "builtin:synthetic.http.availability.location.total:filter(and(or(in(\"dt.entity.http_check\",entitySelector(\"type(http_check),entityId(~\"SYNTHETIC_TEST-6F96250FB9911AAC~\")\"))))):splitBy(\"dt.entity.http_check\",\"dt.entity.synthetic_location\"):sort(value(auto,descending))",
            "dataPointCountRatio": 0.0,
            "dimensionCountRatio": 0.0,
            "data": []
        }
    ]
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What am I missing?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 14:17:13 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225863#M2696</guid>
      <dc:creator>DuaneRoelands</dc:creator>
      <dc:date>2023-10-18T14:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: How do get synthetic monitor availabililty from API?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225887#M2697</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/42547"&gt;@DuaneRoelands&lt;/a&gt; , since you want to retrieve data from a Browser Monitor, you need to replace the metric to its respective entity.&lt;/P&gt;&lt;P&gt;from: builtin:synthetic.http.availability.location.total&lt;/P&gt;&lt;P&gt;to: builtin:synthetic.browser.availability.location.total&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;https://{environmentid}.live.dynatrace.com/api/v2/metrics/query?from=now-30d&amp;amp;resolution=30d&amp;amp;metricSelector=builtin:synthetic.browser.availability.location.total:filter(and(or(in("dt.entity.synthetic_test",entitySelector("type(synthetic_test),entityId(~"SYNTHETIC_TEST-6F96250FB9911AAC~")"))))):splitBy("dt.entity.synthetic_test","dt.entity.synthetic_location"):sort(value(auto,descending))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try and let us know.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 17:18:49 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225887#M2697</guid>
      <dc:creator>dannemca</dc:creator>
      <dc:date>2023-10-18T17:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: How do get synthetic monitor availabililty from API?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225888#M2698</link>
      <description>&lt;LI-CODE lang="markup"&gt;{
    "totalCount": 0,
    "nextPageKey": null,
    "resolution": "30d",
    "warnings": [
        "The dimension key `dt.entity.synthetic_location` has been referenced, but the metric has no such key."
    ],
    "result": [
        {
            "metricId": "builtin:synthetic.browser.availability.location.total:filter(and(or(in(\"dt.entity.synthetic_test\",entitySelector(\"type(synthetic_test),entityId(~\"SYNTHETIC_TEST-6F96250FB9911AAC~\")\"))))):splitBy(\"dt.entity.synthetic_test\",\"dt.entity.synthetic_location\"):sort(value(auto,descending))",
            "dataPointCountRatio": 0.0,
            "dimensionCountRatio": 2.0E-5,
            "data": [],
            "warnings": [
                "The dimension key `dt.entity.synthetic_location` has been referenced, but the metric has no such key."
            ]
        }
    ]
}&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 18 Oct 2023 17:23:43 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225888#M2698</guid>
      <dc:creator>DuaneRoelands</dc:creator>
      <dc:date>2023-10-18T17:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do get synthetic monitor availabililty from API?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225889#M2699</link>
      <description>&lt;P&gt;Sorry, &lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/42547"&gt;@DuaneRoelands&lt;/a&gt; my mistake.&lt;/P&gt;&lt;P&gt;try this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;https://{environmentid}.live.dynatrace.com/api/v2/metrics/query?from=now-30d&amp;amp;resolution=30d&amp;amp;metricSelector=builtin:synthetic.browser.availability.location.total:filter(and(or(in("dt.entity.synthetic_test",entitySelector("type(synthetic_test),entityId(~"SYNTHETIC_TEST-6F96250FB9911AAC~")"))))):splitBy("dt.entity.synthetic_test","dt.entity.geolocation"):sort(value(auto,descending))&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 18 Oct 2023 17:29:21 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225889#M2699</guid>
      <dc:creator>dannemca</dc:creator>
      <dc:date>2023-10-18T17:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: How do get synthetic monitor availabililty from API?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225893#M2700</link>
      <description>&lt;P&gt;Almost there.&amp;nbsp; How can I get ONLY the dimension that includes the availability without the GEOLOCATION value?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 17:39:37 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225893#M2700</guid>
      <dc:creator>DuaneRoelands</dc:creator>
      <dc:date>2023-10-18T17:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do get synthetic monitor availabililty from API?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225895#M2702</link>
      <description>&lt;P&gt;Just remove it from the splitby condition&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;https://{environmentid}.live.dynatrace.com/api/v2/metrics/query?from=now-30d&amp;amp;resolution=30d&amp;amp;metricSelector=builtin:synthetic.browser.availability.location.total:filter(and(or(in("dt.entity.synthetic_test",entitySelector("type(synthetic_test),entityId(~"SYNTHETIC_TEST-6F96250FB9911AAC~")"))))):splitBy("dt.entity.synthetic_test"):sort(value(auto,descending))&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 18 Oct 2023 18:29:27 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225895#M2702</guid>
      <dc:creator>dannemca</dc:creator>
      <dc:date>2023-10-18T18:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: How do get synthetic monitor availabililty from API?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225896#M2703</link>
      <description>&lt;P&gt;Why are there two values in the result?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
    "totalCount": 1,
    "nextPageKey": null,
    "resolution": "30d",
    "result": [
        {
            "metricId": "builtin:synthetic.browser.availability.location.total:filter(and(or(in(\"dt.entity.synthetic_test\",entitySelector(\"type(synthetic_test),entityId(~\"SYNTHETIC_TEST-6F96250FB9911AAC~\")\"))))):splitBy(\"dt.entity.synthetic_test\"):sort(value(auto,descending))",
            "dataPointCountRatio": 0.0,
            "dimensionCountRatio": 2.0E-5,
            "data": [
                {
                    "dimensions": [
                        "SYNTHETIC_TEST-6F96250FB9911AAC"
                    ],
                    "dimensionMap": {
                        "dt.entity.synthetic_test": "SYNTHETIC_TEST-6F96250FB9911AAC"
                    },
                    "timestamps": [
                        1695081600000,
                        1697673600000
                    ],
                    "values": [
                        99.65797381270639,
                        100
                    ]
                }
            ]
        }
    ]
}&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 18 Oct 2023 18:36:46 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225896#M2703</guid>
      <dc:creator>DuaneRoelands</dc:creator>
      <dc:date>2023-10-18T18:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do get synthetic monitor availabililty from API?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225898#M2705</link>
      <description>&lt;P&gt;That's due to the timestamp from and the resolution. Try do use a higher resolution , like resolution=31d&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 19:18:18 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225898#M2705</guid>
      <dc:creator>dannemca</dc:creator>
      <dc:date>2023-10-18T19:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: How do get synthetic monitor availabililty from API?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225899#M2706</link>
      <description>&lt;P&gt;I'm not sure I understand.&amp;nbsp; If the from is now-30 and the resolution is 30, I would expect to only get one value back.&lt;/P&gt;&lt;P&gt;What's the right way to get a single value for the past 30 days (or any specific time period like 7 days or 90 days?).&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 19:27:44 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225899#M2706</guid>
      <dc:creator>DuaneRoelands</dc:creator>
      <dc:date>2023-10-18T19:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do get synthetic monitor availabililty from API?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225901#M2707</link>
      <description>&lt;P&gt;That's because now-30d is more than 30d, (30 days and few hours), and when you set the resolution to 30d you still have some extra points to be captured, so you get two values.&lt;/P&gt;&lt;P&gt;Setting the resolution to a higher number than the from will get you one single data point then.&lt;/P&gt;&lt;P&gt;from=now-30d, resolution=31d&lt;/P&gt;&lt;P&gt;from=now-7d, resolution=8d&lt;/P&gt;&lt;P&gt;from=now-90d, resolution=91d&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 19:35:15 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225901#M2707</guid>
      <dc:creator>dannemca</dc:creator>
      <dc:date>2023-10-18T19:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: How do get synthetic monitor availabililty from API?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225902#M2708</link>
      <description>&lt;P&gt;&lt;SPAN&gt;from=now-90d, resolution=91d returns multiple values.&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;/api/v2/metrics/query?from=now-90d&amp;amp;resolution=91d&amp;amp;metricSelector=builtin:synthetic.browser.availability.location.total:filter(and(or(in("dt.entity.synthetic_test",entitySelector("type(synthetic_test),entityId(~"SYNTHETIC_TEST-6F96250FB9911AAC~")"))))):splitBy("dt.entity.synthetic_test"):sort(value(auto,descending))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
    "totalCount": 1,
    "nextPageKey": null,
    "resolution": "91d",
    "result": [
        {
            "metricId": "builtin:synthetic.browser.availability.location.total:filter(and(or(in(\"dt.entity.synthetic_test\",entitySelector(\"type(synthetic_test),entityId(~\"SYNTHETIC_TEST-6F96250FB9911AAC~\")\"))))):splitBy(\"dt.entity.synthetic_test\"):sort(value(auto,descending))",
            "dataPointCountRatio": 0.0,
            "dimensionCountRatio": 2.0E-5,
            "data": [
                {
                    "dimensions": [
                        "SYNTHETIC_TEST-6F96250FB9911AAC"
                    ],
                    "dimensionMap": {
                        "dt.entity.synthetic_test": "SYNTHETIC_TEST-6F96250FB9911AAC"
                    },
                    "timestamps": [
                        1690156800000,
                        1698019200000
                    ],
                    "values": [
                        100,
                        99.88410972041746
                    ]
                }
            ]
        }
    ]
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 19:42:48 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225902#M2708</guid>
      <dc:creator>DuaneRoelands</dc:creator>
      <dc:date>2023-10-18T19:42:48Z</dc:date>
    </item>
    <item>
      <title>Re: How do get synthetic monitor availabililty from API?</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225904#M2709</link>
      <description>&lt;P&gt;Try a higher resolution then. resolution=95d.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 20:54:14 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/How-do-get-synthetic-monitor-availabililty-from-API/m-p/225904#M2709</guid>
      <dc:creator>dannemca</dc:creator>
      <dc:date>2023-10-18T20:54:14Z</dc:date>
    </item>
  </channel>
</rss>

