vicanso / elton-stats

Stats middleware for elton.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

elton-stats

The middleware has been archived, please use the middleware of elton.

Build Status

Route handle stats middleware for elton, it can get some information of route handle, such as status, consuming, size and etc.

package main

import (
	"bytes"
	"fmt"

	"github.com/vicanso/elton"

	stats "github.com/vicanso/elton-stats"
)

func main() {
	e := elton.New()

	e.Use(stats.New(stats.Config{
		OnStats: func(info *stats.Info, _ *elton.Context) {
			buf, _ := json.Marshal(info)
			fmt.Println(string(buf))
		},
	}))

	e.GET("/", func(c *elton.Context) (err error) {
		c.BodyBuffer = bytes.NewBufferString("abcd")
		return
	})
	err := e.ListenAndServe(":3000")
	if err != nil {
		panic(err)
	}
}

About

Stats middleware for elton.

License:Apache License 2.0


Languages

Language:Go 96.3%Language:Makefile 3.7%