me小怪兽

导航

随笔分类 -  prometheus

安装node_exporter监控linux系统指标
摘要:安装 node export 下载node_exporter 从官网 https://prometheus.io/download/#node_exporter下载之后 解压缩 然后直接运行即可# tar xvzf node_exporter-0.17.0.linux-amd64.tar.gz# m 阅读全文

posted @ 2023-05-30 15:30 me小怪兽 阅读(2405) 评论(0) 推荐(0)

PushGateway的安装及使用
摘要:Prometheus 使用 PushGateway 进行数据上报采集 https://blog.csdn.net/aixiaoyang168/article/details/102818289 https://blog.csdn.net/aixiaoyang168/article/details/1 阅读全文

posted @ 2023-05-23 16:07 me小怪兽 阅读(79) 评论(0) 推荐(0)

promethues常见告警规则
摘要:# vim /usr/local/prometheus/rules/node-exporter.yml # 服务器资源告警策略 groups: - name: 服务器资源监控 rules: - alert: 内存使用率过高 expr: (node_memory_Buffers_bytes+node_ 阅读全文

posted @ 2023-05-19 19:25 me小怪兽 阅读(218) 评论(0) 推荐(0)

Linux部署Prometheus+Alertmanager并配置邮件告警
摘要:一、Prometheus告警简介 告警能力在Prometheus的架构中被划分成两个独立的部分。如下所示,通过在Prometheus中定义AlertRule(告警规则),Prometheus会周期性的对告警规则进行计算,如果满足告警触发条件就会向Alertmanager发送告警信息。 在Promet 阅读全文

posted @ 2023-05-09 20:09 me小怪兽 阅读(1004) 评论(0) 推荐(0)

Linux部署Prometheus+Alertmanager并配置企业微信告警
摘要:一、Prometheus告警简介 告警能力在Prometheus的架构中被划分成两个独立的部分。如下所示,通过在Prometheus中定义AlertRule(告警规则),Prometheus会周期性的对告警规则进行计算,如果满足告警触发条件就会向Alertmanager发送告警信息。 在Promet 阅读全文

posted @ 2023-05-09 20:07 me小怪兽 阅读(3456) 评论(0) 推荐(0)

Linux部署Prometheus+Alertmanager并配置钉钉告警
摘要:一、Prometheus告警简介 告警能力在Prometheus的架构中被划分成两个独立的部分。如下所示,通过在Prometheus中定义AlertRule(告警规则),Prometheus会周期性的对告警规则进行计算,如果满足告警触发条件就会向Alertmanager发送告警信息。 在Promet 阅读全文

posted @ 2023-05-09 14:36 me小怪兽 阅读(916) 评论(0) 推荐(0)

Prometheus 组成及架构
摘要:Prometheus 组成及架构Prometheus 生态圈中包含了多个组件,其中许多组件是可选的:Prometheus Server: 服务端 处理,储存数据负责收集和存储时间Prometheus 组成及架构序列数据(time series data),并且提供查询接口。Jobs/Exporter 阅读全文

posted @ 2022-10-23 09:14 me小怪兽 阅读(338) 评论(0) 推荐(0)

blackbox_exporter安装及监控
摘要:本文主要介绍如何使用blackbox_exporter的收集被监控主机的网站状态、端口等信息,借助 Prometheus 最终以仪表盘的形式显示在 Grafana 中。blackbox_exporter是Prometheus 官方提供的 exporter 之一,可以提供 http、dns、tcp、i 阅读全文

posted @ 2022-08-31 23:54 me小怪兽 阅读(2406) 评论(0) 推荐(1)

windows_exporter安装
摘要:https://github.com/prometheus-community/windows_exporter 参考链接msiexec /i D:\windows_exporter-0.15.0-amd64.msi LISTEN_PORT=20051 使用20051端口启动安装服务方式:1.下载w 阅读全文

posted @ 2022-08-31 23:47 me小怪兽 阅读(2090) 评论(0) 推荐(0)

Node exporter安装
摘要:Node exporter光搭建好prometheus_server 是不够的,需要给监控节点搭建一个exporter 用来采样数据node_exporter 是一个以http_server方式运行在后台,并且持续不断采集Linux系统中各种操作系统本身相关的监控参数的程序,主要用于暴露 metri 阅读全文

posted @ 2022-08-31 23:46 me小怪兽 阅读(4889) 评论(0) 推荐(0)

Prometheus Server安装
摘要:下载:官网下载最新版本http://prometheus.io安装:监控机器# tar zxvf prometheus-2.18.1.linux-amd64.tar.gz -C /usr/local/prometheus启动:默认运行在 9090# ./prometheus # ./promethe 阅读全文

posted @ 2022-08-31 23:42 me小怪兽 阅读(150) 评论(0) 推荐(0)

Prometheus 组成及架构
摘要:Prometheus 组成及架构Prometheus 生态圈中包含了多个组件,其中许多组件是可选的:Prometheus Server: 服务端 处理,储存数据负责收集和存储时间Prometheus 组成及架构序列数据(time series data),并且提供查询接口。Jobs/Exporter 阅读全文

posted @ 2022-08-31 23:40 me小怪兽 阅读(420) 评论(0) 推荐(0)

Prometheus 简介
摘要:Prometheus 简介随着容器技术的迅速发展,Kubernetes 已然成为大家追捧的容器集群管理系统。Prometheus 作为生态圈 Cloud Native Computing Foundation(简称:CNCF)中的重要一员,其活跃度仅次于 Kubernetes, 现已广泛用于 Kub 阅读全文

posted @ 2022-08-31 23:38 me小怪兽 阅读(115) 评论(0) 推荐(0)