Git Product home page Git Product logo

Comments (3)

Panici4 avatar Panici4 commented on August 24, 2024

if h, ok := ctx.(http.Context); ok { fmt.Println(h.Header()) }
Is this help?

from kratos.

dobet avatar dobet commented on August 24, 2024

if h, ok := ctx.(http.Context); ok { fmt.Println(h.Header()) } Is this help?

I want log http method in caller log, not I code log.info(ctx)

from kratos.

hoslo avatar hoslo commented on August 24, 2024

if h, ok := ctx.(http.Context); ok { fmt.Println(h.Header()) } Is this help?

I want log http method in caller log, not I code log.info(ctx)

you can custom your log middleware

func NewHTTPServer(c *conf.Server, greeter *service.GreeterService) *http.Server {
	opts := []http.ServerOption{
		http.Middleware(
			loggingMiddleware,
		),
	}
	if c.Http.Network != "" {
		opts = append(opts, http.Network(c.Http.Network))
	}
	if c.Http.Addr != "" {
		opts = append(opts, http.Address(c.Http.Addr))
	}
	if c.Http.Timeout != nil {
		opts = append(opts, http.Timeout(c.Http.Timeout.AsDuration()))
	}
	srv := http.NewServer(opts...)
	v1.RegisterGreeterHTTPServer(srv, greeter)
	return srv
}


func loggingMiddleware(handler middleware.Handler) middleware.Handler {
	return func(ctx context.Context, req interface{}) (reply interface{}, err error) {
		// fmt.Println("logging middleware in", req)
		if hCtx, ok := ctx.(http.Context); ok {
			log.Infow(
				"method", hCtx.Request().Method,
			)
		}
		reply, err = handler(ctx, req)
		return
	}
}

from kratos.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.