Provide capability to configure route for durable functions monitor #100
-
Provide capability to configure route for durable functions monitor so that we can expose it on |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments
-
Today Configuring this via app settings would be great, but sadly it isn't possible - this value needs to be known at compile time (it is used by this MSBUILD target for "doctoring" function.json files after project build). |
Beta Was this translation helpful? Give feedback.
-
Is |
Beta Was this translation helpful? Give feedback.
-
It is still using the /api prefix then, but added this to the host.json: "extensions": {
"http": {
"routePrefix": ""
}
}, However, when we add new HTTP functions we'll now always need to add the PS: feel free to enable GH Discussions for this kind of stuff :) |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
I didn't specify any prefix which is why |
Beta Was this translation helpful? Give feedback.
-
So @tomkerkhove , does the above resolve your issue? Or would you say something is still missing? |
Beta Was this translation helpful? Give feedback.
-
It's ok for now, thanks! |
Beta Was this translation helpful? Give feedback.
Today
monitor
is configurable via your CSPROJ-file withDurableFunctionsMonitorRoutePrefix
setting (see package readme).Configuring this via app settings would be great, but sadly it isn't possible - this value needs to be known at compile time (it is used by this MSBUILD target for "doctoring" function.json files after project build).