aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2018-07-30 16:09:44 +0100
committerGravatar GitHub <noreply@github.com>2018-07-30 16:09:44 +0100
commit7c30042f2b24aea73e2aaf89374a42e8f9827082 (patch)
tree58993da845d6193f83b4b57376a6fa5d65b597b6 /doc
parent5a6120ac8ca4e087c9eb31d139c0c4219d1cc29d (diff)
parent2898c199a22b66053c32222ca280aba1009c48a2 (diff)
Merge pull request #16018 from jadekler/server_reflection_meta
docs: provide a section aggregating per-language server reflection tu…
Diffstat (limited to 'doc')
-rw-r--r--doc/server-reflection.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/server-reflection.md b/doc/server-reflection.md
index cceee1647f..c9b476599f 100644
--- a/doc/server-reflection.md
+++ b/doc/server-reflection.md
@@ -181,3 +181,16 @@ will need to index those FileDescriptorProtos by file and symbol and imports.
One issue is that some grpc implementations are very loosely coupled with
protobufs; in such implementations it probably makes sense to split apart these
reflection APIs so as not to take an additional proto dependency.
+
+## Known Implementations
+
+Enabling server reflection differs language-to-language. Here are links to docs relevant to
+each language:
+
+- [Java](https://github.com/grpc/grpc-java/blob/master/documentation/server-reflection-tutorial.md#enable-server-reflection)
+- [Go](https://github.com/grpc/grpc-go/blob/master/Documentation/server-reflection-tutorial.md#enable-server-reflection)
+- [C++](https://grpc.io/grpc/cpp/md_doc_server_reflection_tutorial.html)
+- [C#](https://github.com/grpc/grpc/blob/master/doc/csharp/server_reflection.md)
+- Python: (tutorial not yet written)
+- Ruby: not yet implemented [#2567](https://github.com/grpc/grpc/issues/2567)
+- Node: not yet implemented [#2568](https://github.com/grpc/grpc/issues/2568)