prometheus-adapter/vendor/google.golang.org/grpc
Solly Ross a293b2bf94 Check in the vendor directory
Travis seems to be having issues pulling deps, so we'll have to check in
the vendor directory and prevent the makefile from trying to regenerate
it normally.
2018-07-13 17:32:49 -04:00
..
balancer Check in the vendor directory 2018-07-13 17:32:49 -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 Check in the vendor directory 2018-07-13 17:32:49 -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 Check in the vendor directory 2018-07-13 17:32:49 -04:00
internal Check in the vendor directory 2018-07-13 17:32:49 -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 Check in the vendor directory 2018-07-13 17:32:49 -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
transport Check in the vendor directory 2018-07-13 17:32:49 -04:00
.travis.yml Check in the vendor directory 2018-07-13 17:32:49 -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 Check in the vendor directory 2018-07-13 17:32:49 -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 Check in the vendor directory 2018-07-13 17:32:49 -04:00
clientconn.go Check in the vendor directory 2018-07-13 17:32:49 -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
doc.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
envconfig.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
go16.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
go17.go Check in the vendor directory 2018-07-13 17:32:49 -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 Check in the vendor directory 2018-07-13 17:32:49 -04:00
picker_wrapper.go Check in the vendor directory 2018-07-13 17:32:49 -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 Check in the vendor directory 2018-07-13 17:32:49 -04:00
server.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
service_config.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
stickiness_linkedmap.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
stream.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
trace.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
version.go Check in the vendor directory 2018-07-13 17:32:49 -04:00
vet.sh Check in the vendor directory 2018-07-13 17:32:49 -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