Sdílet prostřednictvím


Dotazy na tabulku ASCDeviceEvents

Informace o používání těchto dotazů na webu Azure Portal najdete v kurzu služby Log Analytics. Informace o rozhraní REST API najdete v tématu Dotaz.

Selhání ověřování a ověření identity zařízení Azure Sphere

Seznam selhání ověřování a ověření identity zařízení Azure Sphere za poslední týden seřazený podle času

ASCDeviceEvents
| where OperationName == "DeviceCertificateEvent" and
        Properties.EventType == "DeviceAttestationFailure" or Properties.EventType == "DeviceCertificateEvent" and
        ResultType == "Failure" // Filter by time by adding " | where TimeGenerated > ago(7d) " for last 7 days of data or using time picker in the UI
| project TimeGenerated, DeviceId, Properties, ResultDescription, Location
| sort by TimeGenerated desc
| limit 100

Časová osa událostí zařízení Azure Sphere

Seřazená časová osa všech událostí generovaných zařízením Azure Sphere během minulého týdne pro monitorování a řešení jakýchkoli neočekávaných selhání

ASCDeviceEvents
| where OperationName == "DeviceCertificateEvent" or Properties.DeviceTelemetryEventCategory == "AppCrash" // Remove/Add filters to see all/specific events. Filter data by Device by adding " | where DeviceId == "Your Device ID" " 
| project TimeGenerated, OperationName, ResultType, ResultDescription, Properties, Location
| sort by TimeGenerated desc
| limit 100

Časový diagram událostí prezenčních signálů zařízení Azure Sphere

Časový diagram všech událostí generování certifikátů iniciovaných zařízeními Azure Sphere za poslední týden, který nepřetržitě monitoruje stav zařízení a zobrazuje trendy.

let Interval = timespan(1d); // Interval for the Chart 
ASCDeviceEvents
| where OperationName == "DeviceCertificateEvent" and 
        Properties.EventType == "DeviceCertificatesGenerate" and 
        ResultType == "Success"
| summarize Device_Heartbeat_Events=count() by bin(TimeGenerated, Interval)
| render timechart

Zařízení Azure Sphere se neaktualizují na nejnovější operační systém

Seznam zařízení Azure Sphere, která nebyla aktualizována na nejnovější verzi operačního systému za poslední týden.

ASCDeviceEvents
| where OperationName == "DeviceUpdateEvent" and  
        todouble(Properties.InstalledOSVersion) != todouble(Properties.TargetedOSVersion) // Filter by time by adding " | where TimeGenerated > ago(7d) " for last 7 days of data or using time picker in the UI
| summarize by DeviceId
| limit 100

Souhrn událostí telemetrie zařízení Azure Sphere

Piechart se souhrnem podílu jednotlivých kategorií událostí generovaných zařízeními Azure Sphere za poslední týden za účelem monitorování celkového stavu zařízení

ASCDeviceEvents
| where OperationName == "DeviceTelemetryEvent" // Filter by time by adding " | where TimeGenerated > ago(7d) " for last 7 days of data or using time picker in the UI
| summarize count() by tostring(Properties.DeviceTelemetryEventCategory)
| render piechart