<?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: Bulk configuration of the IBM MQ endpoints in Extensions</title>
    <link>https://community.dynatrace.com/t5/Extensions/Bulk-configuration-of-the-IBM-MQ-endpoints/m-p/186459#M6139</link>
    <description>&lt;P&gt;we can try an sh similar like below if we support curl operation on api end points&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;url="apiendpoint/?q="&lt;/P&gt;&lt;P&gt;for i in&amp;nbsp;&amp;nbsp;$(caturl.txt);do&lt;BR /&gt;content="$(curl -s "$url/$i")"&lt;BR /&gt;echo "$content" &amp;gt;&amp;gt; output.txt&lt;BR /&gt;done&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where caturl.txt will include all endpoints that needed to be updated in next lines.&lt;/P&gt;</description>
    <pubDate>Fri, 13 May 2022 09:49:43 GMT</pubDate>
    <dc:creator>techean</dc:creator>
    <dc:date>2022-05-13T09:49:43Z</dc:date>
    <item>
      <title>Bulk configuration of the IBM MQ endpoints</title>
      <link>https://community.dynatrace.com/t5/Extensions/Bulk-configuration-of-the-IBM-MQ-endpoints/m-p/186352#M6135</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to perform a bulk configuration of the IBM MQ endpoints?&lt;BR /&gt;The customer has to configure 1000+ endpoints with the different names of groups.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Babar&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 10:19:05 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Bulk-configuration-of-the-IBM-MQ-endpoints/m-p/186352#M6135</guid>
      <dc:creator>Babar_Qayyum</dc:creator>
      <dc:date>2022-05-12T10:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: Bulk configuration of the IBM MQ endpoints</title>
      <link>https://community.dynatrace.com/t5/Extensions/Bulk-configuration-of-the-IBM-MQ-endpoints/m-p/186355#M6136</link>
      <description>&lt;P&gt;Yes. As it's an extension you can write a smalls script that utilizes the&amp;nbsp;&lt;A href="https://www.dynatrace.com/support/help/dynatrace-api/configuration-api/extensions-api/post-instance" target="_self"&gt;Extensions API&lt;/A&gt;&amp;nbsp;to add Endpoints.&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 11:04:39 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Bulk-configuration-of-the-IBM-MQ-endpoints/m-p/186355#M6136</guid>
      <dc:creator>pahofmann</dc:creator>
      <dc:date>2022-05-12T11:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: Bulk configuration of the IBM MQ endpoints</title>
      <link>https://community.dynatrace.com/t5/Extensions/Bulk-configuration-of-the-IBM-MQ-endpoints/m-p/186358#M6137</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/22796"&gt;@pahofmann&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your comments. Do you have such type of a script?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Babar&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 11:23:57 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Bulk-configuration-of-the-IBM-MQ-endpoints/m-p/186358#M6137</guid>
      <dc:creator>Babar_Qayyum</dc:creator>
      <dc:date>2022-05-12T11:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: Bulk configuration of the IBM MQ endpoints</title>
      <link>https://community.dynatrace.com/t5/Extensions/Bulk-configuration-of-the-IBM-MQ-endpoints/m-p/186444#M6138</link>
      <description>&lt;P&gt;Nothing I could share really, but it depends on the format the data is in anyway.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's a pretty straight forward script and should require only a few lines of code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create a JSON/YAML with the payload data as a template that you can read as a base for the request payload (can be copied from API explorer)&lt;/LI&gt;&lt;LI&gt;Read the data for the endoints (from a csv/cmdb or where ever it is)&lt;/LI&gt;&lt;LI&gt;Iterate over data&lt;OL&gt;&lt;LI&gt;replace values in template&lt;/LI&gt;&lt;LI&gt;send the request&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2022 08:05:49 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Bulk-configuration-of-the-IBM-MQ-endpoints/m-p/186444#M6138</guid>
      <dc:creator>pahofmann</dc:creator>
      <dc:date>2022-05-13T08:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: Bulk configuration of the IBM MQ endpoints</title>
      <link>https://community.dynatrace.com/t5/Extensions/Bulk-configuration-of-the-IBM-MQ-endpoints/m-p/186459#M6139</link>
      <description>&lt;P&gt;we can try an sh similar like below if we support curl operation on api end points&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;url="apiendpoint/?q="&lt;/P&gt;&lt;P&gt;for i in&amp;nbsp;&amp;nbsp;$(caturl.txt);do&lt;BR /&gt;content="$(curl -s "$url/$i")"&lt;BR /&gt;echo "$content" &amp;gt;&amp;gt; output.txt&lt;BR /&gt;done&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where caturl.txt will include all endpoints that needed to be updated in next lines.&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2022 09:49:43 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Bulk-configuration-of-the-IBM-MQ-endpoints/m-p/186459#M6139</guid>
      <dc:creator>techean</dc:creator>
      <dc:date>2022-05-13T09:49:43Z</dc:date>
    </item>
  </channel>
</rss>

