Hi @Lawrence Brindise ,
Welcome to the Microsoft Q&A Platform!
To get console logs from your C# .NET 4.7.2 console app (running as a Web Job in Azure App Service) into Log Analytics, for that check these things
Enable Diagnostic Settings:
Go to your App Service in the Azure portal.
Navigate to Monitoring > Diagnostic settings.
Add a new diagnostic setting, and ensure AppServiceConsoleLogs is enabled.
Select your Log Analytics workspace to route the logs.
Check Log Analytics:
In your Log Analytics workspace just run the query:
AzureDiagnostics
| where ResourceProvider == "Microsoft.Web"
| where Category == "AppConsoleLogs"
For more information refer the link:
https://learn.microsoft.com/en-us/azure/azure-monitor/essentials/activity-log?tabs=powershell
If the answer is helpful, please click "Accept Answer" and kindly upvote it.