Thursday , April 18 2024

How To Use Grafana with Prometheus

In this article, we will build our own monitoring systems and build a structure to monitor all your systems on an open-source infrastructure. We will use grafana with prometheus.

I will describe Prometheus(Time series database) and Grafana(a technology we will use for the dashboard) installation.

We will perform our installations on Ubuntu 16.04.

Prometheus Installation

First, let’s perform the Prometheus installation.

Step1: Download Packages

In the first step, download additional packages that we will use on the server.

Step2: Download Prometheus

You can download the version you want at https://prometheus.io/download/ link. In our example, we will download Pre-Release version.

Extract downloaded file with the command below.

Go to the extracted directory.

We open the config file and make the changes below. (We configure our configuration file as we want.)

We reduce the scrape_interval to 1 second in our example.

We also edit static_configs and add 9091. We generally recommend that you write your IP here instead of localhost.

After editing the .yml file, let’s create our service file. For this we go to the path below.

We create a service file.

Then you need to modify the service content below according to your system.

Service file content;

Run deamon-reload after creating the service.

Then let’s start our service.

Check the service status.

Now our service is started. We must be able to open prometheus from the browser.

NOTE: When configuring the .yml file, I suggested that you write IP information instead of localhost in the static_configs section.

Grafana Installation

Now we proceed to the installation steps of Grafana.

We are updating our server before installation;

Now, we add the Grafana gpg key and install the packages.

We are downloading the Grafana APT repository.

We are updating again and downloading the graphana.

Start grafana service.

Check service status.

Now we can open grafana in our browser.

How To Use Grafana With Prometheus?

We installed grafana and prometheus. Now lets perform a test. We will create a dashbord that monitor PostgreSQL. We use an exporter which created by Wrousnel. You can see his queries from the below link. To see the queries, click queries.yaml from the below link. 

https://github.com/wrouesnel/postgres_exporter

This exporter will listen PostgreSQL and transfer PostgreSQL metrics to prometheus.

Run PostgreSQL Exporter

First we run postgres exporter.

It runs the queries by listening to postgresql using the ip and port we specified in the query.

It was run from the docker to make it easier.

The above code will run wrouesnel’s queries in the postgresql we have specified. Exporter will listen from the server we executed the above query from 9191 port.

Grafana add Prometheus Query

If you download the above link’s content as zip file to the docker above, and extract the zip file, you can change queries as you want and integrate prometheus and grafana with your own queries. 

Let’s edit Prometheus yml.

Exporter listens on port 9191 and runs the queries in the PostgreSQL in the time interval we set in scrape_interval.

Configure prometheus yml

exporter_ip is the ip of the server which we run the exporter script. Its same ip with prometheus_ip since I have executed postgres exporter on prometheus server.

We can add job names as below for exporter working on other ip and ports.

We go to the path where Prometheus is installed. We can run it with the command ./prometheus.

On the server we run Prometheus, we can look at the metrics from the exporter as below in the default 9090 port. 9090 is the default port of Prometheus. Do not confuse exporter port and prometheus port. 

Then we can add the prometheus to the grafana as a data source.

Grafana Dashboard Sample Screenshot:

 

Loading

About Yusuf KAHVECİ

Leave a Reply

Your email address will not be published. Required fields are marked *

Categories