Reputation: 1997
I recently configured Application Insights on a few of my Azure functions which has been great and now I can see when and how often my function is failing. I've been logging some of the important data within the function that I've been able to see when I check the monitor tab on just the function like this,
Part of the reason we configured App Insights is because we can only see a limited number of responses in this standard function view. I'm looking here to find Invocation details and Log information but can't seem to locate it. Am I looking in the wrong place?
Upvotes: 3
Views: 8933
Reputation: 20127
I'm looking here to find Invocation details and Log information but can't seem to locate it.
You could open your function insights and click the server request to open the operation details.
When your function is failed, it would show failed request details as your invocation details.
Also you could click the Exception below the Custom Data to get the detailed log information and you could click “…” to get the total information.
You could compare it with log information in azure function.
Note: The invocation information in App Insights is different form with Function log information.So you may miss some information.
Upvotes: 1
Reputation: 1456
You can find data generated by function invocations in the following tables:
https://learn.microsoft.com/en-us/azure/azure-functions/functions-monitoring#query-telemetry-data
So you can try to explore "requests" and "customEvents" tables.
Upvotes: 3