The configuration file prometheus.yml that has been moved under /etc/prometheus/prometheus.yaml should have the following content:
root@deploymentmachine:/home# more /etc/prometheus/prometheus.yml
******** prometheus: Not a text file ********
root@deploymentmachine:/home/tests/mydb/chew/prometheus-2.24.1.linux-amd64# more prometheus.yml
# my global config
global:
scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.
evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute.
# scrape_timeout is set to the global default (10s).
# Alertmanager configuration
alerting:
alertmanagers:
- static_configs:
- targets:
# - alertmanager:9093
# Load rules once and periodically evaluate them according to the global 'evaluation_interval'.
rule_files:
# - "first_rules.yml"
# - "second_rules.yml"
# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
- job_name: 'prometheus'
# metrics_path defaults to '/metrics'
# scheme defaults to 'http'.
static_configs:
- targets: ['localhost:9090']
We will use this file for addition of targets and job_names for our MySQL services
2.2.2 Change ownership and permission of folder /etc/prometheus:
root@deploymentmachine:/home# lsof -i :9090
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
prometheu 20617 prometheus 8u IPv6 235347 0t0 TCP *:9090 (LISTEN)
b) Check the status of the service
root@deploymentmachine:/home# systemctl status prometheus.service | grep active
Active: active (running) since Tue 2021-02-02 15:38:57 UTC; 2h 20min ago
c) Open a browser of your choice, and see if you can reach Prometheus at Public IP of your Cloud instance, and port 9090: