PMM-15031: Host the PMM email logo on the docs site - #5829
Open
mattiasimonato wants to merge 4 commits into
Open
PMM-15031: Host the PMM email logo on the docs site#5829mattiasimonato wants to merge 4 commits into
mattiasimonato wants to merge 4 commits into
Conversation
The logo in Grafana's email templates was fetched from a percona.com product-logo URL that the rebranding removed. The templates need a public host we control, so the asset ships with the docs site and they point at /assets/pmm-logo-email.png there. It lives in docs/assets rather than docs/images because documentation/resources/bin/check-images.sh only sweeps docs/images: under docs/images, make doc-remove-images would delete an asset that no page references. The file is 432x193 and is rendered at half that width for 2x displays.
This was referenced Aug 24, 2026
matejkubinec
approved these changes
Aug 25, 2026
fabio-silva
approved these changes
Aug 25, 2026
ademidoff
approved these changes
Aug 26, 2026
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.
Ticket number: PMM-15031
Feature build: SUBMODULES-4543
PMM emails showed a broken logo because the old percona.com logo URL was deleted during the rebranding. Emails need an image on a public URL we control, so this PR adds the new PMM logo to the docs site assets. The docs site then serves it at
https://docs.percona.com/percona-monitoring-and-management/assets/pmm-logo-email.png, which is the URL the Grafana email templates point to.The file goes in
documentation/docs/assets/and not indocumentation/docs/images/on purpose:documentation/resources/bin/check-images.shonly scansdocumentation/docs/images/, somake doc-remove-imageswould delete an image that no docs page uses. Nothing else changes, this PR is one PNG.The companion change lives in the
percona/grafanapercona/grafana#921 and must merge after this one, so the URL already works when the templates start using it.