mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 07:30:55 +00:00
decouple httplib from web module
This commit is contained in:
parent
9a7c43c404
commit
463e96447a
@ -23,11 +23,13 @@ import (
|
|||||||
"github.com/prometheus/client_golang/prometheus"
|
"github.com/prometheus/client_golang/prometheus"
|
||||||
|
|
||||||
"github.com/astaxie/beego/pkg/client/httplib"
|
"github.com/astaxie/beego/pkg/client/httplib"
|
||||||
"github.com/astaxie/beego/pkg/server/web"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type FilterChainBuilder struct {
|
type FilterChainBuilder struct {
|
||||||
summaryVec prometheus.ObserverVec
|
summaryVec prometheus.ObserverVec
|
||||||
|
AppName string
|
||||||
|
ServerName string
|
||||||
|
RunMode string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (builder *FilterChainBuilder) FilterChain(next httplib.Filter) httplib.Filter {
|
func (builder *FilterChainBuilder) FilterChain(next httplib.Filter) httplib.Filter {
|
||||||
@ -36,9 +38,9 @@ func (builder *FilterChainBuilder) FilterChain(next httplib.Filter) httplib.Filt
|
|||||||
Name: "beego",
|
Name: "beego",
|
||||||
Subsystem: "remote_http_request",
|
Subsystem: "remote_http_request",
|
||||||
ConstLabels: map[string]string{
|
ConstLabels: map[string]string{
|
||||||
"server": web.BConfig.ServerName,
|
"server": builder.ServerName,
|
||||||
"env": web.BConfig.RunMode,
|
"env": builder.RunMode,
|
||||||
"appname": web.BConfig.AppName,
|
"appname": builder.AppName,
|
||||||
},
|
},
|
||||||
Help: "The statics info for remote http requests",
|
Help: "The statics info for remote http requests",
|
||||||
}, []string{"proto", "scheme", "method", "host", "path", "status", "duration", "isError"})
|
}, []string{"proto", "scheme", "method", "host", "path", "status", "duration", "isError"})
|
||||||
|
Loading…
Reference in New Issue
Block a user