Prometheus监控(一)

安装Prometheus

下载Prometheus

DownLoad

解压安装包

[root@lhx media]# tar -xvf prometheus-2.27.0.linux-amd64.tar.gz
[root@lhx media]# mv prometheus-2.27.0.linux-amd64 /usr/local/prometheus
[root@lhx media]# echo "export PATH=$PATH:/usr/local/prometheus" >>/etc/profile
[root@lhx media]# source /etc/profile

配置参数

[root@lhx media]# cat /usr/local/prometheus/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']

检查配置文件:promtool check config promethus.yml

创建系统用户

[root@lhx media]# groupadd prometheus
[root@lhx media]# useradd -g prometheus -m -d /data/prometheus/ -s /sbin/nologin prometheus

设置系统服务

[root@lhx media]# cat /usr/lib/systemd/system/prometheus.service
[Unit]
Description=Prometheus
Documentation=https://prometheus.io/
After=network.target

[Service]
Type=forking
User=prometheus
ExecStart=/usr/local/prometheus/prometheus --config.file=/usr/local/prometheus/prometheus.yml --web.enable-lifecycle --storage.tsdb.path=/data/prometheus/ --storage.tsdb.retention=60d
Restart=on-failure

[Install]
WantedBy=multi-user.target

[root@lhx media]#  systemctl daemon-reload
[root@lhx media]#  systemctl enable prometheus.service
[root@lhx media]#  systemctl start prometheus.service
  • --web.enable-lifecycle:2.0之后版本支持热加载(curl -X POST http://host:9090/-/reload)
  • --storage.tsdb.path:TSDB数据保存位置
  • --storage.tsdb.retention:数据保留周期

访问prometheus

prometheus

配置node_exporter

添加用户

[root@lhx media]# groupadd prometheus
[root@lhx media]# useradd -g prometheus -m -d /data/prometheus/ -s /sbin/nologin prometheus

下载node_exporter
DownLoad

解压安装包

[root@lhx media]# tar -xvf node_exporter-1.1.2.linux-amd64.tar.gz 
[root@lhx media]# mv node_exporter-1.1.2.linux-amd64 /usr/local/node_exporter

配置系统服务

[root@lhx media]# cat /usr/lib/systemd/system/node_exporter.service
[Unit]
Description=node_exporter
After=network.target

[Service]
Type=forking
User=prometheus
ExecStart=/usr/local/node_exporter/node_exporter
Restart=on-failure

[Install]
WantedBy=multi-user.target

[root@lhx media]#  systemctl daemon-reload
[root@lhx media]#  systemctl enable node_exporter.service
[root@lhx media]#  systemctl start node_exporter.service

注册到prometheus

[root@lhx media]#  cat /data/prometheus/linux.yml
- targets: ['118.24.119.116:9100']
  labels:
    name: linux-node1

[root@lhx media]# cat >> /usr/local/prometheus/prometheus.yml << EOF
  - job_name: 'linux'
    file_sd_configs:
    - files: ['/data/prometheus/linux.yml']
      refresh_interval: 5s
EOF
[root@lhx media]# curl -X POST  http://localhost:9090/-/reload

查看注册服务

target

Supervisor

supervisor是一个用pytho编写的进程管理工具,它可以很方便的监听、启动、停止、重启一个或多个进程。当一个进程意外被杀死,supervisor监听到进程死后,可以自动恢复。

安装supervisor

在线安装可以执行下列语句

[root@lhx media]# yum install supervisor -y

离线安装则需要下列软件

  • supervisor:DownLoad
  • python
  • setuptools
  • meld3

配置supervisor

[root@lhx media]# cat /etc/supervisord.conf 
[supervisord]
;http_port=/var/tmp/supervisor.sock ; (default is to run a UNIX domain socket server)
;http_port=127.0.0.1:9001  ; (alternately, ip_address:port specifies AF_INET)
sockchmod=0700              ; AF_UNIX socketmode (AF_INET ignore, default 0700)
sockchown=nobody.nogroup     ; AF_UNIX socket uid.gid owner (AF_INET ignores)
umask=022                   ; (process file creation umask;default 022)
logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log)
logfile_maxbytes=50MB       ; (max main logfile bytes b4 rotation;default 50MB)
logfile_backups=10          ; (num of main logfile rotation backups;default 10)
loglevel=info               ; (logging level;default info; others: debug,warn)
pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
nodaemon=false              ; (start in foreground if true;default false)
minfds=1024                 ; (min. avail startup file descriptors;default 1024)
minprocs=200                ; (min. avail process descriptors;default 200)

