prometheus-adapter/vendor/google.golang.org/grpc
Solly Ross c916572aca Update deps to Kube 1.11.3
This updates the dependencies to Kube 1.11.3 to pull in a fix allowing
requestheader auth to be used without normal client auth (which makes
things work on clusters that don't enable client auth normally, like
EKS).
2018-09-24 14:47:22 -04:00
..
balancer Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
codes Check in the vendor directory 2018-07-13 17:32:49 -04:00
connectivity Check in the vendor directory 2018-07-13 17:32:49 -04:00
credentials Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
encoding Check in the vendor directory 2018-07-13 17:32:49 -04:00
grpclog Check in the vendor directory 2018-07-13 17:32:49 -04:00
health/grpc_health_v1 Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
internal Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
keepalive Check in the vendor directory 2018-07-13 17:32:49 -04:00
metadata Check in the vendor directory 2018-07-13 17:32:49 -04:00
naming Check in the vendor directory 2018-07-13 17:32:49 -04:00
peer Check in the vendor directory 2018-07-13 17:32:49 -04:00
resolver Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
stats Check in the vendor directory 2018-07-13 17:32:49 -04:00
status Check in the vendor directory 2018-07-13 17:32:49 -04:00
tap Check in the vendor directory 2018-07-13 17:32:49 -04:00
.travis.yml Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
AUTHORS Check in the vendor directory 2018-07-13 17:32:49 -04:00
backoff.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
balancer.go Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
balancer_conn_wrappers.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
balancer_v1_wrapper.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
call.go Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
clientconn.go Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
codec.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
codegen.sh Check in the vendor directory 2018-07-13 17:32:49 -04:00
CONTRIBUTING.md Check in the vendor directory 2018-07-13 17:32:49 -04:00
dialoptions.go Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
doc.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
go.mod Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
go.sum Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
go16.go Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
go17.go Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
install_gae.sh Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
interceptor.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
LICENSE Check in the vendor directory 2018-07-13 17:32:49 -04:00
Makefile Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
picker_wrapper.go Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
pickfirst.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
proxy.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
README.md Check in the vendor directory 2018-07-13 17:32:49 -04:00
resolver_conn_wrapper.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
rpc_util.go Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
server.go Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
service_config.go Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
stream.go Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
trace.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
version.go Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00
vet.sh Update deps to Kube 1.11.3 2018-09-24 14:47:22 -04:00

gRPC-Go

Build Status GoDoc GoReportCard

The Go implementation of gRPC: A high performance, open source, general RPC framework that puts mobile and HTTP/2 first. For more information see the gRPC Quick Start: Go guide.

Installation

To install this package, you need to install Go and setup your Go workspace on your computer. The simplest way to install the library is to run:

$ go get -u google.golang.org/grpc

Prerequisites

This requires Go 1.6 or later. Go 1.7 will be required soon.

Constraints

The grpc package should only depend on standard Go packages and a small number of exceptions. If your contribution introduces new dependencies which are NOT in the list, you need a discussion with gRPC-Go authors and consultants.

Documentation

See API documentation for package and API descriptions and find examples in the examples directory.

Performance

See the current benchmarks for some of the languages supported in this dashboard.

Status

General Availability Google Cloud Platform Launch Stages.

FAQ

Compiling error, undefined: grpc.SupportPackageIsVersion

Please update proto package, gRPC package and rebuild the proto files:

  • go get -u github.com/golang/protobuf/{proto,protoc-gen-go}
  • go get -u google.golang.org/grpc
  • protoc --go_out=plugins=grpc:. *.proto