Hello charlie curtis,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
I understand that you needed how to view Log analytics data in application insights.
To resolve the issue of telemetry not appearing in Application Insights for a .NET 9 isolated Azure Function App and with all you've done, you need to first confirm that the Application Insights resource is workspace-based and correctly linked to the same Log Analytics workspace where logs are already visible. This can be verified by navigating to Application Insights > Properties. For a reference
Next, instead of relying on the classic Application Insights UI, telemetry should be queried directly from the Logs (Analytics) section using Kusto Query Language (KQL). A basic query like traces | where timestamp > ago(1h) | order by timestamp desc helps confirm if telemetry is being ingested. - https://learn.microsoft.com/en-us/azure/azure-functions/analyze-telemetry-data
For .NET 9 isolated process functions, it’s critical to explicitly configure the Application Insights SDK in Program.cs. This includes adding builder.Services.AddApplicationInsightsTelemetryWorkerService(); and builder.Logging.AddApplicationInsights(); to ensure telemetry is properly captured and sent. For more details.
To validate that telemetry is reaching Application Insights, tools like Fiddler or SDK diagnostic logs can be used to inspect outgoing telemetry and confirm successful HTTP 200 responses from the ingestion endpoint. Check here for a reference
Additionally, if the Application Insights SDK is already configured, it’s advisable to disable Diagnostic Settings on the Function App to avoid redundant or conflicting telemetry streams. This helps prevent duplication and ensures clarity in data sources. Check this reference
Finally, to visualize telemetry effectively in a workspace-based Application Insights setup, you should also leverage Workbooks. These allow for custom dashboards and visualizations using KQL queries, providing a more tailored and insightful view of telemetry data. Check here too for a reference
I hope this is helpful! Do not hesitate to let me know if you have any other questions or clarifications.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful.