An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.
This is not a third Azure resource or an error. unknown_service:Microsoft.Azure.WebJobs.Script.WebHost is OpenTelemetry’s fallback service name for the WebJobs Script Host, the process used by Azure Functions and WebJobs. Since your App Service contains a continuous WebJob and both apps send to the same Application Insights resource, that WebJob is the likely source.
Set a stable role name on the resource that emits it. For OpenTelemetry, add OTEL_SERVICE_NAME=timerocket-backend-webjob to the Web App’s application settings, use a different value on the Function App, then restart both apps. Application Insights uses service.name as the Cloud Role Name.
You can confirm the producer first by filtering Logs for that cloud_RoleName and comparing cloud_RoleInstance and sdkVersion while stopping and starting the WebJob. Existing telemetry keeps the old label; only new data uses the new name.