@@ -74,9 +74,9 @@ type MiddlewareConfig struct {
74
74
75
75
timeNow func () time.Time
76
76
77
- // If SetPathFor404 is false, all 404 responses (due to non-matching route) will have the same `url` label and
77
+ // If DotNoUseURLFor404 is false, all 404 responses (due to non-matching route) will have the same `url` label and
78
78
// thus won't generate new metrics.
79
- SetPathFor404 * bool
79
+ DotNoUseURLFor404 * bool
80
80
}
81
81
82
82
type LabelValueFunc func (c echo.Context , err error ) string
@@ -148,9 +148,9 @@ func NewMiddlewareWithConfig(config MiddlewareConfig) echo.MiddlewareFunc {
148
148
// ToMiddleware converts configuration to middleware or returns an error.
149
149
func (conf MiddlewareConfig ) ToMiddleware () (echo.MiddlewareFunc , error ) {
150
150
// for backwared compatiblity
151
- if conf .SetPathFor404 == nil {
151
+ if conf .DotNoUseURLFor404 == nil {
152
152
setPathFor404 := true
153
- conf .SetPathFor404 = & setPathFor404
153
+ conf .DotNoUseURLFor404 = & setPathFor404
154
154
}
155
155
156
156
if conf .timeNow == nil {
@@ -278,7 +278,7 @@ func (conf MiddlewareConfig) ToMiddleware() (echo.MiddlewareFunc, error) {
278
278
values [1 ] = c .Request ().Method
279
279
values [2 ] = c .Request ().Host
280
280
// as of Echo v4.10.1 an empty c.Path() means the router did not find any matching routes (404)
281
- if c .Path () != "" || (conf .SetPathFor404 != nil && * conf .SetPathFor404 ) {
281
+ if c .Path () != "" || (conf .DotNoUseURLFor404 != nil && * conf .DotNoUseURLFor404 ) {
282
282
values [3 ] = url
283
283
}
284
284
for _ , cv := range customValuers {
0 commit comments