Question 13:
You have smart devices deployed around your IoT solution. You need to monitor their operation health. You experience that some of the devices have connectivity issues from time to time. You know that the $edgeAgent contains health and connectivity data about the edge modules, therefore you start investigating the module twin of the device’s edgeAgent: <pre class="brush:java;">{ "deviceId": "Windows004", "moduleId": "$edgeAgent", "etag": "AABBBBBAAAU=", "deviceEtag": "KzfgNjA5mDKz", "status": "enabled", "statusUpdateTime": "2020-01-01T00:00:00Z", "connectionState": "Disconnected", "lastActivityTime": "2020-01-01T00:00:00Z", "cloudToDeviceMessageCount": 0, "authenticationType": "sas", "x509Thumbprint": { "primaryThumbprint": null, "secondaryThumbprint": null }, "version": 14, "properties": { "desired": { "···" }, "reported": { "schemaVersion": "2.0", "version": { "···" }, "lastDesiredStatus": { "···" }, "runtime": { "···" }, "systemModules": { "edgeAgent": { "···" }, "edgeHub": { "···" } }, "lastDesiredVersion": 2, "modules": { "TemperatureSensor": { "···" } }, "$metadata": { "···" }, "$version": 22 } } } </pre> Does it help you investigate the problem?
Answer options:
A.Yes B.No