You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently switched to Giraffe for my F# API needs and I am amazed so far.
We started on a simple .NET Core F# setup and Giraffe is very much an approvement.
What I am wondering however and what the docs don't seem to point out:
How to wrap the Health checks that you might have constructed with plain .NET Core?
but it is never executing "getExtendedHealth" , probably because getBasicHealth already returns a full json response.
In addition to that if composing would work, I would still need to compose the root health status, so an aggregated health of all checks.
There must be an easier way than combining them all myself, right?
Thanks for this framework and thanks for your help.
Kind Regards,
Florian
The text was updated successfully, but these errors were encountered:
If multiple health checks share some code then move your code into a reusable function or dependency which can be called by all the different checks. I don't understand why there is a complete different abstraction for health checks when they are just some simple endpoints no different than all other code.
My honest recommendation would be to implement health endpoints like a normal endpoint and apply normal software patterns for code sharing and reusability if that is needed. It's going to be more readable and similar to the rest of the web app code which will make it easier to understand and maintain.
They do not share code, but the thought was that I would apply this railway programming pattern, so that I return "Healthy" when getBasicHealth and getExtendedHealth both return healthy, but if getBasicHealth fails, I directly return "Unhealthy".
Hi there,
I recently switched to Giraffe for my F# API needs and I am amazed so far.
We started on a simple .NET Core F# setup and Giraffe is very much an approvement.
What I am wondering however and what the docs don't seem to point out:
How to wrap the Health checks that you might have constructed with plain .NET Core?
Before it looked like this:
and a health check looked like this:
Now with Giraffe I changed it to this:
and route:
That works for one simple health check.
But now I have multiple ones. I tried to "fish my way through" like this
but it is never executing "getExtendedHealth" , probably because getBasicHealth already returns a full json response.
In addition to that if composing would work, I would still need to compose the root health status, so an aggregated health of all checks.
There must be an easier way than combining them all myself, right?
Thanks for this framework and thanks for your help.
Kind Regards,
Florian
The text was updated successfully, but these errors were encountered: