Reputation: 845
I can't find a solution to change endpoint configuration for Asp.net Core HealthCheck UI at runtime. It can be configured in appsettings.json, or in Startup, but I need to control endpoints at runtime. (e.g. based on integration events) Any idea?
Upvotes: 0
Views: 342
Reputation: 845
I found a solution. Using DatabaseStorage, changes in table Configurations is reflected in UI. So implementing simple CRUD features on this table solve the problem.
Upvotes: 0