<?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: Azure entities missing Resource Group name property in Cloud platforms</title>
    <link>https://community.dynatrace.com/t5/Cloud-platforms/Azure-entities-missing-Resource-Group-name-property/m-p/236895#M1537</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/14877"&gt;@ChadTurner&lt;/a&gt;&amp;nbsp;as of 1.282 it seems the list of affected entities is down to only.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;AZURE_EVENT_HUB&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;AZURE_SERVICE_BUS_NAMESPACE&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 13 Feb 2024 00:31:15 GMT</pubDate>
    <dc:creator>cv_dewr</dc:creator>
    <dc:date>2024-02-13T00:31:15Z</dc:date>
    <item>
      <title>Azure entities missing Resource Group name property</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Azure-entities-missing-Resource-Group-name-property/m-p/219157#M1247</link>
      <description>&lt;P&gt;While working on a script dealing with Azure entities we've collected in Dynatrace, I've found many entities are NOT getting their Resource Group property filled.&amp;nbsp; While most are.&amp;nbsp; This is causing me some troubles as I need the resource group name to determine ownership info for the entities.&lt;/P&gt;
&lt;P&gt;The entity types I'm not seeing Resource group names for are.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;AZURE_EVENT_HUB&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;AZURE_SERVICE_BUS_NAMESPACE&lt;/LI&gt;
&lt;LI&gt;AZURE_SQL_DATABASE&lt;/LI&gt;
&lt;LI&gt;AZURE_SQL_ELASTIC_POOL&lt;/LI&gt;
&lt;LI&gt;AZURE_SQL_SERVER&lt;/LI&gt;
&lt;LI&gt;AZURE_WEB_APP&lt;/LI&gt;
&lt;/UL&gt;
&lt;DIV&gt;Looking at the entity schema for each of those types, the property &lt;STRONG&gt;azureResourceGroupName&lt;/STRONG&gt; should be present. e.g. partial response from an API call to &lt;STRONG&gt;api/v2/entityTypes/AZURE_SQL_ELASTIC_POOL&lt;/STRONG&gt; .&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{
  "type": "AZURE_SQL_ELASTIC_POOL",
  "displayName": "Azure SQL Elastic Pool",
  "dimensionKey": "dt.entity.azure_sql_elastic_pool",
  "entityLimitExceeded": false,
  "properties": [
    {
      "id": "awsNameTag",
      "type": "String",
      "displayName": "awsNameTag"
    },
    {
      "id": "azureResourceGroupName",
      "type": "String",
      "displayName": "azureResourceGroupName"
    },
    {
      "id": "azureSqlElasticPoolDatabaseMaxCapacity",
      "type": "Number",
      "displayName": "azureSqlElasticPoolDatabaseMaxCapacity"
    },&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;When I query for an actual entity, the response does not show the expected properties.&lt;BR /&gt;partial response from an API call to&amp;nbsp;&lt;STRONG&gt;/api/v2/entities?entitySelector=type(AZURE_SQL_ELASTIC_POOL)&amp;amp;fields=+properties,+fromRelationships,+toRelationships&lt;/STRONG&gt; .&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;   {
      "entityId": "AZURE_SQL_ELASTIC_POOL-1B9ABA261E635612",
      "type": "AZURE_SQL_ELASTIC_POOL",
      "displayName": "xxxx",
      "properties": {
        "detectedName": "xxxx",
        "azureSqlElasticPoolStorageLimitMb": 0,
        "azureSqlElasticPoolDatabaseMaxCapacity": 6,
        "azureSqlElasticPoolTier": "GeneralPurpose",
        "azureSqlElasticPoolDatabaseMinCapacity": 0,
        "azureSqlElasticPoolDtu": 6
      },&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;AZURE_FUNCTION_APP entities are getting the azureResourceGroupName value filled. e.g.&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;    {
      "entityId": "AZURE_FUNCTION_APP-04FB38D380253D30",
      "type": "AZURE_FUNCTION_APP",
      "displayName": "xxxx",
      "properties": {
        "detectedName": "xxxx",
        "azureResourceId": "/subscriptions/xxxx/resourceGroups/xxxx/providers/Microsoft.Web/sites/xxxx",
        "azureResourceGroupName": "xxxx",
        "azureFunctionLanguage": "dotnet-isolated",
        "dnsNames": [
          "xxxx.azurewebsites.net"
        ],
        "sku": "ElasticPremium"
      },
      "fromRelationships": {&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;an equivalent WEB app in the same resource group gets nothing.&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;   {
      "entityId": "AZURE_WEB_APP-1D9BC13722E32A08",
      "type": "AZURE_WEB_APP",
      "displayName": "xxxx",
      "properties": {
        "detectedName": "xxxx"
      },
      "fromRelationships": {&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;all the new style entities CUSTOM_DEVICE based, e.g.&amp;nbsp;cloud&lt;img class="lia-deferred-image lia-image-emoji" src="https://community.dynatrace.com/html/@9E9F7E3C07AB0A8CC3C0D5648857F287/images/emoticons/azure.png" alt=":azure:" title=":azure:" /&gt;eventgrid:topics reports the resource group name, as the properties/customProperties/Resource group key/value. e.g. partial response from API&amp;nbsp;&lt;STRONG&gt;api/v2/entities?entitySelector=type(cloud&lt;img class="lia-deferred-image lia-image-emoji" src="https://community.dynatrace.com/html/@9E9F7E3C07AB0A8CC3C0D5648857F287/images/emoticons/azure.png" alt=":azure:" title=":azure:" /&gt;eventgrid:topics)&amp;amp;fields=+properties,+fromRelationships,+toRelationships&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&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; {
      "entityId": "CUSTOM_DEVICE-7BB76EA1191AA6DD",
      "type": "cloud‌‌eventgrid:topics",
      "displayName": "xxxx",
      "properties": {
        "detectedName": "xxxx",
        "customProperties": [
          {
            "value": "https://xxxx/api/events",
            "key": "Topic endpoint"
          },
          {
            "value": "/subscriptions/xxxx/resourceGroups/xxxx/providers/Microsoft.EventGrid/topics/xxxx",
            "key": "Resource ID"
          },
          {
            "value": "xxxx",
            "key": "Resource name"
          },
          {
            "value": "Australia Central",
            "key": "Region"
          },
          {
            "value": "xxxx",
            "key": "Subscription"
          },
          {
            "value": "Succeeded",
            "key": "Provisioning state"
          },
          {
            "value": "xxxx",
            "key": "Resource group"
          }
        ],&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's proving impossible to accomplish what I need to do with the missing data, the inconsistent locations of the data I can code around.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2023 11:41:53 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Azure-entities-missing-Resource-Group-name-property/m-p/219157#M1247</guid>
      <dc:creator>cv_dewr</dc:creator>
      <dc:date>2023-07-28T11:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: Azure entities missing Resource Group name property</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Azure-entities-missing-Resource-Group-name-property/m-p/236858#M1529</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/48601"&gt;@cv_dewr&lt;/a&gt;&amp;nbsp;are you still experiencing this issue?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 19:18:27 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Azure-entities-missing-Resource-Group-name-property/m-p/236858#M1529</guid>
      <dc:creator>ChadTurner</dc:creator>
      <dc:date>2024-02-12T19:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: Azure entities missing Resource Group name property</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Azure-entities-missing-Resource-Group-name-property/m-p/236895#M1537</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/14877"&gt;@ChadTurner&lt;/a&gt;&amp;nbsp;as of 1.282 it seems the list of affected entities is down to only.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;AZURE_EVENT_HUB&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;AZURE_SERVICE_BUS_NAMESPACE&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2024 00:31:15 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Azure-entities-missing-Resource-Group-name-property/m-p/236895#M1537</guid>
      <dc:creator>cv_dewr</dc:creator>
      <dc:date>2024-02-13T00:31:15Z</dc:date>
    </item>
  </channel>
</rss>

