File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
docs/content/reference/sdk Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -409,7 +409,7 @@ impl RecordingStreamBuilder {
409
409
/// locally hosted gRPC server.
410
410
///
411
411
/// The server is hosted on the default IP and port, and may be connected to by any SDK or Viewer
412
- /// at `rerun+http://127.0.0.1:9876/proxy`.
412
+ /// at `rerun+http://127.0.0.1:9876/proxy` or by just running `rerun --connect` .
413
413
///
414
414
/// To configure the gRPC server's IP and port, use [`Self::serve_grpc_opts`] instead.
415
415
///
@@ -1910,6 +1910,8 @@ impl RecordingStream {
1910
1910
///
1911
1911
/// To configure the gRPC server's IP and port, use [`Self::serve_grpc_opts`] instead.
1912
1912
///
1913
+ /// You can connect a viewer to it with `rerun --connect`.
1914
+ ///
1913
1915
/// The gRPC server will buffer all log data in memory so that late connecting viewers will get all the data.
1914
1916
/// You can limit the amount of data buffered by the gRPC server with the `server_memory_limit` argument.
1915
1917
/// Once reached, the earliest logged data will be dropped. Static data is never dropped.
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ You will need to start a stand-alone Viewer first by typing `rerun` in your term
48
48
49
49
### ` serve_grpc `
50
50
Calling ` serve_grpc ` will start a Rerun gRPC server in your process, and stream logged data to it.
51
- This gRPC server can then be connected to from the Rerun Viewer, e.g. by running ` rerun --connect localhost/proxy ` .
51
+ This gRPC server can then be connected to from the Rerun Viewer, e.g. by running ` rerun --connect ` .
52
52
The gRPC server acts as a proxy, buffering and forwarding log data to the Rerun Viewer.
53
53
54
54
You can also connect to the gRPC server from a Rerun Web Viewer.
You can’t perform that action at this time.
0 commit comments