Hi @Kyrian Willis ,
I do want to make the distinction that AzureWebAppDiagnostics doesn't gain you Azure Monitor logs support. It, depending on configuration, writes to either a text file or blob storage; see https://learn.microsoft.com/en-US/dotnet/core/extensions/logging-providers#azure-app-service. You can configure AzureFileLoggerOptions or AzureBlobLoggerOptions but by default, configs are pulled from your app.settings.json, see https://github.com/dotnet/aspnetcore/blob/c925f99cddac0df90ed0bc4a07ecda6b054a0b02/src/Logging.AzureAppServices/src/AzureAppServicesLoggerFactoryExtensions.cs#L32.
Having said that, unfortunately, AppServiceAppLogs doesn't yet support .NET Core, here are the currently supported types. I do know AppServiceConsoleLogs support for .NET Core is currently being worked on.
Regards,
Ryan