@Adams, Roger Thanks for asking question! The error message "AI: TelemetryChannel found a telemetry item without an InstrumentationKey. This is a required field and must be set in either your config file or at application startup." indicates that there is an issue with the configuration of your Application Insights instance.
Try the following steps:
string APP_INSIGHTS = builder.Configuration["APPLICATIONINSIGHTS_CONNECTION_STRING"] ?? "";
var options = new ApplicationInsightsServiceOptions { ConnectionString = APP_INSIGHTS };
builder.Services.AddApplicationInsightsTelemetry(options: options);
Let us know