middleware

package
v0.0.0-...-eea11df Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 8, 2024 License: Apache-2.0 Imports: 22 Imported by: 0

Documentation

Index

Constants

View Source
const TraceIDKey = "X-Trace-ID"

Variables

This section is empty.

Functions

func ContextWithFields

func ContextWithFields(ctx context.Context, fields ...zap.Field) context.Context

func Cors

func Cors() gin.HandlerFunc

Cors 直接放行所有跨域请求并放行所有 OPTIONS 方法

func GenerateTraceID

func GenerateTraceID() string

func GinLogger

func GinLogger() gin.HandlerFunc

接收gin框架默认的日志

func GinRecovery

func GinRecovery(stack bool) gin.HandlerFunc

GinRecovery recover掉项目可能出现的panic,并使用zap记录相关日志

func JwtToken

func JwtToken(tk *jtoken.JwtInstance) gin.HandlerFunc

JwtToken jwt中间件

func LimitIP

func LimitIP(cache *redis.Client) gin.HandlerFunc

IP限流

func LoadTls

func LoadTls() gin.HandlerFunc

func LoginToken

func LoginToken() gin.HandlerFunc

登录token 登录时,token = md5(uid,ts),从redis中获取token对应的用户信息

func SignToken

func SignToken() gin.HandlerFunc

未登录token 未登录时,token = md5(tm,ts)

func TraceMiddleware

func TraceMiddleware() gin.HandlerFunc

Types

type Span

type Span struct {
	// contains filtered or unexported fields
}

一个 REST 调用或者数据库操作等,都可以作为一个 span 。 span 是分布式追踪的最小跟踪单位,一个 Trace 由多段 Span 组成。

type SpanContext

type SpanContext interface {
	TraceId() string                     // get TraceId
	SpanId() string                      // get SpanId
	Visit(fn func(key, val string) bool) // 自定义操作TraceId,SpanId
}

SpanContext 保存了分布式追踪的上下文信息,包括 Trace id,Span id 以及其它需要传递到下游的内容。

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL