https://github.com/paralin/grpc-liveness
GRPC liveness checks for Kubernetes.
https://github.com/paralin/grpc-liveness
Last synced: 10 months ago
JSON representation
GRPC liveness checks for Kubernetes.
- Host: GitHub
- URL: https://github.com/paralin/grpc-liveness
- Owner: paralin
- License: mit
- Created: 2017-09-19T16:03:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-19T17:26:56.000Z (over 8 years ago)
- Last Synced: 2025-05-12T11:15:55.353Z (10 months ago)
- Language: Go
- Size: 8.12 MB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GRPC Liveness Checks
[![GoDoc Widget]][GoDoc] [![Go Report Card Widget]][Go Report Card]
[GoDoc]: https://godoc.org/github.com/paralin/grpc-liveness
[GoDoc Widget]: https://godoc.org/github.com/paralin/grpc-liveness?status.svg
[Go Report Card Widget]: https://goreportcard.com/badge/github.com/paralin/grpc-liveness
[Go Report Card]: https://goreportcard.com/report/github.com/paralin/grpc-liveness
## Introduction
**grpc-liveness** includes a GRPC service definition and executable to probe GRPC services for readiness and aliveness.
The intent is to use this in a Kubernetes exec check, to determine if a GRPC-only service is online.
## Getting Started
You can get the checker like so:
```
go get -u -v github.com/paralin/grpc-liveness/cmd/checker
```
To implement the checking service in your project, see the example directory.