学习 Prometheus(二):Prometheus Server

栏目: 数据库 · 发布时间: 6年前

内容简介:在Prometheus 配置文件使用了 YAML 格式,默认为根目录通过

下载

下载 页面,下载最新版本的 Prometheus 分发包,解压缩。

配置

Prometheus 配置文件使用了 YAML 格式,默认为根目录 prometheus.yml 配置文件,可以通过 --config.file 参数指定配置文件。

通过 --web.enable-lifecycle 参数,可以通过 HTTP POST 请求 /-/reload 触发重新加载配置。

可以通过 Prometheus 提供的工具,校验配置文件:

./promtool check config prometheus.yml

启停服务

启动服务脚本 start-prom.sh 文件:

#/bin/sh
pid_file=`dirname $0`/prometheus.pid  
if [ -f "$pid_file" ] ; then  
    echo "Prometheus is still running, please stop first."
    exit
fi

nohup ./prometheus --config.file=prometheus.yml --web.enable-lifecycle > prometheus.log 2>&1 &  
echo $! > prometheus.pid

停止服务脚本 stop-prom.sh 文件:

pid_file=`dirname $0`/prometheus.pid  
if [ ! -f "$pidfile" ] ; then  
    echo "Prometheus already stopped."
    exit
fi

pid=`cat $pid_file`  
echo -e "Stopping Prometheus $pid ... "  
kill $pid

if [ -f "$pid_file" ] ; then  
    rm $pid_file
    exit
fi

参考


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

第三次浪潮

第三次浪潮

[美]阿尔文·托夫勒 / 黄明坚 / 中信出版集团 / 2018-7 / 79.00元

《第三次浪潮》是美国著名未来学家阿尔文•托夫勒的代表作之一。1980年出版之际,随即引起全球热评,堪称中国改革开放的指南。本书阐述了由科学技术发展引起的社会各方面的变化与趋势。托夫勒认为,人类迄今为止已经经历了两次浪潮文明的洗礼:第一次是农业革命,人类就此从原始渔猎时代进入以农业为基础的文明社会,并历经千年,直到工业革命的到来。随后,人类社会历时300年摧毁了落后的第一次浪潮文明,并在“二战”后1......一起来看看 《第三次浪潮》 这本书的介绍吧!

SHA 加密
SHA 加密

SHA 加密工具

html转js在线工具
html转js在线工具

html转js在线工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具