microsoft / DurableFunctionsMonitor

A monitoring/debugging UI tool for Azure Durable Functions
MIT License
221 stars 36 forks source link

About Function - how to invoke with defaults #171

Closed lkurzyniec closed 7 months ago

lkurzyniec commented 7 months ago

I'm using an isolated standalone version with rather default options (with storage connection string, as described here). In such case, how to invoke About endpoint (About.cs)?

scale-tone commented 7 months ago

Hi @lkurzyniec , not sure I fully understand your question.

Are you asking about what the URL of that endpoint would be (in which case it is https://my-isolated-dfmon.azurewebsites.net/durable-functions-monitor/a/p/i/--MyTaskHubName/about)?

Or are you interested to know about authentication-related things, or anything else?

May I also ask you to elaborate on what you're ultimately trying to achieve?

lkurzyniec commented 7 months ago

I'm using isolated and standalone version. I'm deploying it with Terraform, and I reflected this template. I couldn't reach About endpoint, I was getting 404. With your url/example (https://my-isolated-dfmon.azurewebsites.net/durable-functions-monitor/a/p/i/--MyTaskHubName/about) I solved my problem. I thought in standalone version I can skip durable-functions-monitor url part, but I can't. This line confused me: https://github.com/microsoft/DurableFunctionsMonitor/blob/main/durablefunctionsmonitor.dotnetisolated.core/Functions/About.cs#L16