ExamQuestions.com

Register
Login
Microsoft Azure IoT Developer (AZ-220) Exam Questions

Microsoft

Microsoft Azure IoT Developer (AZ-220)

89 / 125

Question 89:

You have smart devices deployed all over your IoT solution. You need to monitor their operation health. You experience that some of the downstream devices have connectivity issues from time to time. You know that the $edgeHub’s metadata contains health and connectivity information, therefore you start investigating the module twin of the device’s edgeHub and here is what you see: 
<pre>{
"deviceId": "Windows109",
"moduleId": "$edgeHub",
"etag": "AAAAAAAAAAU=",
"deviceEtag": "NzgwNjA1MDU2",
"status": "enabled",
"statusUpdateTime": "0001-01-01T00:00:00Z",
"connectionState": "Disconnected",
"lastActivityTime": "0001-01-01T00:00:00Z",
"cloudToDeviceMessageCount": 0,
"authenticationType": "sas",
"x509Thumbprint": {
"primaryThumbprint": null,
"secondaryThumbprint": null
},
"version": 102,
"properties": {
"desired": { "···" },
"reported": {
"schemaVersion": "1.0",
"version": { "···" },
"lastDesiredVersion": 5,
"lastDesiredStatus": { "···" },
"clients": {
"Windows109/SimulatedTemperatureSensor": {
"status": "Disconnected",
"lastConnectedTimeUtc": "2020-04-08T21:42:42.1743956Z",
"lastDisconnectedTimeUtc": "2020-04-09T07:02:42.1398325Z"
}
},
"$metadata": { "···" },
"$version": 97
}
}
}
</pre>
Does it help you investigate the problem?

Answer options:

A.Yes
B.No