Consultas para la tabla ASCDeviceEvents
Para obtener información sobre el uso de estas consultas en Azure Portal, consulte tutorial de Log Analytics. Para obtener la API REST, consulte Consulta.
Errores de autenticación y atestación de dispositivos de Azure Sphere
Lista de errores de autenticación y atestación de dispositivos de Azure Sphere para la última semana, ordenados por tiempo.
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
Escala de tiempo de eventos de dispositivos de Azure Sphere
Escala de tiempo ordenada de todos los eventos generados por un dispositivo de Azure Sphere durante la última semana, para supervisar y solucionar los errores inesperados.
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
Diagrama de tiempo de eventos de latido del dispositivo de Azure Sphere
Un gráfico de tiempo de todos los eventos de generación de certificados iniciados por dispositivos de Azure Sphere en la última semana para supervisar continuamente el estado del dispositivo y ver las tendencias.
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
Dispositivos de Azure Sphere no actualizados al sistema operativo más reciente
Lista de dispositivos de Azure Sphere que no se han actualizado a la versión más reciente del sistema operativo durante la última semana.
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
Resumen de eventos de telemetría de dispositivos de Azure Sphere
Un gráfico circular que resume el recurso compartido de cada una de las categorías de eventos generadas por dispositivos de Azure Sphere en la última semana, para supervisar el estado general del dispositivo.
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