<?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: API to get a list of Web Transactions in Dynatrace API</title>
    <link>https://community.dynatrace.com/t5/Dynatrace-API/API-to-get-a-list-of-Web-Transactions/m-p/52784#M211</link>
    <description>&lt;P&gt;There is no way to get a list of transactions serviced by a particular service at this time through the API, though. If you are looking for metrics then the timeseries API is what you need, but these are things like response time, failure rate, 4xx/5xx errors, etc. Unfortunately, no method to just pull a list of transactions for a given time.&lt;/P&gt;&lt;P&gt;Hayden&lt;/P&gt;</description>
    <pubDate>Thu, 01 Feb 2018 19:39:57 GMT</pubDate>
    <dc:creator>hayden_miedema</dc:creator>
    <dc:date>2018-02-01T19:39:57Z</dc:date>
    <item>
      <title>API to get a list of Web Transactions</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/API-to-get-a-list-of-Web-Transactions/m-p/52782#M209</link>
      <description>&lt;P&gt;I just got onto dynatrace SaaS offering and installed the dynatrace one agent. I then installed an apache tomcat webserver on the box and started sending it some traffic. The traffic shows up in the UI under this &lt;BR /&gt;&lt;BR /&gt;Transactions &amp;amp; Services -&amp;gt; Service Name -&amp;gt; View dynamic request&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.dynatrace.com/legacyfs/online/15658-screen-shot-2018-01-31-at-40434-pm.png" /&gt;&lt;/P&gt;&lt;P&gt;What i need is to get this list of web transactions (with their time series ids etc) through REST API so that i can fetch their data and do some analysis.&lt;/P&gt;&lt;P&gt;I looked at the documentation here &lt;A href="https://www.dynatrace.com/support/help/dynatrace-api/"&gt;https://www.dynatrace.com/support/help/dynatrace-a...&lt;/A&gt; and i explored the timeseries  and Topology &amp;amp; Smartscape apis. There are things i noticed&lt;BR /&gt;&lt;BR /&gt;1. When i asked for all the time series metrics i get a huge list of time series metrics but it doesn't show any of my application metrics.&lt;BR /&gt;2. I could not find any way to filter these time series by any service or application. &lt;BR /&gt;&lt;BR /&gt;Need this urgently so any help is greatly appreciated. &lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2018 00:20:10 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/API-to-get-a-list-of-Web-Transactions/m-p/52782#M209</guid>
      <dc:creator>raghu_iitr</dc:creator>
      <dc:date>2018-02-01T00:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: API to get a list of Web Transactions</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/API-to-get-a-list-of-Web-Transactions/m-p/52783#M210</link>
      <description>&lt;P&gt;&lt;BR /&gt;	If you make a call to the timeseries API endpoint with no filters or incorrect parameters it will return a list of all available timeseries metrics, that is probably what you are seeing.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;	If you want a timeseries for a specific request, first you need to mark it as a &lt;A href="https://www.dynatrace.com/support/help/server-side-services/service-monitoring/what-are-key-requests/?_ga=2.183771938.56615752.1517449574-792069763.1469092424&amp;amp;_gac=1.61251038.1516024528.Cj0KCQiAv_HSBRCkARIsAGaSsrCC9FXaxYz1NKqjaUFhKyH3KMIJtAKxIIS8BgWRXqv8fEhUEuuzuVgaApFSEALw_wcB"&gt;key request&lt;/A&gt; and then choose the right timeseries ID, for the response time e.g: &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;	&lt;EM&gt;com.dynatrace.builtin:servicemethod.responsetime&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;	The API call then could be:&lt;/P&gt;&lt;PRE&gt;..../api/v1/timeseries?relativeTime=day&amp;amp;aggregationType=MEDIAN&amp;amp;timeseriesId=com.dynatrace.builtin:servicemethod.responsetime&lt;/PRE&gt;&lt;P&gt;This will give you the response time for all key requests, e.g.:&lt;/P&gt;&lt;PRE&gt;{&lt;BR /&gt;    "result": {&lt;BR /&gt;        "dataPoints": {&lt;BR /&gt;            "SERVICE_METHOD-899CCEBC08736F7A": [&lt;BR /&gt;                [&lt;BR /&gt;                    1517512200000,&lt;BR /&gt;                    2613281.5&lt;BR /&gt;                ],&lt;BR /&gt;                [&lt;BR /&gt;                    1517512800000,&lt;BR /&gt;                    null&lt;BR /&gt;                ]&lt;BR /&gt;            ]&lt;BR /&gt;        },&lt;BR /&gt;        "timeseriesId": "com.dynatrace.builtin:servicemethod.responsetime",&lt;BR /&gt;        "unit": "MicroSecond (µs)",&lt;BR /&gt;        "entities": {&lt;BR /&gt;            "SERVICE_METHOD-899CCEBC08736F7A": " /dologin.action"&lt;BR /&gt;        },&lt;BR /&gt;        "resolutionInMillisUTC": 600000,&lt;BR /&gt;        "aggregationType": "MEDIAN"&lt;BR /&gt;    }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;Each entry in the first array is a timestamp and the corresponding response time (or null if the request did not occur in that timeframe).&lt;/P&gt;&lt;P&gt;You can then filter for specific entities with the &lt;EM&gt;entity&lt;/EM&gt; parameter. &lt;/P&gt;&lt;P&gt;If I had multiple request in the previous example and wanted to filter on the &lt;EM&gt;/dologin.action&lt;/EM&gt; request I could do so with:&lt;/P&gt;&lt;PRE&gt;..../api/v1/timeseries?relativeTime=day&amp;amp;aggregationType=MEDIAN&amp;amp;timeseriesId=com.dynatrace.builtin:servicemethod.responsetime&amp;amp;entity=SERVICE_METHOD-899CCEBC08736F7A&lt;/PRE&gt;&lt;P&gt;You can also find the entity parameter in the URL if you open any entity, be it request, application, host, service, ....&lt;/P&gt;&lt;P&gt;Hope this gets you going, if you have any further question, just shoot them over!&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2018 19:36:41 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/API-to-get-a-list-of-Web-Transactions/m-p/52783#M210</guid>
      <dc:creator>pahofmann</dc:creator>
      <dc:date>2018-02-01T19:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: API to get a list of Web Transactions</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/API-to-get-a-list-of-Web-Transactions/m-p/52784#M211</link>
      <description>&lt;P&gt;There is no way to get a list of transactions serviced by a particular service at this time through the API, though. If you are looking for metrics then the timeseries API is what you need, but these are things like response time, failure rate, 4xx/5xx errors, etc. Unfortunately, no method to just pull a list of transactions for a given time.&lt;/P&gt;&lt;P&gt;Hayden&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2018 19:39:57 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/API-to-get-a-list-of-Web-Transactions/m-p/52784#M211</guid>
      <dc:creator>hayden_miedema</dc:creator>
      <dc:date>2018-02-01T19:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: API to get a list of Web Transactions</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/API-to-get-a-list-of-Web-Transactions/m-p/52785#M212</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Is there any way to get list of transactions with metrics right now?&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Oct 2018 14:28:38 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/API-to-get-a-list-of-Web-Transactions/m-p/52785#M212</guid>
      <dc:creator>vladislav_samoy</dc:creator>
      <dc:date>2018-10-11T14:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: API to get a list of Web Transactions</title>
      <link>https://community.dynatrace.com/t5/Dynatrace-API/API-to-get-a-list-of-Web-Transactions/m-p/207455#M2350</link>
      <description>&lt;P&gt;Product idea at&amp;nbsp;&lt;A href="https://community.dynatrace.com/t5/Dynatrace-product-ideas/API-to-get-the-request-list-of-a-service/idc-p/207425" target="_blank"&gt;https://community.dynatrace.com/t5/Dynatrace-product-ideas/API-to-get-the-request-list-of-a-service/idc-p/207425&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2023 13:34:03 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dynatrace-API/API-to-get-a-list-of-Web-Transactions/m-p/207455#M2350</guid>
      <dc:creator>ben_wrightson</dc:creator>
      <dc:date>2023-03-20T13:34:03Z</dc:date>
    </item>
  </channel>
</rss>

