6-pushgateway安装以及使用

prometheus

pushgateway

各个目标主机可上报数据到pushgateway。Push gateway通过push的方式推送给prometheus sercer。本身也是一个http服务器,一般通过写脚本抓自己想要的数据,自定义一个监控数据,然后推送到pushgateway,然后pushgateway再推送到prometheus。

pushgateway安装

从官网下载pushgateway安装包

1
2
3
4
~]# tar zxvf pushgateway-1.4.3.linux-amd64.tar.gz -C /usr/local/
~]# ln -s /usr/local/pushgateway-1.4.3.linux-amd64/ /usr/local/pushgateway
~]# ln -s /usr/local/pushgateway/pushgateway /usr/local/bin/pushgateway
~]# nohup /usr/local/pushgateway/pushgateway > /usr/local/pushgateway/pushgateway.log 2>&1 &

启动之后查看9091端口是否被监听,也可以查看http://pushgateway_ip:9091是否正常。

prometheus server配置

在prometheus的配置文件中加入以下内容

1
2
3
- job_name: "pushgateway"
static_configs:
- targets: ["192.168.27.7:9091"]

配置修改完成后需要将Prometheus server重启,重启后在web管理界面-Status-Targets中可以看到pushgateway已经被添加。

使用pushgateway推送数据

手动推送几条数据给pushgateway。

1
2
3
4
5
6
7
8
9
# 简单样本
echo "test_metric 987654321" | curl --data-binary @- http://192.168.27.7:9091/metrics/job/pushgateway/instance/192.168.27.111

# 复杂样本
# TYPE 要在样本前指明,并且一定要加#标记
cat <<EOF | curl --data-binary @- http://192.168.27.7:9091/metrics/job/pushgateway/instance/192.168.27.111
#TYPE test_metric counter
test_metric{label="val1"} 42.0
EOF



可以发现pushgateway与prometheus中都可以查看到该数据
curl --data-binary是将POST请求中的数据发送到pushgateway。
http://PUSHGATEWAY_IP:9091/metrics/job/EXPORTED_JOB/instance/EXPORTED_INSTANCE推送地址为该格式,其中instance/EXPORTED_INSTANCE可以省略
可以使用脚本进行推送

1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
metric_name=
metric_value=
type=
job_name="memory"
instance_name="192.168.40.181"
PUSHGATEWAY_IP="xxx.xxx.xxx.xxx"

cat <<EOF | curl --data-binary @- http://$PUSHGATEWAY_IP:9091/metrics/job/$job_name/instance/$instance_name
# TYPE $metric_name $type
$metric_name $metric_value
EOF

定时推送可以使用crontab进行定时推送
例如设置成每15秒推送一次

1
2
3
4
* * * * * /bin/bash xxx.sh
* * * * * (sleep 15;/bin/bash xxx.sh)
* * * * * (sleep 30;/bin/bash xxx.sh)
* * * * * (sleep 45;/bin/bash xxx.sh)