Queries for the AHDSMedTechDiagnosticLogs table

Most recent actionable MedTech logs

Get user actionable logs generated by MedTech service.

AHDSMedTechDiagnosticLogs
| order by TimeGenerated desc
| take 100

Log count per MedTech log or exception type

Get the count of the logs emitted from MedTech service per log type and operation. The result contains what exception is thrown how many times.

AHDSMedTechDiagnosticLogs
| summarize Count = count() by LogType, OperationName

MedTech healthcheck exceptions

Get exceptions caused by failing healthchecks to dependent Azure resources (eg. FHIR Service, Event Hub).

AHDSMedTechDiagnosticLogs
| where LogType == "HealthCheckException"
| order by TimeGenerated desc
| take 100

MedTech normalization stage logs

Get user actionable logs from the Normalization stage of the MedTech service.

AHDSMedTechDiagnosticLogs
| where OperationName == "Normalization"
| order by TimeGenerated desc
| take 100

MedTech FHIR conversion stage logs

Get user actionable logs from the FHIR conversion stage of the MedTech service.

AHDSMedTechDiagnosticLogs
| where OperationName == "FHIRConversion"
| order by TimeGenerated desc
| take 100