Hi @ZZ
Thanks for working offline with me investigating this issue. To benefit the broader community, your missing invocation log entries came down to the logging configuration in your host.json. The Invocation tab pulls records that are saved to the requests table from Host.Results
; as documented on https://learn.microsoft.com/en-us/azure/azure-functions/configure-monitoring?tabs=v2#configure-categories. By default, only Warnings are logged for this for Hosts.Results
, meaning anything that fails within the host operation, e.g. an unhandled exception or anything that's logged as a warning message.
In order to see everything, you just have to change the logLevel
to a lower level, i.e. Information.