<?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 how to collect configuration data in end to end manner in Upgrade to SaaS</title>
    <link>https://community.dynatrace.com/t5/Upgrade-to-SaaS/how-to-collect-configuration-data-in-end-to-end-manner/m-p/224826#M147</link>
    <description>&lt;P&gt;Hi team,&lt;BR /&gt;Actually we are migrating servers on prem to aws.I need existing setup configuration details in json format. In this scenario is there any way to get the data end to end information.&lt;/P&gt;
&lt;P&gt;for example: for dashboards using api we are getting owner name,dashboard name,id. but not getting the management zone wise.&lt;/P&gt;
&lt;P&gt;can you please help me&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 10 Oct 2023 07:52:39 GMT</pubDate>
    <dc:creator>k_narayana</dc:creator>
    <dc:date>2023-10-10T07:52:39Z</dc:date>
    <item>
      <title>how to collect configuration data in end to end manner</title>
      <link>https://community.dynatrace.com/t5/Upgrade-to-SaaS/how-to-collect-configuration-data-in-end-to-end-manner/m-p/224826#M147</link>
      <description>&lt;P&gt;Hi team,&lt;BR /&gt;Actually we are migrating servers on prem to aws.I need existing setup configuration details in json format. In this scenario is there any way to get the data end to end information.&lt;/P&gt;
&lt;P&gt;for example: for dashboards using api we are getting owner name,dashboard name,id. but not getting the management zone wise.&lt;/P&gt;
&lt;P&gt;can you please help me&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2023 07:52:39 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Upgrade-to-SaaS/how-to-collect-configuration-data-in-end-to-end-manner/m-p/224826#M147</guid>
      <dc:creator>k_narayana</dc:creator>
      <dc:date>2023-10-10T07:52:39Z</dc:date>
    </item>
    <item>
      <title>Re: how to collect configuration data in end to end manner</title>
      <link>https://community.dynatrace.com/t5/Upgrade-to-SaaS/how-to-collect-configuration-data-in-end-to-end-manner/m-p/224829#M148</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/67559"&gt;@k_narayana&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you looked up how to perform the migration in the documentation?&lt;BR /&gt;&lt;A href="https://www.dynatrace.com/support/help/upgrade" target="_blank"&gt;https://www.dynatrace.com/support/help/upgrade&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You have there a step-by-step description of what to do:)&lt;/P&gt;&lt;P&gt;Radek&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 11:37:26 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Upgrade-to-SaaS/how-to-collect-configuration-data-in-end-to-end-manner/m-p/224829#M148</guid>
      <dc:creator>radek_jasinski</dc:creator>
      <dc:date>2023-10-09T11:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: how to collect configuration data in end to end manner</title>
      <link>https://community.dynatrace.com/t5/Upgrade-to-SaaS/how-to-collect-configuration-data-in-end-to-end-manner/m-p/224836#M149</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/67559"&gt;@k_narayana&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;The documentation shared by&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/16832"&gt;@radek_jasinski&lt;/a&gt;&amp;nbsp;is very good and detailed, so definitely have a read at that.&lt;/P&gt;&lt;P&gt;To add some more information on the migration of configurations, you can use the&amp;nbsp;&lt;A title="Settings API link" href="https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings" target="_blank" rel="noopener"&gt;Settings API&lt;/A&gt;&amp;nbsp;which will give you JSON structures for the different configurations of your environment, depending on the&amp;nbsp;&lt;STRONG&gt;schema&lt;/STRONG&gt; you use. For example, for management zones it would be&amp;nbsp;&lt;STRONG&gt;builtin:management-zones&lt;/STRONG&gt;. You can see all the schema, list all the objects and get the JSON for every object individually with the different endpoints described in the link above.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example workflow:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Get all schemas via API&amp;nbsp;&lt;SPAN&gt;https://{your-domain}/e/{your-environment-id}/api/v2&lt;/SPAN&gt;&lt;SPAN class=""&gt;/settings/schemas (&lt;A href="https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings/schemas/get-all" target="_self"&gt;List schemas&lt;/A&gt;)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;For each schema listed above, get all objects for that schema with &lt;SPAN&gt;https://{your-domain}/e/{your-environment-id}/api/v2&lt;/SPAN&gt;/settings/objects&amp;nbsp;(&lt;A href="https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings/objects/get-objects" target="_blank" rel="noopener"&gt;List objects&lt;/A&gt;)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;For each object, get the full details of the object with&amp;nbsp;&lt;SPAN&gt;https://{your-domain}/e/{your-environment-id}/api/v2&lt;/SPAN&gt;/settings/objects/{objectId} (&lt;A href="https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings/objects/get-object" target="_blank" rel="noopener"&gt;View an object&lt;/A&gt;)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;Save the response and push it to your new environment with &lt;SPAN&gt;https://{your-domain}/e/{your-environment-id}/api/v2&lt;/SPAN&gt;/settings/objects&amp;nbsp;(&lt;A href="https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings/objects/post-object" target="_blank" rel="noopener"&gt;Create an object&lt;/A&gt;)&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Mon, 09 Oct 2023 12:06:31 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Upgrade-to-SaaS/how-to-collect-configuration-data-in-end-to-end-manner/m-p/224836#M149</guid>
      <dc:creator>victor_balbuena</dc:creator>
      <dc:date>2023-10-09T12:06:31Z</dc:date>
    </item>
  </channel>
</rss>

