<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>系统运维 &#187; Prometheus</title>
	<atom:link href="http://www.osyunwei.com/archives/tag/prometheus/feed" rel="self" type="application/rss+xml" />
	<link>https://www.osyunwei.com</link>
	<description>国产化OS/AnolisOS/openEuler/RHEL/CentOS/Rocky Linux/Debian/Ubuntu Linux FreeBSD 服务器教程 &#124; Windows Server 2003/2008/2012/2016/2019/2022/2025服务器教程</description>
	<lastBuildDate>Tue, 14 Apr 2026 10:59:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Linux下安装部署Prometheus+Alertmanager+Grafana监控平台</title>
		<link>https://www.osyunwei.com/archives/15788.html</link>
		<comments>https://www.osyunwei.com/archives/15788.html#comments</comments>
		<pubDate>Mon, 09 Jun 2025 07:10:15 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Prometheus]]></category>
		<category><![CDATA[Alertmanager]]></category>
		<category><![CDATA[Grafana]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=15788</guid>
		<description><![CDATA[组件介绍： 1、Prometheus是由go语言开发的一套开源的系统监控报警框架。 2、Alertmanager是接收Prometheus发送的告警信息，它支持丰富的告警通知渠道，而且很容易做到告警信息进行去重，降噪，分组，策略路由，是一款专业的告警通知系统。 3、Grafana是一个开源的图表可视化工具，图表配置方便，生成的图表很漂亮，并能实现告警，支持五十多种数据源，Prometheus就是其中支持的一种。 4、可以理解为Prometheus是收集数据，Alertmanager是数据告警系统，Grafana是把Prometheus收集来的数据整理并通过图表的方式展示出来。 5、Prometheus也有自己的图表展示模块，但相比Grafana比较简陋，所以一般使用Grafana作为Web UI展示数据。 6、Grafana也有告警功能，但是比较简单，所以一般使用Alertmanager专业告警系统。 操作系统：AnolisOS-8.x 服务端IP：10.189.189.171 客户端IP：10.189.189.189、10.189.189.188、10.189.189.187 准备篇： 1、关闭selinux setenforce 0 #临时关闭 sed -i 's/^SELINUX=.*/SELINUX=disabled/' /etc/selinux/config #永久关闭 /usr/sbin/sestatus -v #shutdown -r now 重启服务器后查看selinux状态，disabled表示关闭 2、设置防火墙，放行相关端口 #内网集群环境下，如果有硬件防火墙，也可以直接关闭系统防火墙。 Prometheus服务端：tcp 9090 Prometheus客户端：tcp 9100 Alertmanager：tcp 9093 Grafana：tcp 3000 #AnolisOS-8.x默认是firewall防火墙，可以改为iptables防火墙 2.1关闭firewall： systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl mask firewalld systemctl stop firewalld yum remove [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/15788.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/15788.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下搭建Prometheus+Alertmanager+Grafana监控平台</title>
		<link>https://www.osyunwei.com/archives/12269.html</link>
		<comments>https://www.osyunwei.com/archives/12269.html#comments</comments>
		<pubDate>Wed, 25 May 2022 02:29:49 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Prometheus]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Grafana]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=12269</guid>
		<description><![CDATA[组件介绍： 1、Prometheus是由go语言开发的一套开源的系统监控报警框架。 2、Alertmanager是接收Prometheus发送的告警信息，它支持丰富的告警通知渠道，而且很容易做到告警信息进行去重，降噪，分组，策略路由，是一款专业的告警通知系统。 3、Grafana是一个开源的图表可视化工具，图表配置方便，生成的图表很漂亮，并能实现告警，支持五十多种数据源，Prometheus就是其中支持的一种。 4、可以理解为Prometheus是收集数据，Alertmanager是数据告警系统，Grafana是把Prometheus收集来的数据整理并通过图表的方式展示出来。 5、Prometheus也有自己的图表展示模块，但相比Grafana比较简陋，所以一般使用Grafana作为Web UI展示数据。 6、Grafana也有告警功能，但是比较简单，所以一般使用Alertmanager专业告警系统。 操作系统：CentOS 7.x 8.x 服务端IP：192.168.21.182 客户端IP：192.168.21.179 准备工作： 一、所有服务器关闭selinux setenforce 0 #临时关闭 sed -i 's/^SELINUX=.*/SELINUX=disabled/' /etc/selinux/config #永久关闭 /usr/sbin/sestatus -v #shutdown -r now 重启服务器后查看selinux状态，disabled表示关闭 二、设置防火墙，放行相关端口 #内网集群环境下，如果有硬件防火墙，也可以直接关闭系统防火墙。 Prometheus服务端：tcp 9090 Prometheus客户端：tcp 9100 Alertmanager：tcp 9093 Grafana：tcp 3000 CentOS 7.x 8.x默认是firewall防火墙，可以改为iptables防火墙 1、关闭firewall： systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl mask firewalld systemctl [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/12269.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/12269.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
