Justin Grote

Results 875 comments of Justin Grote

With the recent update that added the TraceContext, I wanted to revisit this item again. Now that the parent ID trace context is provided, can errors be passed to Application...

Talking about function code exceptions. They all show up as RPCException in Application Insights, so it's hard to do any kind of fault analysis at all. On Wed, Oct 2,...

@AnatoliB to expound on this item: Given the following HTTPTrigger function: ``` param($Request, $TriggerMetadata) throw 'I want to see where this failed in Application Insights' ``` This is what I...

I do have a solution that basically uses trap to intercept the errors. I'll prepare a module and an article as a workaround.

I opened https://github.com/Azure/azure-functions-host/issues/5821 to hopefully resolve this at a more fundamental level where the worker can just log the exception via iLogger and the type will transparently pass down the...

Also @AnatoliB I was aware of that workaround, the problem is to correlate it to an actual exception when you're hunting for bugs requires a complex inner join Kusto query,...

Ultimately it would be rad to add support to the application insights vscode extension to do Codelens support for Powershell, so I can click on a line and see how...

Now tracked here: https://github.com/Azure/azure-functions-host/issues/6284

So this is not possible currently because there's no way to communicate with the worker while the operation is still ongoing, output bindings are all sent at once after the...

@itpropro theres an upstream dependency here that has to be implemented: https://github.com/Azure/azure-functions-language-worker-protobuf/issues/47 I saw no comments on my request so I assume it's not a priority.