Print a shard_health_report Object
Usage
# S3 method for class 'shard_health_report'
print(x, ...)Examples
# \donttest{
p <- pool_create(2)
r <- pool_health_check(p)
print(r)
#> Pool health check at 2026-03-30 20:47:29
#> Stats: recycles = 0 , deaths = 0 , tasks = 0
#> All workers healthy
pool_stop(p)
# }