Prometheus样本采集器汇总(建议收藏)| IDCF

迭代狂
• 阅读 1400

Prometheus样本采集器汇总(建议收藏)| IDCF

介绍

在这篇文章中,我将展示常见基础设施的 Prometheus exporters 列表,这些指标采集器在我们创建监控时非常有用。我还将提供指向可用于呈现数据的 Grafana 仪表盘的链接。

系统基本信息

Linux Servers

  • Exporter

https://github.com/prometheus...

  • Dashboard

https://grafana.com/grafana/d...

Prometheus样本采集器汇总(建议收藏)| IDCF

Windows Servers

  • Exporter

https://github.com/prometheus...

  • Dashboard

https://grafana.com/grafana/d...

Prometheus样本采集器汇总(建议收藏)| IDCF

web端服务器

Nginx Server

收集有关 NGINX 或 NGINX Plus 的信息

  • Exporter

https://github.com/nginxinc/n...

  • Dashboard

https://grafana.com/grafana/d...

Prometheus样本采集器汇总(建议收藏)| IDCF
Prometheus样本采集器汇总(建议收藏)| IDCF

Apache Server

收集有关 Apache 服务相关信息

  • Exporter

https://github.com/Lusitaniae...

  • Dashboard

https://grafana.com/grafana/d...

Prometheus样本采集器汇总(建议收藏)| IDCF

BlackBox Exporter

收集HTTP、TCP等信息,有利于监控Web服务的生命周期。

  • Exporter

https://github.com/prometheus...

  • Dashboard

https://grafana.com/grafana/d...

Prometheus样本采集器汇总(建议收藏)| IDCF
Prometheus样本采集器汇总(建议收藏)| IDCF

SSL info Exporter

发送有关用于 Web 服务器的 SSL 证书的信息。适用于监控 SSL 证书的到期日期。

  • Exporter

https://github.com/ribbybibby...

  • Dashboard

https://grafana.com/grafana/d...

Prometheus样本采集器汇总(建议收藏)| IDCF

数据库服务器

  • MySQL Server

收集 MySQL 服务器信息

  • Exporter

https://github.com/prometheus...

  • Dashboard

https://grafana.com/grafana/d...

Prometheus样本采集器汇总(建议收藏)| IDCF

Prometheus样本采集器汇总(建议收藏)| IDCF

Prometheus样本采集器汇总(建议收藏)| IDCF

Prometheus样本采集器汇总(建议收藏)| IDCF

PostgreSQL Server

收集 PostgreSQL 服务器信息

  • Exporter

https://github.com/prometheus...

  • Dashboard

https://grafana.com/grafana/d...

Prometheus样本采集器汇总(建议收藏)| IDCF

REDIS

收集 REDIS 服务器信息

  • Exporter

https://github.com/oliver006/...

  • Dashboard

https://grafana.com/grafana/d...

Prometheus样本采集器汇总(建议收藏)| IDCF

Oracle Database

收集 Oracle 服务器信息

  • Exporter

https://github.com/iamseth/or...

  • Dashboard

https://grafana.com/grafana/d...

Prometheus样本采集器汇总(建议收藏)| IDCF

Memcached

收集 Memcached 服务器信息

  • Exporter

https://github.com/prometheus...

  • Dashboard

https://grafana.com/grafana/d...

Prometheus样本采集器汇总(建议收藏)| IDCF

Elasticsearch

收集 Elasticsearch 搜索引擎服务信息

  • Exporter

https://github.com/prometheus...

  • Dashboard

https://grafana.com/grafana/d...

Prometheus样本采集器汇总(建议收藏)| IDCF

来源:云原生技术爱好者社区

作者:Maciej
声明:文章获得作者授权在IDCF社区公众号(devopshub)转发。优质内容共享给思否平台的技术同伴,如原作者有其他考虑请联系小编删除,致谢。

Prometheus样本采集器汇总(建议收藏)| IDCF

玩乐高,学敏捷,规模化敏捷联合作战沙盘之「乌托邦计划」,2022年3月5-6日登陆深圳,将“多团队敏捷协同”基因内化在研发流程中,为规模化提升研发效能保驾护航!!🏰⛴公众号回复“乌托邦”可参加

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
Stella981 Stella981
3年前
SpringBoot整合Redis乱码原因及解决方案
问题描述:springboot使用springdataredis存储数据时乱码rediskey/value出现\\xAC\\xED\\x00\\x05t\\x00\\x05问题分析:查看RedisTemplate类!(https://oscimg.oschina.net/oscnet/0a85565fa
Wesley13 Wesley13
3年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Easter79 Easter79
3年前
SpringBoot整合Redis乱码原因及解决方案
问题描述:springboot使用springdataredis存储数据时乱码rediskey/value出现\\xAC\\xED\\x00\\x05t\\x00\\x05问题分析:查看RedisTemplate类!(https://oscimg.oschina.net/oscnet/0a85565fa
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Stella981 Stella981
3年前
JVM 字节码指令表
字节码助记符指令含义0x00nop什么都不做0x01aconst\_null将null推送至栈顶0x02iconst\_m1将int型1推送至栈顶0x03iconst\_0将int型0推送至栈顶0x04iconst\_1将int型1推送至栈顶0x05ic
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
1年前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这
美凌格栋栋酱 美凌格栋栋酱
5个月前
Oracle 分组与拼接字符串同时使用
SELECTT.,ROWNUMIDFROM(SELECTT.EMPLID,T.NAME,T.BU,T.REALDEPART,T.FORMATDATE,SUM(T.S0)S0,MAX(UPDATETIME)CREATETIME,LISTAGG(TOCHAR(