35 lines
641 B
Go
35 lines
641 B
Go
package healthcheck
|
|
|
|
import (
|
|
"github.com/containerd/containerd/plugin"
|
|
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/health"
|
|
"google.golang.org/grpc/health/grpc_health_v1"
|
|
)
|
|
|
|
type service struct {
|
|
serve *health.Server
|
|
}
|
|
|
|
func init() {
|
|
plugin.Register(&plugin.Registration{
|
|
Type: plugin.GRPCPlugin,
|
|
ID: "healthcheck",
|
|
InitFn: func(*plugin.InitContext) (interface{}, error) {
|
|
return newService()
|
|
},
|
|
})
|
|
}
|
|
|
|
func newService() (*service, error) {
|
|
return &service{
|
|
health.NewServer(),
|
|
}, nil
|
|
}
|
|
|
|
func (s *service) Register(server *grpc.Server) error {
|
|
grpc_health_v1.RegisterHealthServer(server, s.serve)
|
|
return nil
|
|
}
|