20 std::string_view
url =
"rerun+http://127.0.0.1:9876/proxy";
27 inline operator LogSink()
const;
35 inline operator LogSink()
const;
57 inline GrpcSink::operator
LogSink()
const {
59 sink.kind = LogSink::Kind::Grpc;
64 inline FileSink::operator LogSink()
const {
66 sink.kind = LogSink::Kind::File;
72 rr_log_sink to_rr_log_sink(LogSink sink);
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
Log sink which writes messages to a file.
Definition log_sink.hpp:31
std::string_view path
Path to the output file.
Definition log_sink.hpp:33
Log sink which streams messages to a gRPC server.
Definition log_sink.hpp:13
std::string_view url
A Rerun gRPC URL.
Definition log_sink.hpp:20
float flush_timeout_sec
The minimum time the SDK will wait during a flush before potentially dropping data if progress is not...
Definition log_sink.hpp:25
A sink for log messages.
Definition log_sink.hpp:43