github.com/erda-project/erda-infra@v1.0.9/providers/httpserver/interceptors/log.go (about)

     1  // Copyright (c) 2021 Terminus, Inc.
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //      http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  package interceptors
    16  
    17  import (
    18  	"github.com/labstack/echo"
    19  	"github.com/labstack/echo/middleware"
    20  )
    21  
    22  // SimpleRecord record begin and end for http request.
    23  func SimpleRecord(option Option) echo.MiddlewareFunc {
    24  	return func(next echo.HandlerFunc) echo.HandlerFunc {
    25  		return func(c echo.Context) error {
    26  			if !judgeAnyEnable(c, option.EnableFetchFuncs) {
    27  				return next(c)
    28  			}
    29  			reqID, url := GetRequestID(c), c.Request().URL
    30  			option.Log.Infof("(%s) begin handle request: %s\n", reqID, url)
    31  			defer option.Log.Infof("(%s) end handle request: %s\n", reqID, url)
    32  			return next(c)
    33  		}
    34  	}
    35  }
    36  
    37  // DetailLog print detail log for http request.
    38  // Like: {"time":"2022-07-19T16:03:44.525493+08:00","id":"eSRLySVRiUAXs0VRu0AC0ETteIRKtAHg","remote_ip":"127.0.0.1","host":"localhost:9529","method":"GET","uri":"/test","user_agent":"curl/7.79.1","status":401,"error":"","latency":273532041,"latency_human":"273.532041ms","bytes_in":0,"bytes_out":25}
    39  func DetailLog(option Option) echo.MiddlewareFunc {
    40  	return middleware.LoggerWithConfig(middleware.LoggerConfig{
    41  		Skipper: func(c echo.Context) bool { return !judgeAnyEnable(c, option.EnableFetchFuncs) },
    42  	})
    43  }