2020-05-20 15:23:22 +00:00
|
|
|
package grpcutils
|
2020-02-24 21:02:45 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
"google.golang.org/grpc/metadata"
|
|
|
|
)
|
|
|
|
|
2020-05-20 15:23:22 +00:00
|
|
|
// LogGRPCRequests this method logs the gRPC backend as well as request duration when the log level is set to debug
|
2020-02-24 21:02:45 +00:00
|
|
|
// or higher.
|
2020-05-20 15:23:22 +00:00
|
|
|
func LogGRPCRequests(ctx context.Context, method string, req, reply interface{}, cc *grpc.ClientConn, invoker grpc.UnaryInvoker, opts ...grpc.CallOption) error {
|
2020-02-24 21:02:45 +00:00
|
|
|
// Shortcut when debug logging is not enabled.
|
|
|
|
if logrus.GetLevel() < logrus.DebugLevel {
|
|
|
|
return invoker(ctx, method, req, reply, cc, opts...)
|
|
|
|
}
|
|
|
|
|
|
|
|
var header metadata.MD
|
|
|
|
opts = append(
|
|
|
|
opts,
|
|
|
|
grpc.Header(&header),
|
|
|
|
)
|
|
|
|
start := time.Now()
|
|
|
|
err := invoker(ctx, method, req, reply, cc, opts...)
|
2020-05-20 15:23:22 +00:00
|
|
|
logrus.WithField("backend", header["x-backend"]).
|
2020-08-10 16:16:45 +00:00
|
|
|
WithField("method", method).WithField("duration", time.Since(start)).
|
2020-02-24 21:02:45 +00:00
|
|
|
Debug("gRPC request finished.")
|
|
|
|
return err
|
|
|
|
}
|
2020-07-22 03:45:52 +00:00
|
|
|
|
|
|
|
// LogGRPCStream to print the method at DEBUG level at the start of the stream.
|
|
|
|
func LogGRPCStream(ctx context.Context, sd *grpc.StreamDesc, conn *grpc.ClientConn, method string, streamer grpc.Streamer, opts ...grpc.CallOption) (grpc.ClientStream, error) {
|
|
|
|
// Shortcut when debug logging is not enabled.
|
|
|
|
if logrus.GetLevel() < logrus.DebugLevel {
|
|
|
|
return streamer(ctx, sd, conn, method, opts...)
|
|
|
|
}
|
|
|
|
|
|
|
|
var header metadata.MD
|
|
|
|
opts = append(
|
|
|
|
opts,
|
|
|
|
grpc.Header(&header),
|
|
|
|
)
|
|
|
|
strm, err := streamer(ctx, sd, conn, method, opts...)
|
|
|
|
logrus.WithField("backend", header["x-backend"]).
|
|
|
|
WithField("method", method).
|
|
|
|
Debug("gRPC stream started.")
|
|
|
|
return strm, err
|
|
|
|
}
|