Hey everyone! My organization is transitioning from using Azure Function Apps to Azure VMs to run our ETL processes. Currently, I'm saving the logs locally on the VM as .txt files, but I'm looking to store them in an Azure storage account instead. I also want to enable KQL mode on these logs so that we can easily query them and analyze the data. Does anyone have advice on how to achieve this? Thanks in advance!
1 Answer
You can definitely use KQL with a Log Analytics Workspace. To get logs ingested there, consider using Application Insights tailored to your scenario instead of dealing directly with log files. This way, you don't even need a separate Storage Account.

Hey man, thanks a lot! That really helped.