-
Notifications
You must be signed in to change notification settings - Fork 458
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add health check status to the dashboard #889
Comments
@DamianEdwards I am thinking the same thing that it would be useful to have a location where a user can go to view the status of all their health checks as described in point 1. For point 2 what i would like to see is: dotnet/aspnetcore#53670 implemented so that the health check can be tracked over time using metrics. This approach would enable the re-utilization of the existing Metrics UI built for visualizing metrics (hence address point 3) and it benefit the whole eco-system as these health checks can then be utilized by any tool which implements OTEL metrics. |
Could this possibly be enabled in the standalone dashboard? |
@alrz Not likely since the standalone dashboard needs a resource server implementation. There isn't one today. |
@drewnoakes can this be closed? |
This is a different scenario, showing status of the health checks in the apps themselves, not the health checks that the app host is running on them. |
@DamianEdwards right, we do show that in the dashboard UI right now. We can close this |
@adamint the dashboard only knows about details of the health checks registered in the app host. If one manually adds an HTTP health check for a project then that will show up as just healthy or not, right? This still doesn't cover the scenario of displaying the full status of all health checks registered in a service project itself that contribute to the status returned from the HTTP health check. Or am I missing something? |
Ah, I see now. Yes, you’re right |
The .NET Aspire ServiceDefaults project defaults to configuring health check endpoints for service projects. Similarly, .NET Aspire components default to registering health checks for the dependencies they integrate with. Currently, the status of these health checks is not visible anywhere by default. We should consider adding UI to the dashboard (add potentially concepts to the AppHost app model) to display the status of resources' health checks.
I can imagine a few click-stops:
The text was updated successfully, but these errors were encountered: