系统基本信息

Linux Servers:

Exporter

https://github.com/prometheus/node_exporter

Dashboard

https://grafana.com/grafana/dashboards/1860

Windows Servers:

Exporter

https://github.com/prometheus-community/windows_exporter

Dashboard

https://grafana.com/grafana/dashboards/12422

web端服务器

Nginx Server:

收集有关 NGINX 或 NGINX Plus 的信息

Exporter

https://github.com/nginxinc/nginx-prometheus-exporter

Dashboard

https://grafana.com/grafana/dashboards/9614

Apache Server:

收集有关 Apache 服务相关信息

Exporter

https://github.com/Lusitaniae/apache_exporter

Dashboard

https://grafana.com/grafana/dashboards/3894

BlackBox Exporter:

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

Exporter

https://github.com/prometheus/blackbox_exporter

Dashboard

https://grafana.com/grafana/dashboards/7587

SSL info Exporter:

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

Exporter

https://github.com/ribbybibby/ssl_exporter

Dashboard

https://grafana.com/grafana/dashboards/13230

数据库服务器

MySQL Server:

收集 MySQL 服务器信息

Exporter

https://github.com/prometheus/mysqld_exporter

Dashboard

https://grafana.com/grafana/dashboards/7362

PostgreSQL Server:

收集 PostgreSQL 服务器信息

Exporter

https://github.com/prometheus-community/postgres_exporter

Dashboard

https://grafana.com/grafana/dashboards/455

REDIS:

收集 REDIS 服务器信息

Exporter

https://github.com/oliver006/redis_exporter

Dashboard

https://grafana.com/grafana/dashboards/11835

Oracle Database:

收集 Oracle 服务器信息

Exporter

https://github.com/iamseth/oracledb_exporter

Dashboard

https://grafana.com/grafana/dashboards/3333

Memcached

收集 Memcached 服务器信息

Exporter

https://github.com/prometheus/memcached_exporter

Dashboard

https://grafana.com/grafana/dashboards/37

Elasticsearch:

收集 Elasticsearch 搜索引擎服务信息

Exporter

https://github.com/prometheus-community/elasticsearch_exporter

Dashboard

https://grafana.com/grafana/dashboards/6483

Prometheus样本采集器汇总的更多相关文章

  1. prometheus学习系列十一: Prometheus 采集器的编写

    在前面的文章已经写了官方的几个exporter的使用了. 在实际使用环境中,我们可能需要收集一些自定义的数据, 这个时候我们一般是需要自己编写采集器的. 快速入门编写一个入门的demo 编写代码 fr ...

  2. 实战ELK(4)Metricbeat 轻量型指标采集器

    一.介绍 用于从系统和服务收集指标.从 CPU 到内存,从 Redis 到 Nginx,Metricbeat 能够以一种轻量型的方式,输送各种系统和服务统计数据. 1.系统级监控,更简洁(轻量型指标采 ...

  3. Flume 高可用配置案例+load balance负载均衡+ 案例:日志的采集及汇总

    高可用配置案例 (一).failover故障转移 在完成单点的Flume NG搭建后,下面我们搭建一个高可用的Flume NG集群,架构图如下所示: (1)节点分配 Flume的Agent和Colle ...

  4. Prometheus 配置采集目标

    Prometheus 配置采集目标 1.根据配置的任务(job)以http/s周期性的收刮(scrape/pull)2.指定目标(target)上的指标(metric).目标(target)3.可以以 ...

  5. Metricbeat 轻量型指标采集器

    一.介绍 用于从系统和服务收集指标.从 CPU 到内存,从 Redis 到 Nginx,Metricbeat 能够以一种轻量型的方式,输送各种系统和服务统计数据. 1.系统级监控,更简洁(轻量型指标采 ...

  6. Hawk 3. 网页采集器

    1.基本入门 1. 原理(建议阅读) 网页采集器的功能是获取网页中的数据(废话).通常来说,目标可能是列表(如购物车列表),或是一个页面中的固定字段(如JD某商品的价格和介绍,在页面中只有一个).因此 ...

  7. 火车采集器 帝国CMS7.2免登录发布模块

    帝国cms7.2增加了金刚模式,登录发布有难度.免登录发布模块配合火车采集器,完美解决你遇到的问题. 免登录直接获取栏目列表 通过文件内设置密码免登录发布数据 帝国cms7.2免登陆文章发布接口使用说 ...

  8. WEB页面采集器编写经验之一:静态页面采集器

    严格意义来说,采集器和爬虫不是一回事:采集器是对特定结构的数据来源进行解析.结构化,将所需的数据从中提取出来:而爬虫的主要目标更多的是页面里的链接和页面的TITLE. 采集器也写过不少了,随便写一点经 ...

  9. centos创建监控宝采集器及添加插件任务

    官方的说明文档很不详细操作也有点小问题,故把操作记录如下. 操作系统环境: centos 5.8 python 2.4.3 创建采集器等操作这里就不说了,见官方文档:http://blog.jiank ...

随机推荐

  1. python+tkinter 的布局

    from tkinter import * win = Tk() win.title("布局") # #窗口标题 win.geometry("600x500+200+20 ...

  2. surging作者出具压测结果

    前言 首先回应下@wen-wen 所贴的压测报告,我也把我和客户压测碰到的问题,和压测结果贴出来,这个结果是由客户提供的.不会有任何的舞弊手脚问题 问题一:Task.Run慎用 首先在最新的社区版本已 ...

  3. Taro框架完美使用Axios

    前言 众所周知,在H5前端开发中,axioshttp库几乎是必选.大部分人都对它的使用非常熟悉.然而在小程序开发中,axios怎么没法用,需要使用对应平台提供的http接口,如微信小程序的wx.req ...

  4. 30行自己写并发工具类(Semaphore, CyclicBarrier, CountDownLatch)是什么体验?

    30行自己写并发工具类(Semaphore, CyclicBarrier, CountDownLatch)是什么体验? 前言 在本篇文章当中首先给大家介绍三个工具Semaphore, CyclicBa ...

  5. 使用云服务器从0开始搭建云端Jupyter Lab|Notebook

    0.购买云服务器 购买服务器我只推荐硅云,因为香港服务器免备案!而且25岁以下仅需10元每月,至少可买3年!每年享有多次原价续费机会,可补价升级配置. 硅云服务器首页:https://www.vpso ...

  6. 在Centos下对高并发web框架Tornado的性能进行测试

    原文转载自「刘悦的技术博客」https://v3u.cn/a_id_89 在之前的一篇文章中,我们在1g1核的惨淡硬件环境下,对 uwsgi + django 和 gunicorn+ django 的 ...

  7. 1.2 Hadoop快速入门

    1.2 Hadoop快速入门 1.Hadoop简介 Hadoop是一个开源的分布式计算平台. 提供功能:利用服务器集群,根据用户定义的业务逻辑,对海量数据的存储(HDFS)和分析计算(MapReduc ...

  8. 基于C++17的泛型函数容器实现方法研究

  9. 成为 Apache 贡献者,从提交第一个简单 PR 开始!

    开源之路,PR 走起 ! ---全球最大同性交友社区 1 fork 以下实例以 incubator-dolphinscheduler 海豚调度为例进行操作 从远端仓库* https://github. ...

  10. iNeuOS工业互联网操作系统,在航天和军工测控领域的应用

    目       录 1.      行业概述... 2 2.      解决方案... 2 3.      解决的痛点... 6 1.   行业概述 现在国际形势异常严峻,加大了偶发武装斗争的可能性. ...