# README

xrequestid

xrequestid is an grpc interceptor which receives request id from metadata and set the request id to context. If request is is not found in metadata, generate a random request id by github.com/renstrom/shortuuid.

El Toro Fork Changelog

  • Use uuid instead of shortuuid since we are not passing it through context and not the url
  • Fixed the Compilation errors due to the depricated metadata.FromContext function
  • Added a go.mod and replaced imports with the go mod equivilent
  • Add an option PersistHeaders if you would like to add any incoming headers to the outgoing context
    • Use DefaultXRequestIDKey variable for the xrequest ID to be persisted
    • Example: xrequestid.PersistHeaders([]string{xrequestid.DefaultXRequestIDKey, "authorization"})
  • Add interceptor option to Log the incoming request along with the Request ID to the logrus entry in context.
  • Dependencies Added:
    • github.com/sirupsen/logrus
    • github.com/grpc-ecosystem/go-grpc-middleware/logging/logrus/ctxlogrus
  • Note: Put the server interceptor before the github.com/grpc-ecosystem/go-grpc-middleware/logging/logrus interceptor to have the request ID and data included in the response log

Usage

import (
 "github.com/eltorocorp/go-grpc-request-id-interceptor/xrequestid"
 "golang.org/x/net/context"
)

func main() {
 uIntOpt := grpc.UnaryInterceptor(xrequestid.UnaryServerInterceptor())
 sIntOpt := grpc.StreamInterceptor(xrequestid.StreamServerInterceptor())
 grpc.NewServer(uIntOpt, sIntOpt)
}

func foo(ctx context.Context) {
 requestID := xrequestid.FromContext(ctx)
 fmt.printf("requestID :%s", requestID)
}

Chaining Request ID

If request id is passed by metadata, the request id is used as is by default. xrequestid.ChainRequestID() is an option to chain multiple request ids by generating new request id for each request and concatenating it to original request ids.

func main() {
 uInt := xrequestid.UnaryServerInterceptor(xrequestid.ChainRequestID()))
 sInt := xrequestid.StreamServerInterceptor(xrequestid.ChainRequestID()))
}

Validating Request ID

It is important to validate request id in order to protect from abusing X-Request-ID. You can define own validator for request id, and set by xrequestid.RequestIDValidator().

func customRequestIDValidator(requestID string) bool {
 if len(requestID) < 4 {
  return false
 }
 return true
}

func main() {
 uInt := xrequestid.UnaryServerInterceptor(
  xrequestid.RequestIDValidator(customRequestIDValidator),
 ))
 sInt := xrequestid.StreamServerInterceptor(
  xrequestid.RequestIDValidator(customRequestIDValidator),
    ))
}

# Functions

No description provided by the author
Create a context with the private requestIDKey{} for testing.
No description provided by the author
No description provided by the author
No description provided by the author
Logs the incoming request with the request id and the method destination.
Attach the request id to the outgoing context.
RequestIDValidator is validator function that returns true if request id is valid, or false if invalid.
No description provided by the author
No description provided by the author

# Variables

DefaultXRequestIDKey is metadata key name for request ID.

# Interfaces

No description provided by the author