docs: add "what to explore next" after first steps - #3058
Open
locker95 wants to merge 1 commit into
Open
Conversation
The first-steps guide ends abruptly after self-scraping. Add a short next-steps section with concrete links (exporters, SD, alerting, dashboards, OTel) for people asking what to do after the basics. Fixes prometheus#3032 Signed-off-by: Dean Chen <862469039@qq.com>
jan--f
requested changes
Sep 2, 2026
jan--f
left a comment
Contributor
There was a problem hiding this comment.
Nice addition, but I have a few proposals.
| - **More targets:** install exporters for the systems you care about (hosts, databases, HTTP endpoints). Start with the [node exporter guide](/docs/guides/node-exporter) and the [list of exporters](/docs/instrumenting/exporters). | ||
| - **Service discovery:** replace static `targets` lists with discovery (Kubernetes, cloud, file-based, and more). See [configuration](/docs/operating/configuration) and the [file-based SD guide](/docs/guides/file-sd). | ||
| - **Alerting:** define recording and alerting rules, then send notifications with [Alertmanager](/docs/alerting/). | ||
| - **Visualization:** point Grafana (or another dashboard) at Prometheus as a data source (`http://localhost:9090`). |
Contributor
There was a problem hiding this comment.
Suggested change
| - **Visualization:** point Grafana (or another dashboard) at Prometheus as a data source (`http://localhost:9090`). | |
| - **Visualization:** point [Grafana](https://prometheus.io/docs/visualization/grafana/) or [Perses](https://prometheus.io/docs/visualization/perses/) at your Prometheus endpoint (`http://localhost:9090`). |
| - **Service discovery:** replace static `targets` lists with discovery (Kubernetes, cloud, file-based, and more). See [configuration](/docs/operating/configuration) and the [file-based SD guide](/docs/guides/file-sd). | ||
| - **Alerting:** define recording and alerting rules, then send notifications with [Alertmanager](/docs/alerting/). | ||
| - **Visualization:** point Grafana (or another dashboard) at Prometheus as a data source (`http://localhost:9090`). | ||
| - **Applications and OpenTelemetry:** instrument with a [client library](/docs/instrumenting/clientlibs), or see [OpenTelemetry](/docs/guides/opentelemetry) if you are coming from OTLP—Prometheus still scrapes metrics HTTP endpoints the same way as in this guide. |
Contributor
There was a problem hiding this comment.
The OTLP part here doesn't make sense to me.
Suggested change
| - **Applications and OpenTelemetry:** instrument with a [client library](/docs/instrumenting/clientlibs), or see [OpenTelemetry](/docs/guides/opentelemetry) if you are coming from OTLP—Prometheus still scrapes metrics HTTP endpoints the same way as in this guide. | |
| - **Applications:** instrument with an application with a suitable [client library](/docs/instrumenting/clientlibs) |
|
|
||
| ## What to explore next | ||
|
|
||
| Once the local server is scraping and you can run a few queries, these paths are useful next steps: |
Contributor
There was a problem hiding this comment.
Suggested change
| Once the local server is scraping and you can run a few queries, these paths are useful next steps: | |
| In this guide, you installed Prometheus, configured a Prometheus instance to monitor resources, and learned some basics of working with time series data in Prometheus' expression browser. To continue learning about Prometheus, check out the [Overview](/docs/introduction/overview) or explore these next steps: |
Comment on lines
138
to
+140
| ## Summary | ||
|
|
||
| In this guide, you installed Prometheus, configured a Prometheus instance to monitor resources, and learned some basics of working with time series data in Prometheus' expression browser. To continue learning about Prometheus, check out the [Overview](/docs/introduction/overview) for some ideas about what to explore next. | ||
| In this guide, you installed Prometheus, configured a Prometheus instance to monitor resources, and learned some basics of working with time series data in Prometheus' expression browser. Use the links above (and the [Overview](/docs/introduction/overview)) to pick the next area to dig into. |
Contributor
There was a problem hiding this comment.
We can add the summary as an intro to the new section and drop this part completely.
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.
After self-scraping and a couple of queries, the guide did not really say what to do next. Added a short section with concrete links (exporters, SD, alerting, dashboards, OTel) so people landing from a first install have a clearer path.
Fixes #3032