grpcurl icon indicating copy to clipboard operation
grpcurl copied to clipboard

Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers

Results 125 grpcurl issues
Sort by recently updated
recently updated
newest added
trafficstars

This tells `goreleaser` to create apk, deb and rpm packages for every release of `grpcurl`. This should answer the need express in issue #253 and ease installation of the tool...

Yaml is more convenient for writing and modifying big chunks of data. So my suggest is to add yaml support. It is possible to do in 2 ways: - add...

Hi, We have an FQDN which resolves to two IPs for High Availability. The client needs to check the reachable IP and attempt to connect with the same. In our...

We have a grpcurl client which is connecting to a gRPC server. Due to some network issue in our environment, our clients are terminated with error "transport is closing" When...

Often I find myself downloading a `.proto` file from the webz just to pass it to `grpcurl`, I know I can easily script it out but could probably be nice...

Feature request for your consideration. `curl` does not retry by default, but it can be instructed to do so with the command line flags `--retry` and `--retry-all-errors`, maybe `grpcurl` should...

Given the following message in a protobuf file ``` message exampleMessage { string example_field = 1 } ``` When I use grpcurl to test this service, I currently receive a...

When I run this, I get an error: ``` # ls /root/csi.proto /root/csi.proto # pwd /root # grpcurl -plaintext -unix=true -proto /root/csi.proto /var/run/csi/csi.sock describe Failed to process proto source files.:...

The documentation for `-protoset-out` includes: ``` When invoking an RPC and this option is given, the method being invoked and its transitive dependencies will be included in the output file....

i follow this commands from [real-python](https://realpython.com/python-microservices-grpc) ` openssl req -x509 -nodes -newkey rsa:4096 -keyout ca.key -out ca.pem -subj /O=me openssl req -nodes -newkey rsa:4096 -keyout server.key -out server.csr -subj /CN=recommendations...