docs: fix prometheus metric name and slack webhook backtick - #28085
Draft
nickvigilante wants to merge 1 commit into
Draft
docs: fix prometheus metric name and slack webhook backtick#28085nickvigilante wants to merge 1 commit into
nickvigilante wants to merge 1 commit into
Conversation
prometheus.md listed coderd_template_coderd_template_workspace_build_duration_seconds with a doubled coderd_template_ prefix; the correct name (per the metrics table at line 316 and the generated metrics) is coderd_template_workspace_build_duration_seconds. slack.md had a trailing backtick on the CODER_NOTIFICATIONS_WEBHOOK_ENDPOINT export that bash treats as an unterminated command substitution on paste. Fixes DOCS-647. > This PR was created with AI assistance (Coder Agents).
Docs previewCheck off each page once it's been reviewed. If a page changes in a later push, its checkbox clears automatically so it gets a fresh look. Pages not yet wired into the docs navigation aren't listed here. |
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.
What
Two small monitoring-doc fixes surfaced by the runtime drift sweep.
docs/admin/integrations/prometheus.mdThe native-histograms list showed
coderd_template_coderd_template_workspace_build_duration_seconds(doubledcoderd_template_prefix). The correct metric name, per the metrics table earlier on the same page and the generated metrics, iscoderd_template_workspace_build_duration_seconds.docs/admin/monitoring/notifications/slack.mdThe
CODER_NOTIFICATIONS_WEBHOOK_ENDPOINTexport ended with a stray backtick:On paste, bash treats the trailing backtick as an unterminated command substitution and errors. Removed it.
Both reproduced during the runtime drift sweep and verified against
main.Linear: DOCS-647