Use Abseil logging for gRPC v1.65.0 and above.

Original logging method is now deprecated and results in error message
on Nginx startup.
This commit is contained in:
Pavel Pautov 2024-07-17 16:34:06 -07:00 committed by p-pautov
parent 4c24716eef
commit 4c841c1c55

View file

@ -2,8 +2,8 @@
#include "grpc_log.hpp"
#include <grpc/support/log.h>
#include <google/protobuf/stubs/common.h>
#include <grpcpp/grpcpp.h>
#if GOOGLE_PROTOBUF_VERSION < 4022000
@ -36,9 +36,9 @@ private:
#include <absl/log/initialize.h>
#include <absl/log/log_sink_registry.h>
class ProtobufLog : absl::LogSink {
class NgxLogSink : absl::LogSink {
public:
ProtobufLog()
NgxLogSink()
{
absl::InitializeLog();
absl::AddLogSink(this);
@ -46,7 +46,7 @@ public:
absl::SetStderrThreshold(static_cast<absl::LogSeverity>(100));
}
~ProtobufLog() override { absl::RemoveLogSink(this); }
~NgxLogSink() override { absl::RemoveLogSink(this); }
void Send(const absl::LogEntry& entry) override
{
@ -61,12 +61,19 @@ public:
ngx_str_t message { entry.text_message().size(),
(u_char*)entry.text_message().data() };
ngx_log_error(level, ngx_cycle->log, 0, "OTel/protobuf: %V", &message);
ngx_log_error(level, ngx_cycle->log, 0, "OTel/grpc: %V", &message);
}
};
typedef NgxLogSink ProtobufLog;
#endif
#if (GRPC_CPP_VERSION_MAJOR < 1) || \
(GRPC_CPP_VERSION_MAJOR == 1 && GRPC_CPP_VERSION_MINOR < 65)
#include <grpc/support/log.h>
class GrpcLog {
public:
GrpcLog() { gpr_set_log_function(grpcLogHandler); }
@ -87,6 +94,13 @@ private:
ProtobufLog protoLog;
};
#else
// newer gRPC implies newer protobuf, and both use Abseil for logging
typedef NgxLogSink GrpcLog;
#endif
void initGrpcLog()
{
static GrpcLog init;