chore(metrics): remove dead-code branch from route-label derivation#244
Merged
CryptoJones merged 1 commit intoMay 19, 2026
Merged
Conversation
The Prometheus middleware derived its `route` label like this:
```js
const route = (req.route && req.route.path)
|| (req.baseUrl && req.route && req.baseUrl + req.route.path)
|| '<unknown>';
```
The middle branch is unreachable:
- If `req.route` is truthy and `req.route.path` is a non-empty string,
the first branch wins. Express always sets `req.route.path` to the
matched route pattern string, never an empty string.
- If `req.route` is undefined (404 case), both first and second
branches short-circuit on `req.route` falsy.
So the `req.baseUrl + req.route.path` branch can never fire. Plus
every route in this codebase is mounted at the top-level router with
its full `/v1/...` path inline, so there is no `req.baseUrl` to
prepend in the first place.
Drop the dead branch and tighten the comment to match what the code
actually does. No behavior change.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #243.
The middle branch of the metrics middleware's
routederivation was unreachable. Bothreq.routetruthy and falsy cases were covered by the other branches;req.baseUrldoesn't exist anyway since routes mount at the top-level router with full paths.Test plan
npm run lintcleannpm test— 687 passed (no behavior change)Proudly Made in Nebraska. Go Big Red! 🌽 https://xkcd.com/2347/