healthz icon indicating copy to clipboard operation
healthz copied to clipboard

Easily add health checks to your go services

Results 1 healthz issues
Sort by recently updated
recently updated
newest added

Hey! I would like to add some custom tests that check something on an instance of my server. For example ```golang s := &Server{ database: MyDatabase } healthz.RegisterTest("db-alive", s.checkDb) ```...