Skip to content

Commit 1606e32

Browse files
committedMar 18, 2024
rename SetPathFor404 to DoNotUseURLFor404
1 parent bc8d20a commit 1606e32

File tree

2 files changed

+8
-15
lines changed

2 files changed

+8
-15
lines changed
 

‎echoprometheus/prometheus.go

+3-9
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 DoNotUseURLFor404 is true, 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+
DoNotUseURLFor404 bool
8080
}
8181

8282
type LabelValueFunc func(c echo.Context, err error) string
@@ -147,12 +147,6 @@ func NewMiddlewareWithConfig(config MiddlewareConfig) echo.MiddlewareFunc {
147147

148148
// ToMiddleware converts configuration to middleware or returns an error.
149149
func (conf MiddlewareConfig) ToMiddleware() (echo.MiddlewareFunc, error) {
150-
// for backwared compatiblity
151-
if conf.SetPathFor404 == nil {
152-
setPathFor404 := true
153-
conf.SetPathFor404 = &setPathFor404
154-
}
155-
156150
if conf.timeNow == nil {
157151
conf.timeNow = time.Now
158152
}
@@ -278,7 +272,7 @@ func (conf MiddlewareConfig) ToMiddleware() (echo.MiddlewareFunc, error) {
278272
values[1] = c.Request().Method
279273
values[2] = c.Request().Host
280274
// 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) {
275+
if c.Path() != "" || !conf.DoNotUseURLFor404 {
282276
values[3] = url
283277
}
284278
for _, cv := range customValuers {

‎echoprometheus/prometheus_test.go

+5-6
Original file line numberDiff line numberDiff line change
@@ -278,12 +278,12 @@ func TestRunPushGatewayGatherer(t *testing.T) {
278278
unregisterDefaults("myapp")
279279
}
280280

281-
// TestSetPathFor404Logic tests when the 404 response is due to no matching route, the url is not included in the metric
281+
// TestSetPathFor404NoMatchingRoute tests that the url is not included in the metric when
282+
// the 404 response is due to no matching route
282283
func TestSetPathFor404NoMatchingRoute(t *testing.T) {
283284
e := echo.New()
284285

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

289289
assert.Equal(t, http.StatusNotFound, request(e, "/nonExistentPath"))
@@ -296,13 +296,12 @@ func TestSetPathFor404NoMatchingRoute(t *testing.T) {
296296
unregisterDefaults(defaultSubsystem)
297297
}
298298

299-
// TestSetPathFor404Logic tests when the 404 response is due to logic, the url is included in the metric
299+
// TestSetPathFor404Logic tests that the url is included in the metric when the 404 response is due to logic
300300
func TestSetPathFor404Logic(t *testing.T) {
301301
unregisterDefaults("myapp")
302302
e := echo.New()
303303

304-
setPathFor404 := false
305-
e.Use(NewMiddlewareWithConfig(MiddlewareConfig{SetPathFor404: &setPathFor404, Subsystem: defaultSubsystem}))
304+
e.Use(NewMiddlewareWithConfig(MiddlewareConfig{DoNotUseURLFor404: true, Subsystem: defaultSubsystem}))
306305
e.GET("/metrics", NewHandler())
307306

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

0 commit comments

Comments
 (0)