Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/introduction/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Prometheus is designed for reliability, to be the system you go to
during an outage to allow you to quickly diagnose problems. Each Prometheus
server is standalone, not depending on network storage or other remote services.
You can rely on it when other parts of your infrastructure are broken, and
you do not need to setup extensive infrastructure to use it.
you do not need to set up extensive infrastructure to use it.

## When does it not fit?

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/alerting_based_on_metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Download the latest release of Alertmanager for your operating system from [here

Alertmanager supports various receivers like `email`, `webhook`, `pagerduty`, `slack` etc through which it can notify when an alert is firing. You can find the list of receivers and how to configure them [here](/docs/alerting/latest/configuration/). We will use `webhook` as a receiver for this tutorial, head over to [webhook.site](https://webhook.site) and copy the webhook URL which we will use later to configure the Alertmanager.

First let's setup Alertmanager with the webhook receiver.
First let's set up Alertmanager with the webhook receiver.

> alertmanager.yml

Expand Down
6 changes: 5 additions & 1 deletion docs/tutorials/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ One can scrape multiple useful metrics to understand what is happening in the ap

## Show me how it is done

Let’s get our hands dirty and setup Prometheus. Prometheus is written using [Go](https://golang.org/) and all you need is the binary compiled for your operating system. Download the binary corresponding to your operating system from [here](https://prometheus.io/download/) and add the binary to your path.
Let’s get our hands dirty and set up Prometheus. Prometheus is written using [Go](https://golang.org/) and all you need is the binary compiled for your operating system. Download the binary corresponding to your operating system from [here](https://prometheus.io/download/) and add the binary to your path.

### Running with Docker

Official Prometheus container images run as the `nobody` user by default. If you bind-mount host paths for configuration or TSDB storage, make sure those directories are readable and writable by UID/GID 65534 (`nobody`), or run the container with a user that matches your host permissions. Running the container as root does not change this default user inside the image.

Prometheus exposes its own metrics which can be consumed by itself or another Prometheus server.

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/visualizing_metrics_using_grafana.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Grafana and [Console Templates](https://prometheus.io/docs/visualization/console

Install and Run Grafana by following the steps from [here](https://grafana.com/docs/grafana/latest/installation/requirements/#supported-operating-systems) for your operating system.

Once Grafana is installed and run, navigate to [http://localhost:3000](http://localhost:3000) in your browser. Use the default credentials, username as `admin` and password as `admin` to log in and setup new credentials.
Once Grafana is installed and run, navigate to [http://localhost:3000](http://localhost:3000) in your browser. Use the default credentials, username as `admin` and password as `admin` to log in and set up new credentials.


## Adding Prometheus as a Data Source in Grafana.
Expand Down