how to view log statement recorded when context.log gets executed for a particular function?

divine 1 Reputation point
2020-10-24T08:37:12.36+00:00

Where can i find the log statements of below azure function. From the metrics i can notice this function got executed multiple times . kindly let me know how to view this particular log statement

34793-image.png

question posted on github as well https://github.com/Azure/Azure-Functions/issues/205#issuecomment-715316540

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,605 questions
Azure Virtual Network
Azure Virtual Network
An Azure networking service that is used to provision private networks and optionally to connect to on-premises datacenters.
2,278 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Rogerio Guimaraes (BG) 6 Reputation points Microsoft Employee
    2020-10-27T15:15:26.313+00:00

    Inside your Functions App, you can see all recorded Logs in "Monitoring->Logs" and in Query Editor make a Query to see records you nees.

    For example, to see all logs in the last 24 hours limited to 100 items.

    traces   
    | where timestamp > ago(24h)   
    | limit 100  
    

    35459-loganalisys.png

    1 person found this answer helpful.