普罗米修斯 grafana
普罗米修斯
Prometheus后台启动
dashboards
Grafana 图像渲染器
ntpdate同步时间
node_expoter后台启动
blackbox_expoter后台启动
Notification templates
prometheus 配置文件
alert 报警规则
multi_mysqld_exporter
Prometheus动态配置目标
pushgateway
超棒的 Prometheus 警报规则
本文档使用 MrDoc 发布
-
+
首页
Prometheus后台启动
Prometheus启动脚本 添加以下内容: ``` #!/bin/bash /opt/prometheus/prometheus --web.enable-lifecycle --config.file=/opt/prometheus/prometheus.yml --web.read-timeout=5m --storage.tsdb.retention=15d --storage.tsdb.path="/data/" &>> /applog/prometheus/prometheus.log ``` --- --web.enable-lifecycle是Prometheus的一个标志,用于启用远程控制功能。如果您使用该标志启动Prometheus服务器,则可以在运行时向其发送请求,以修改某些配置或执行其他操作。 例如,您可以向Prometheus发送以下HTTP POST请求: ``` curl -X POST http://localhost:9090/-/reload ``` 这将重新加载Prometheus的配置文件,并使任何更改生效。 --- 授权脚本 /usr/lib/systemd/system/ 新增 prometheus.service 添加以下内容: ``` [Unit] Description=Prometheus Documentation=https://prometheus.io/docs/introduction/overview/ Wants=network-online.target After=network-online.target [Service] User=root Group=root Type=simple # 启动脚本 ExecStart=/opt/prometheus/prometheus.sh [Install] WantedBy=multi-user.target ``` systemctl daemon-reload
admin
2023年4月9日 17:19
转发文档
收藏文档
上一篇
下一篇
手机扫码
复制链接
手机扫一扫转发分享
复制链接
Markdown文件
分享
链接
类型
密码
更新密码