IoT 中心的 Azure 模板部署和诊断设置不起作用

Azure template deployment for IoT Hub and diagnostics settings does not work

我将 Azure RM 模板部署与 Visual Studio 2017 资源组项目一起使用,以在 Log Analytics 中部署带有诊断设置的 IoTHub 实例。

单独部署 IoTHub 成功,问题出在诊断设置模板的部署上。

我按照说明将诊断设置部署为 Non-Compute resource template

我收到的奇怪错误如下:

Error: Code=InvalidTemplate; Message=Deployment template validation failed: 'The template resource 'Microsoft.Insights/BasicDiagnostics' for type 'providers/diagnosticSettings' at line '69' and column '9' has incorrect segment lengths. A nested resource type must have identical number of segments as its resource name. A root resource type must have segment length one greater than its resource name.

为什么它会像这样失败,即使我按照文档提供的示例进行操作?

这是我的模板定义:

  "resources": [
    {
      "type": "Microsoft.Devices/IotHubs",
      "sku": {
        "name": "[parameters('sku.name')]",
        "capacity": "[parameters('sku.units')]"
      },
      "name": "[parameters('iothubname')]",
      "apiVersion": "2018-04-01",
      "location": "[resourceGroup().location]",
      "properties": {
        "eventHubEndpoints": {
          "events": {
            "retentionTimeInDays": "[parameters('endpoints.events.retention')]",
            "partitionCount": "[parameters('endpoints.events.partitions')]"
          },
          "operationsMonitoringEvents": {
            "retentionTimeInDays": "[parameters('endpoints.operationsMonitoringEvents.retention')]",
            "partitionCount": "[parameters('endpoints.operationsMonitoringEvents.partitions')]"
          }
        },
        "features": "[parameters('features')]"
      }
    },
    {
      "type": "providers/diagnosticSettings",
      "name": "[concat('Microsoft.Insights/', parameters('iotHub.diagnostics.settingName'))]",
      "dependsOn": [
        "[resourceId('Microsoft.Devices/IoTHubs', parameters('iothubname'))]"
      ],
      "apiVersion": "2017-05-01-preview",
      "properties": {
        "name": "[parameters('iotHub.diagnostics.settingName')]",
        "workspaceId": "[parameters('iotHub.diagnostics.workspaceId')]",
        "logs": [
          {
            "category": "Connections",
            "enabled": true,
            "retentionPolicy": {
              "days": 0,
              "enabled": false
            }
          },
          {
            "category": "Configurations",
            "enabled": true,
            "retentionPolicy": {
              "days": 0,
              "enabled": false
            }
          },
          {
            "category": "D2CTwinOperations",
            "enabled": true,
            "retentionPolicy": {
              "days": 0,
              "enabled": false
            }
          },
          {
            "category": "C2DTwinOperations",
            "enabled": true,
            "retentionPolicy": {
              "days": 0,
              "enabled": false
            }
          }
        ],
        "metrics": [
          {
            "category": "AllMetrics",
            "enabled": true,
            "retentionPolicy": {
              "days": 0,
              "enabled": false
            }
          }
        ]
      }
    }
  ]

非常感谢任何帮助!

这需要是 IOT 中心的子资源,而不是单独的资源。

{
    "type": "Microsoft.Devices/IotHubs",
    "sku": {
        "name": "[parameters('sku.name')]",
        "capacity": "[parameters('sku.units')]"
    },
    "name": "[parameters('iothubname')]",
    "apiVersion": "2018-04-01",
    "location": "[resourceGroup().location]",
    "properties": {
        xxx
    },
    "features": "[parameters('features')]",
    "resources": [
        {
            "type": "providers/diagnosticsSettings",
            xxx
        }
    ]
}

},