What problem does it solve?
.NET backend projects often need to include Oracle database availability checks in their service readiness probes, but manually implementing the health check registration requires boilerplate code and risks misconfiguring connection strings or health check tags.
Core Features & Use Cases
- Oracle Health Check Registration: Provides the exact code to register an Oracle database health check via the AddOracle() extension method for ASP.NET Core Health Checks.
- Configuration-Sourced Connection Strings: Automatically pulls the Oracle connection string from the app's configuration to avoid hardcoding sensitive credentials.
- Use Case: For a .NET 9 backend built with the Jarvis framework that connects to an Oracle database, this skill lets you add a /health/ready endpoint that confirms the Oracle DB is reachable before the service accepts incoming traffic.
Quick Start
Use this skill to register an Oracle database readiness health check for your .NET project's /health/ready endpoint.