Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
For information on using these queries in the Azure portal, see Log Analytics tutorial. For the REST API, see Query.
Get user actionable logs generated by MedTech service.
AHDSMedTechDiagnosticLogs
| order by TimeGenerated desc
| take 100
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
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
Get user actionable logs from the Normalization stage of the MedTech service.
AHDSMedTechDiagnosticLogs
| where OperationName == "Normalization"
| order by TimeGenerated desc
| take 100
Get user actionable logs from the FHIR conversion stage of the MedTech service.
AHDSMedTechDiagnosticLogs
| where OperationName == "FHIRConversion"
| order by TimeGenerated desc
| take 100