https://github.com/isometry/go-grpc-echo
https://github.com/isometry/go-grpc-echo
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/isometry/go-grpc-echo
- Owner: isometry
- Created: 2024-02-22T10:46:06.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-11T22:51:14.000Z (11 months ago)
- Last Synced: 2025-06-11T23:39:57.488Z (11 months ago)
- Language: Go
- Size: 24.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-grpc-echo
Simple Go-based gRPC Echo service, designed for k8s/istio testing
## Usage
```console
kubectl create deployment echo --image=ghcr.io/isometry/go-grpc-echo:latest --port=8080
kubectl create service loadbalancer echo --tcp=8080:8080
grpcurl -plaintext localhost:8080 describe
grpcurl -plaintext -d '{"message": "Hello, World"}' localhost:8080 rpc.Echo/Request
ghz --insecure --call rpc.Echo/Request --data='' --total=10000 --connections=50 --count-errors localhost:8080
```