Skip to content

Commit 2314566

Browse files
committed
rename SetPathFor404 to DotNoUseURLFor404
1 parent bc8d20a commit 2314566

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

echoprometheus/prometheus.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ type MiddlewareConfig struct {
7474

7575
timeNow func() time.Time
7676

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
7878
// thus won't generate new metrics.
79-
SetPathFor404 *bool
79+
DotNoUseURLFor404 *bool
8080
}
8181

8282
type LabelValueFunc func(c echo.Context, err error) string
@@ -148,9 +148,9 @@ func NewMiddlewareWithConfig(config MiddlewareConfig) echo.MiddlewareFunc {
148148
// ToMiddleware converts configuration to middleware or returns an error.
149149
func (conf MiddlewareConfig) ToMiddleware() (echo.MiddlewareFunc, error) {
150150
// for backwared compatiblity
151-
if conf.SetPathFor404 == nil {
151+
if conf.DotNoUseURLFor404 == nil {
152152
setPathFor404 := true
153-
conf.SetPathFor404 = &setPathFor404
153+
conf.DotNoUseURLFor404 = &setPathFor404
154154
}
155155

156156
if conf.timeNow == nil {
@@ -278,7 +278,7 @@ func (conf MiddlewareConfig) ToMiddleware() (echo.MiddlewareFunc, error) {
278278
values[1] = c.Request().Method
279279
values[2] = c.Request().Host
280280
// 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) {
282282
values[3] = url
283283
}
284284
for _, cv := range customValuers {

echoprometheus/prometheus_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ func TestSetPathFor404NoMatchingRoute(t *testing.T) {
283283
e := echo.New()
284284

285285
setPathFor404 := false
286-
e.Use(NewMiddlewareWithConfig(MiddlewareConfig{SetPathFor404: &setPathFor404, Subsystem: defaultSubsystem}))
286+
e.Use(NewMiddlewareWithConfig(MiddlewareConfig{DotNoUseURLFor404: &setPathFor404, Subsystem: defaultSubsystem}))
287287
e.GET("/metrics", NewHandler())
288288

289289
assert.Equal(t, http.StatusNotFound, request(e, "/nonExistentPath"))
@@ -302,7 +302,7 @@ func TestSetPathFor404Logic(t *testing.T) {
302302
e := echo.New()
303303

304304
setPathFor404 := false
305-
e.Use(NewMiddlewareWithConfig(MiddlewareConfig{SetPathFor404: &setPathFor404, Subsystem: defaultSubsystem}))
305+
e.Use(NewMiddlewareWithConfig(MiddlewareConfig{DotNoUseURLFor404: &setPathFor404, Subsystem: defaultSubsystem}))
306306
e.GET("/metrics", NewHandler())
307307

308308
e.GET("/sample", echo.NotFoundHandler)

0 commit comments

Comments
 (0)