containerd/vendor/google.golang.org/grpc/reflection
dependabot[bot] 93690baf4e
build(deps): bump github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus
Bumps [github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus](https://github.com/grpc-ecosystem/go-grpc-middleware) from 1.0.0 to 1.0.1.
- [Release notes](https://github.com/grpc-ecosystem/go-grpc-middleware/releases)
- [Commits](https://github.com/grpc-ecosystem/go-grpc-middleware/compare/v1.0.0...providers/prometheus/v1.0.1)

---
updated-dependencies:
- dependency-name: github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-30 19:10:24 +00:00
..
grpc_reflection_v1 build(deps): bump github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus 2024-04-30 19:10:24 +00:00
grpc_reflection_v1alpha build(deps): bump github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus 2024-04-30 19:10:24 +00:00
adapt.go build(deps): bump github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus 2024-04-30 19:10:24 +00:00
README.md build(deps): bump github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus 2024-04-30 19:10:24 +00:00
serverreflection.go build(deps): bump github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus 2024-04-30 19:10:24 +00:00

Reflection

Package reflection implements server reflection service.

The service implemented is defined in: https://github.com/grpc/grpc/blob/master/src/proto/grpc/reflection/v1/reflection.proto.

To register server reflection on a gRPC server:

import "google.golang.org/grpc/reflection"

s := grpc.NewServer()
pb.RegisterYourOwnServer(s, &server{})

// Register reflection service on gRPC server.
reflection.Register(s)

s.Serve(lis)