Share via

Function app missing Invocation logs

Pranab Nath 0 Reputation points
2025-06-12T11:17:22.8666667+00:00

Dear Azure Support Team,

I am reaching out to report an issue with invocation logs not appearing in the Azure portal for our Function Apps, specifically for blob event triggers. Despite waiting over 48 hours, the logs have not been populated. This issue is consistent across multiple Function Apps, all running version 4.

We would appreciate your assistance in determining whether this is a platform-related issue or if there might be a misconfiguration on our side. Any guidance or troubleshooting steps to resolve this matter promptly would be greatly appreciated.

Looking forward to your earliest support on this.

Best Regards

FPS

Azure Functions
Azure Functions

An Azure service that provides an event-driven serverless compute platform.


1 answer

Sort by: Most helpful
  1. RChotu 3,210 Reputation points Microsoft External Staff Moderator
    2025-06-17T09:50:32.57+00:00

    Try to check it with using below host.json:

    
    {
    
        "version": "2.0",
    
      "logging": {
    
        "applicationInsights": {
    
          "samplingSettings": {
    
            "isEnabled": true,
    
            "excludedTypes": "Request"
    
          },
    
          "enableLiveMetricsFilters": true
    
        },
    
        "default": "Information",
    
        "Function.Function1": "Information"
    
      }
    
    }
    
    
    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.