ServerHealthStatus

data class ServerHealthStatus(val isHealthy: Boolean, val mode: McpExecutionMode, val toolCount: Int, val issues: List<String>, val timestamp: Instant = Instant.now())

Value object representing the result of a server health check.

Constructors

Link copied to clipboard
constructor(isHealthy: Boolean, mode: McpExecutionMode, toolCount: Int, issues: List<String>, timestamp: Instant = Instant.now())

Properties

Link copied to clipboard

whether the server is healthy

Link copied to clipboard

a list of health issues, if any

Link copied to clipboard

the current execution mode

Link copied to clipboard

the time of the health check (default: current instant)

Link copied to clipboard

the number of registered tools