Liero
Liero

Reputation: 27350

How do I monitor health / connectivity to Blazor Server Side?

I'm experiencing connectivity issues in my Blazor Server app hosted on premise.

I would like to perform realtime monitoring of my app on both, localhost and remotely.

I imagine something like keeping the Signal R connection open and write to log if it is interrupted.

How do I monitor health of my Blazor Server app, especially the health of Signal R Connectivity?

Upvotes: 4

Views: 2365

Answers (1)

Ben Sampica
Ben Sampica

Reputation: 3412

Depending on your infrastructure around the server-side application, you may want to consider the libraries for health checks for ASP.NET Core. These are not Blazor-specific, but offer a solution to monitor your application and its dependencies.

Upvotes: 1

Related Questions