<?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: DT and PowerBI integration in Open Q&amp;A</title>
    <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/168192#M17572</link>
    <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/20693"&gt;@roushan_kumar1&lt;/a&gt;, I want to link Dynatrace to power BI from scratch.&lt;/P&gt;</description>
    <pubDate>Wed, 23 Jun 2021 13:42:37 GMT</pubDate>
    <dc:creator>Malaik</dc:creator>
    <dc:date>2021-06-23T13:42:37Z</dc:date>
    <item>
      <title>DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/111840#M7977</link>
      <description>&lt;P&gt;Hi-&lt;/P&gt;&lt;P&gt;Has anyone integrated DT with PowerBI for environment api reports?&lt;/P&gt;&lt;P&gt;I want to use PowerBI for continuous reporting. Means Timeseries and Problem API chart should be feeding continuously to the PowerBI and we could easily customize the time frame for all metrics available.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2020 19:33:26 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/111840#M7977</guid>
      <dc:creator>roushan_kumar1</dc:creator>
      <dc:date>2020-04-23T19:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/111841#M7978</link>
      <description>&lt;P&gt;Hi &lt;A rel="user" href="https://answers.dynatrace.com/users/18405/view.html" nodeid="18405"&gt;@Roushan K.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Yes &lt;A rel="user" href="https://answers.dynatrace.com/users/4393/view.html" nodeid="4393"&gt;@Gil G.&lt;/A&gt; integrate them together&lt;/P&gt;&lt;P&gt;Yos &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 07:12:57 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/111841#M7978</guid>
      <dc:creator>Yosi_Neuman</dc:creator>
      <dc:date>2020-04-24T07:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/111842#M7979</link>
      <description>&lt;P&gt;can you please help me the way out.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 16:09:32 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/111842#M7979</guid>
      <dc:creator>roushan_kumar1</dc:creator>
      <dc:date>2020-04-24T16:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/111843#M7980</link>
      <description>&lt;P&gt;Hi &lt;A rel="user" href="https://answers.dynatrace.com/users/18405/view.html" nodeid="18405"&gt;@Roushan K.&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;It's a bit complicated to explain all in writing but I'll try to summarize the steps though.&lt;/P&gt;&lt;P&gt;Before hand, note there is a performance clinic I relied upon as far as I recall at &lt;A href="https://www.youtube.com/watch?v=LpH8IlUeBSU"&gt;https://www.youtube.com/watch?v=LpH8IlUeBSU&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Now for the steps:&lt;/P&gt;&lt;P&gt;1. in your powerBI report define a web data source with the url for the API you need (for each query you need a different data source on the report). &lt;/P&gt;&lt;P&gt;In this data source you can also use parameters such as host name and token so that the report may be reusable for other tenants if you need it.&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.dynatrace.com/legacyfs/online/24710-1587793023625.png" /&gt;&lt;/P&gt;&lt;P&gt;This example gets a list of the hosts in the environment.&lt;/P&gt;&lt;P&gt;DON'T FORGET to add the http headers required such as the "Authorization" for the token and the "Accept" to specify you expect json data.&lt;/P&gt;&lt;P&gt;2. Once the data source is defined, because it is in JSON format, you need to convert it to a tabular format. In the example above it's simple, but it could be that you'll need to traverse through the JSON result first until you get to the array part that includes the result. Once there, "Convert To Table"&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.dynatrace.com/legacyfs/online/24739-1587793435335.png" /&gt;&lt;/P&gt;&lt;P&gt;The above shows the results of the initial data source results. Use the "To Table" button to convert it to a table. Once pressed, you'll that the yellow header now shows Column1 instead of List.&lt;/P&gt;&lt;P&gt;3. After your data is in a "table format" you need to create the columns to refer to in your reports. Just use the Add Column and refer to the field name you need. Codewise in PowerBI it is (for example):&lt;/P&gt;&lt;P&gt;= Table.AddColumn(#"Converted to Table", "Host Name", each Record.Field([Column1],"displayName"))&lt;/P&gt;&lt;P&gt;Repeat these steps as necessary. If you go to advanced query editor you may end up with the following query code:&lt;/P&gt;&lt;P&gt;let&lt;/P&gt;&lt;P&gt;    Source = Json.Document(Web.Contents("https://" &amp;amp; HostName &amp;amp; ".live.dynatrace.com/api/v1/entity/infrastructure/hosts?showMonitoringCandidates=false&amp;amp;includeDetails=true", [Headers=[Accept="application/json", Authorization="Api-Token XXXXXX-XXXXX-XXXXX"]])),&lt;/P&gt;&lt;P&gt;    #"Converted to Table" = Table.FromList(Source, Splitter.SplitByNothing(), null, null, ExtraValues.Error),&lt;/P&gt;&lt;P&gt;    #"Added Custom" = Table.AddColumn(#"Converted to Table", "Host Name", each Record.Field([Column1],"displayName")),&lt;/P&gt;&lt;P&gt;    #"Added Custom1" = Table.AddColumn(#"Added Custom", "OsType", each Record.Field([Column1],"osType")),&lt;/P&gt;&lt;P&gt;    #"Added Custom2" = Table.AddColumn(#"Added Custom1", "OsVersion", each Record.Field([Column1],"osVersion")),&lt;/P&gt;&lt;P&gt;    #"Added Custom3" = Table.AddColumn(#"Added Custom2", "Host Group", each Record.Field(Record.Field([Column1],"hostGroup"),"name"))&lt;/P&gt;&lt;P&gt;in&lt;/P&gt;&lt;P&gt;    #"Added Custom3"&lt;/P&gt;&lt;P&gt;4. Once you apply and save the query you are ready to build your report. Just choose your visualizations and drg the columns from the right part to the visualizations.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.dynatrace.com/legacyfs/online/24768-1587793945817.png" /&gt;or&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.dynatrace.com/legacyfs/online/24740-1587794056482.png" /&gt;&lt;/P&gt;&lt;P&gt;In the last example you can see on the right many queries used for the reports and green/black columns in charts represent time periods comparisons.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;gil.&lt;/P&gt;</description>
      <pubDate>Sat, 25 Apr 2020 05:55:43 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/111843#M7980</guid>
      <dc:creator>gilgi</dc:creator>
      <dc:date>2020-04-25T05:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/111844#M7981</link>
      <description>&lt;P&gt;Thanks a lot Gil for taking out time and writing this. I will try it and will let you know.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 19:24:10 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/111844#M7981</guid>
      <dc:creator>roushan_kumar1</dc:creator>
      <dc:date>2020-04-29T19:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/111845#M7982</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://answers.dynatrace.com/users/4393/view.html"&gt;@Gil G&lt;/A&gt; Thanks for your help&lt;/P&gt;&lt;P&gt;it was very useful and worked for me.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2020 14:28:01 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/111845#M7982</guid>
      <dc:creator>roushan_kumar1</dc:creator>
      <dc:date>2020-06-08T14:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/168162#M17562</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/20693"&gt;@roushan_kumar1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will be very grateful and appreciate if you can help to make some work around that&lt;/P&gt;&lt;P&gt;My personal Email: &lt;A href="mailto:malaik.5@hotmail.com" target="_blank"&gt;malaik.5@hotmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;My WhatsApp: 00966508181250&lt;BR /&gt;Thanks a lot&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 08:03:21 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/168162#M17562</guid>
      <dc:creator>Malaik</dc:creator>
      <dc:date>2021-06-23T08:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/168177#M17568</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Dynatrace Services offer a complete BI solution. I'm using it in my company, this a good way to democratize Dynatrace usage.&lt;/P&gt;
&lt;P&gt;A Performance Clinic link: &lt;A href="https://www.youtube.com/watch?v=PNX0jCL8AHc" target="_blank"&gt;youtube.com/watch?v=PNX0jCL8AHc&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Aug 2021 13:46:32 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/168177#M17568</guid>
      <dc:creator>julien_duhamel1</dc:creator>
      <dc:date>2021-08-24T13:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/168191#M17571</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/23195"&gt;@Malaik&lt;/a&gt;- Please let me know what specific you are looking for. I can definitely assist you with that here.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 13:40:33 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/168191#M17571</guid>
      <dc:creator>roushan_kumar1</dc:creator>
      <dc:date>2021-06-23T13:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/168192#M17572</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/20693"&gt;@roushan_kumar1&lt;/a&gt;, I want to link Dynatrace to power BI from scratch.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 13:42:37 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/168192#M17572</guid>
      <dc:creator>Malaik</dc:creator>
      <dc:date>2021-06-23T13:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/168198#M17574</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/23195"&gt;@Malaik&lt;/a&gt;&amp;nbsp;- You will need PowerBI desktop app + Dynatrace Tenant URL+ Dynatrace APi authorization token to start.&lt;/P&gt;&lt;P&gt;If you know basics of PowerBI then you should be good to go.&lt;/P&gt;&lt;P&gt;I will highly encourage you to watch the video-&amp;nbsp;&lt;A href="https://www.youtube.com/watch?v=PNX0jCL8AHc" target="_blank"&gt;https://www.youtube.com/watch?v=PNX0jCL8AHc&lt;/A&gt;&amp;nbsp;as suggested by&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/12854"&gt;@julien_duhamel1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the video the real powerbi integration starts from 17:30. Give it a shot. If you still have any question after that I can assist further with that.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 14:28:01 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/168198#M17574</guid>
      <dc:creator>roushan_kumar1</dc:creator>
      <dc:date>2021-06-23T14:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/168289#M17607</link>
      <description>&lt;P&gt;&lt;A href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/23195" target="_blank"&gt;@Malaik&lt;/A&gt;&amp;nbsp;- Just checking do you still need any help?&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 15:33:28 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/168289#M17607</guid>
      <dc:creator>roushan_kumar1</dc:creator>
      <dc:date>2021-06-24T15:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/168502#M17655</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/20693"&gt;@roushan_kumar1&lt;/a&gt;&amp;nbsp;for your time,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes Im trying some works, but Im blocked to download and Install, the customer blocked every thing.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2021 06:53:00 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/168502#M17655</guid>
      <dc:creator>Malaik</dc:creator>
      <dc:date>2021-06-30T06:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/171587#M18233</link>
      <description>&lt;P&gt;Does anyone by chance have a copy of the template from the video?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Sep 2021 00:23:30 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/171587#M18233</guid>
      <dc:creator>ct_27</dc:creator>
      <dc:date>2021-09-02T00:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/171594#M18235</link>
      <description>&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":rolling_on_the_floor_laughing:"&gt;🤣&lt;/span&gt;&lt;img class="lia-deferred-image lia-image-emoji" src="https://community.dynatrace.com/html/@4AED6666727E9BEAD473B5BEC55BE8B6/images/emoticons/alert-blue.gif" alt=":alert_blue:" title=":alert_blue:" /&gt;&lt;img class="lia-deferred-image lia-image-emoji" src="https://community.dynatrace.com/html/@98F86AA2504CB3C4928711F28DF2685B/images/emoticons/fist-bump.gif" alt=":fist_bump:" title=":fist_bump:" /&gt;&lt;/P&gt;&lt;P&gt;I asked my self the same thing, and was searching in the video's comments to try to find it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I seems awesome one.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Sep 2021 06:10:53 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/171594#M18235</guid>
      <dc:creator>Malaik</dc:creator>
      <dc:date>2021-09-02T06:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/171611#M18238</link>
      <description>&lt;P&gt;The template is not free, you will have to pay Dynatrace to get them.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Sep 2021 12:58:03 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/171611#M18238</guid>
      <dc:creator>roushan_kumar1</dc:creator>
      <dc:date>2021-09-02T12:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/173387#M18549</link>
      <description>&lt;P&gt;Than you so much for the reply, unfortunate that Dynatrace does not provide the templates.&amp;nbsp; &amp;nbsp;By chance have you found a way to handle the "Next Page" process?&amp;nbsp; I've begun pulling a lot of data using the API but I constantly run into the page limits.&lt;/P&gt;&lt;P&gt;Is there some automated way to have the Query call NextPage and gather all the data?&amp;nbsp; Until then many of the reports I've built I can't fully use because they don't tell the full story.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Oct 2021 16:55:22 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/173387#M18549</guid>
      <dc:creator>ct_27</dc:creator>
      <dc:date>2021-10-04T16:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/210265#M25852</link>
      <description>&lt;P&gt;Hoooooo Great !&lt;BR /&gt;Here is what we are looking for for building our entreprise "Control Tower". now we will be able to integrate Dynatrace Tiles in our PBI Reports !&lt;BR /&gt;very thanks for this post Gil ! and Take Care.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 06:35:25 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/210265#M25852</guid>
      <dc:creator>JoeALVES</dc:creator>
      <dc:date>2023-04-20T06:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: DT and PowerBI integration</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/221545#M28225</link>
      <description>&lt;P&gt;Hi - I too am creating a Power Bi (PBI) dashboard, but want to include the Dynatrace usage &amp;amp; cost data for our entire instance, about 10 individual tenants.&amp;nbsp; In starting with the PBI webconnector, will I need to somehow integrate&amp;nbsp;&lt;U&gt;10&lt;/U&gt; different URLs and API tokens into one PBI dashboard?&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 17:29:04 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/DT-and-PowerBI-integration/m-p/221545#M28225</guid>
      <dc:creator>Finance_Sam</dc:creator>
      <dc:date>2023-08-24T17:29:04Z</dc:date>
    </item>
  </channel>
</rss>

