docs(instrumenting): list ClickHouse among software exposing Prometheus metrics - #3073
Open
santhiprakash wants to merge 1 commit into
Open
docs(instrumenting): list ClickHouse among software exposing Prometheus metrics#3073santhiprakash wants to merge 1 commit into
santhiprakash wants to merge 1 commit into
Conversation
…us metrics - Problem: the Software exposing Prometheus metrics list omits ClickHouse, which natively exposes Prometheus-format metrics (built-in <prometheus> endpoint, /metrics on port 9363). - Fix: add an alphabetized entry linking to the official docs page documenting the native endpoint. Additive only — the dedicated third-party ClickHouse exporter entry is untouched. - Verification: npm run lint clean (pre-existing PromMarkdown.tsx warning only); link target verified HTTP 200. Signed-off-by: Santhi Prakash <b.santhiprakash@gmail.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.
What changed
docs/instrumenting/exporters.md: add ClickHouse to the "Software exposing Prometheus metrics" list, between Ceph and CockroachDB.
Why
ClickHouse natively exposes Prometheus-format metrics via its built-in Prometheus endpoint (configured through the
<prometheus>block, default port 9363 at/metrics), so no separate exporter is required. This follows the same proven lane as recent additions (Apache APISIX #3064, Meinberg #3046, OpenObserve #3042, SMSEagle #3041).Additive only: the dedicated third-party ClickHouse exporter entry is intentionally left untouched. A 2021 PR (#1513) attempted to replace that entry with native support and was declined by @brian-brazil over completeness concerns; listing native support as its own entry avoids that issue entirely.
How it was verified
npm run lint— clean (pre-existingPromMarkdown.tsxunused-vars warning only).