;nocleanup=true              ; (don't clean up tempfiles at start;default false)
;http_username=user          ; (default is no username (open system))
;http_password=123           ; (default is no password (open system))
;childlogdir=/tmp            ; ('AUTO' child log dir, default $TEMP)
;user=chrism                 ; (default is current user, required if root)
;directory=/tmp              ; (default is not to cd during start)
;environment=KEY=value       ; (key value pairs to add to environment)

[supervisorctl]
serverurl=unix:///var/tmp/supervisor.sock ; use a unix:// URL  for a unix socket
;serverurl=http://127.0.0.1:9001 ; use an http:// url to specify an inet socket
;username=chris              ; should be same as http_username if set
;password=123                ; should be same as http_password if set
;prompt=mysupervisor         ; cmd line prompt (default "supervisor")

[program:prometheus]
command=systemctl start prometheus.service            ; the program (relative uses PATH, can take args)
priority=999                ; the relative start priority (default 999)
autostart=true              ; start at supervisord start (default: true)
autorestart=true            ; retstart at unexpected quit (default: true)
startsecs=10                ; number of secs prog must stay running (def. 10)
startretries=3              ; max # of serial start failures (default 3)
exitcodes=0,2               ; 'expected' exit codes for process (default 0,2)
stopsignal=QUIT             ; signal used to kill process (default TERM)
stopwaitsecs=10             ; max num secs to wait before SIGKILL (default 10)
user=prometheus                 ; setuid to this UNIX account to run the program
log_stdout=true             ; if true, log program stdout (default true)
log_stderr=true             ; if true, log program stderr (def false)
logfile=/var/log/supervisor/cat.log    ; child log path, use NONE for none; default AUTO
logfile_maxbytes=1MB        ; max # logfile bytes b4 rotation (default 50MB)
logfile_backups=10          ; # of logfile backups (default 10)

启动supervisor

[root@lhx media]# supervisord -c /etc/supervisord.conf

进程管理

[root@lhx media]# supervisorctl status
[root@lhx media]# supervisorctl start prometheus
[root@lhx media]# supervisorctl stop prometheus

Grafana

Grafana是一款用Go语言开发的开源数据可视化工具,可以做数据监控和数据统计和展示,可以用于对接Prometheus的监控数据

下载安装包
DownLoad

安装字体包

[root@lhx media]# yum install urw-fonts freetype* fontconfig -y

安装grafana

[root@lhx media]# rpm -ivh grafana-7.5.6-1.x86_64.rpm 
warning: grafana-7.5.6-1.x86_64.rpm: Header V4 RSA/SHA256 Signature, key ID 24098cb6: NOKEY
Preparing...                ########################################### [100%]
   1:grafana                ########################################### [100%]

配置参数

[root@lhx media]# cat /etc/grafana/provisioning/dashboards/sample.yaml
# # config file version
apiVersion: 1

providers:
 - name: 'default'
   orgId: 1
   folder: ''
   folderUid: ''
   type: file
   options:
     path: /var/lib/grafana/dashboards

开启插件功能

[root@lhx media]# cat /etc/grafana/grafana.ini
plugins = /var/lib/grafana/plugins

下载Dashboard模板
DownLoad

[root@lhx media]# mkdir /var/lib/grafana/dashboards
[root@lhx media]# cp 1-node-exporter-0-16-0-18-for-prometheus_rev1.json /var/lib/grafana/dashboards
[root@lhx media]#  chown -R grafana.grafana /var/lib/grafana/dashboards/1-node-exporter-0-16-0-18-for-prometheus_rev1.json

需要修改文件中的datasource为Prometheus

[root@lhx dashboards]# sed -i 's/\${DS_PROMETHEUS_111}/Prometheus/' linux.json

下载饼状图插件
DownLoad

[root@lhx media]# unzip grafana-piechart-panel-1.6.1.zip 
[root@lhx media]# mkdir /var/lib/grafana/plugins
[root@lhx media]# mv grafana-piechart-panel /var/lib/grafana/plugins/

启动grafana

[root@lhx media]# systemctl start grafana-server

导入datasource
地址:http://http://118.24.119.116:3000/
默认用户名/密码为admin/admin
点击config->data sources->add data source

datasource

查看监控面板
点击Dashboard->Manage

databoard

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,324评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,303评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,192评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,555评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,569评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,566评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,927评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,583评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,827评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,590评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,669评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,365评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,941评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,928评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,159评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,880评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,399评论 2 342

推荐阅读更多精彩内容