Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix SanitizeLabelName for certain edge case invalid labels #11936

Merged
merged 2 commits into from
Feb 14, 2023

Conversation

kelnage
Copy link
Contributor

@kelnage kelnage commented Feb 3, 2023

SanitizeLabelName does not correctly sanitize label names that:

  1. Start with a digit (0-9)
  2. Are empty

This commit changes the santization code to catch both of these edge cases and adds new tests to validate it works correctly in them both. In the first case, a leading digit will be replaced with an underscore, and in the latter, the function will return a single underscore.

@roidelapluie

Signed-off-by: Nick Moore [email protected]

SanitizeLabelName was not correctly sanitizing label names that:

1. Started with a digit (0-9)
2. Were empty

This commit changes the santization code to catch both of these edge
cases and adds new tests to validate it works correctly in them both. In
the first case, a leading digit will be replaced with an underscore, and
in the latter, the function will return a single underscore.

Signed-off-by: Nick Moore <[email protected]>
@roidelapluie
Copy link
Member

roidelapluie commented Feb 3, 2023

Thanks for your pull request.

What issue is this fixing?

In Prometheus, this function is used to append label names after __meta labels, therefore it is fine to be empty or to start with a number. It would be a breaking change as is.

@kelnage
Copy link
Contributor Author

kelnage commented Feb 3, 2023

That makes sense - thanks for the context @roidelapluie. I think the issue is that the name of the function implies (at least it does to me) that it would sanitize any label name, and other projects (e.g., promtail) that depend on Prometheus appear to be using it in that way.

Would you prefer it if I instead:

  1. renamed the originally implemented function to SanitizePartialLabelName, updated existing usage within the Prometheus code, and kept my new implementation as is, or
  2. created a new function called SanitizeFullLabelName (and perhaps clarified the documentation for SanitizeLabelName)?

@roidelapluie
Copy link
Member

That sounds good to me

Rather than removing the previous implementation of SanitizeLabelName,
offer another version named SanitizeFullLabelName that achieved the
desired requirements, without breaking existing Prometheus code.

Update testing to validate correctness of new variant.

Signed-off-by: Nick Moore <[email protected]>
@kelnage kelnage force-pushed the sanitize-labels-edge-cases branch from 03b79a7 to c05ebef Compare February 3, 2023 15:28
@kelnage
Copy link
Contributor Author

kelnage commented Feb 3, 2023

@roidelapluie I went with option 2 - hope that looks more reasonable. Not entirely sure why the tests are failing, given my changes should have minimal effect (if any) on the existing code base.

@roidelapluie roidelapluie merged commit e1679a8 into prometheus:main Feb 14, 2023
@roidelapluie
Copy link
Member

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants