数据库改用mongo后,监控需求就需要整合进grafana里,由于一直在坚持docker化部署,那么此次也不例外。

1. 安装Prometheus:

What is Prometheus?

Prometheus is an open-source systems monitoring and alerting toolkit originally built at SoundCloud. Since its inception in 2012, many companies and organizations have adopted Prometheus, and the project has a very active developer and user community. It is now a standalone open source project and maintained independently of any company. To emphasize this, and to clarify the project's governance structure, Prometheus joined the Cloud Native Computing Foundation in 2016 as the second hosted project, after Kubernetes.

Prometheus is a monitoring platform that collects metrics from monitored targets by scraping metrics HTTP endpoints on these targets.

主要的意思就是Prometheus是一个开源的系统监控和告警工具包,通过HTTP endpoints来收集要监控的系统的指标。跟着官网的first step,只需要下载最新版本,配置prometheus.yml,启动即可,比较的简单, 因此我们docker化安装也较为容易。

  1) 安装镜像

[root@vhost18 prometheus]# docker search prometheus
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
prom/prometheus [OK]
basi/prometheus-swarm A sample image that can be used as a base fo… [OK]
infinityworks/prometheus-rancher-exporter Exposes Service/Stack/Host status from the R… [OK]
linuxtips/prometheus_alpine Image to run Prometheus on Alpine Linux. #VA… [OK]
sscaling/jmx-prometheus-exporter A docker image containing a released version… [OK]
argussecurity/cassandra-prometheus Docker Official Cassandra image, with Promet… [OK]

  安装STARS最多的那个就是了。

  2)编写配置文件,参考官网

# my global config
global:
scrape_interval: 15s # Set the scrape interval to every seconds. Default is every minute.
evaluation_interval: 15s # Evaluate rules every seconds. The default is every minute.
# scrape_timeout is set to the global default (10s). # Alertmanager configuration
alerting:
alertmanagers:
- static_configs:
- targets:
# - alertmanager: # Load rules once and periodically evaluate them according to the global 'evaluation_interval'.
rule_files:
# - "first_rules.yml"
# - "second_rules.yml" # A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
- job_name: 'prometheus' # metrics_path defaults to '/metrics'
# scheme defaults to 'http'. static_configs:
- targets: ['localhost:9090']

  3)启动容器

docker run -d --name prom -p : -v /data/prometheus/:/etc/prometheus/ prom/prometheus

  4)看下日志是否启动成功

docker logs -f prom

level=info ts=--11T11::.73690446Z caller=main.go: msg="Starting Prometheus" version="(version=2.5.0, branch=HEAD, revision=67dc912ac8b24f94a1fc478f352d25179c94ab9b)"
level=info ts=--11T11::.737024426Z caller=main.go: build_context="(go=go1.11.1, user=root@578ab108d0b9, date=20181106-11:40:44)"
level=info ts=--11T11::.737054274Z caller=main.go: host_details="(Linux 3.10.0-693.5.2.el7.x86_64 #1 SMP Fri Oct 20 20:32:50 UTC 2017 x86_64 72be1c67c847 (none))"
level=info ts=--11T11::.737077772Z caller=main.go: fd_limits="(soft=1048576, hard=1048576)"
level=info ts=--11T11::.737095504Z caller=main.go: vm_limits="(soft=unlimited, hard=unlimited)"
level=info ts=--11T11::.757770232Z caller=main.go: msg="Starting TSDB ..."
level=info ts=--11T11::.757939887Z caller=web.go: component=web msg="Start listening for connections" address=0.0.0.0:
level=info ts=--11T11::.769272192Z caller=main.go: msg="TSDB started"
level=info ts=--11T11::.769349241Z caller=main.go: msg="Loading configuration file" filename=/etc/prometheus/prometheus.yml
level=info ts=--11T11::.772044947Z caller=main.go: msg="Completed loading of configuration file" filename=/etc/prometheus/prometheus.yml
level=info ts=--11T11::.77209973Z caller=main.go: msg="Server is ready to receive web requests."

  5) 访问http://ip:9090

    成功的话会出现以下页面

2. 安装mongodb_exporter

刚说到Prometheus是根据endpoints来获取指标数据的,由于grafana没有直接的插件来获取mongo数据库的指标数据,这时候就可以用得上mongodb_exporter了,参考1参考2

  1)安装镜像

可以直接build刚刚参考1和参考2的Dockerfile,也可以像安装Prometheus一样直接search,我这边为了简单采用直接search的方式,方式重复不累赘描述。

  2)启动镜像

docker run -d --name mongo-explorer -p : eses/mongodb_exporter --mongodb.uri mongodb://monitor:monitor@ip:port

参数需要的mongo地址直接命令传入,无需export 。

如何知道端口和参数呢,一种是看官方说明,另一种直接启动一个空镜像看日志就知道了。

  3) 检查下日志

[root@vhost18 prometheus]# docker logs -f mongo-explorer
### Warning: the exporter is in beta/experimental state and field names are very
### likely to change in the future and features may change or get removed!
### See: https://github.com/percona/mongodb_exporter for updates
mongodb_exporter version: unknown, git commit hash: unknown
Listening on :

  4)访问http://ip:9090

    成功的话会出现以下页面

3. mongodb_exporter整合进Prometheus

  1)  修改配置

    只需要在prometheus.yml上添加如下框

  2) 重启prometheus

docker restart prom

  3) 检查

    访问http://172.28.64.10:9090/targets,能看到数据源就表示成功了。

4. grafana中添加数据源

5. 安装仪表盘

  到grafana官网直接搜mongo,找到自己需要的仪表盘就可以了,后续在自己改造。

grafana使用Prometheus数据源监控mongo数据库的更多相关文章

  1. grafana使用json数据源监控数据

    功能实现完后有部分数据一直在波动,就产生了想把这个数据波动集成到grafana形成可视化界面的监控,但grafana不支持mongo数据库又懒得去用其他工具转换,特意看了下grafana的databa ...

  2. mongo数据库相关目录

    mongodb的docker化安装 mongodb的windows系统下安装 grafana使用Prometheus数据源监控mongo数据库 mongodb副本集的docker化安装 mongodb ...

  3. 使用 Docker 部署 Grafana + Prometheus 监控 MySQL 数据库

    一.背景 在平时开发过程当中需要针对 MySQL 数据库进行监控,这里我们可以使用 Grafana 和 Prometheus 来实现监控功能.Grafana 是一款功能强大的仪表盘面板,支持多种数据源 ...

  4. Grafana+Zabbix+Prometheus 监控系统

    环境说明 软件 版本 操作系统 IP地址 Grafana 5.4.3-1 Centos7.5 192.168.18.231 Prometheus 2.6.1 Centos7.5 192.168.18. ...

  5. Grafana+Prometheus+node_exporter监控,Grafana无法显示数据的问题

    环境搭建: 被测linux机器上部署了Grafana,Prometheus,node_exporter,并成功启动了它们. Grafana中已经创建了Prometheus数据源,并测试通过,并且导入了 ...

  6. windows下部署Grafana +prometheus平台监控

      1.Prometheus简介 Prometheus基于Golang编写,编译后的软件包,不依赖于任何的第三方依赖.用户只需要下载对应平台包,解压并且添加基本的配置即可正常启Prometheus S ...

  7. Grafana、Prometheus、mtail-日志监控

    一:日志如何监控 在上一篇博客Grafana.Prometheus-监控平台中,简单了解了Grafana与Prometheus对项目做特定的监控打点,可视化的配置操作. 但是对于没有设置监控或者不容易 ...

  8. Prometheus MySQL监控+grafana展示

    前言 最近爱上了研究各种杂七杂八的技术. Prometheus是现如今最火的监控软件之一.做为一个运维DBA,不会这个可就OUT了. 本篇博客,演示一下prometheus之通过mysql expor ...

  9. 【集群监控】Docker上部署Prometheus+Alertmanager+Grafana实现集群监控

    Docker部署 下载 sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.re ...

随机推荐

  1. Java开发中代码规范有哪些?

    Java开发中所要遵守的编码规范大体上有如下7点.命名规范.注释规范.缩进排版规范.文件名规范.声明规范.语句规范以及编程规范. 1.命名规范 (1)所有的标示符都只能用ASCⅡ字母(A-Z或a-z) ...

  2. 【Linux】Core dump故障分析

    引入: Q:如果一个程序运行3天后才会出错,这个时候难道需要我们一直用GDB调试程序3天吗? A:答案当然是否定的. 我们有更厉害的工具--Core dump 一.Coredump定义 Core Du ...

  3. 模拟Spring框架

    BeanFactory package com.bjsxt.spring; public interface BeanFactory { public Object getBean(String na ...

  4. 【Leetcode】【Easy】Roman to Integer

    Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 t ...

  5. apache-实战(二)

    Apache 虚拟主机 --用apache或nginx就可以做 一台服务器跑多台web服务 VPS virtual private server 虚拟专用服务器 --使用虚拟化技术来做 云服务器 虚拟 ...

  6. March 15 2017 Week 11 Wednesday

    The starting point of all achievements is desire. 成功的第一步是渴望. Only you desire for somethings, you can ...

  7. CSS基础语法(二) CSS的9种选择器

    样式表的选择器 1.类选择器 根据HTML标签的class属性选择样式应用的属性 .类值{ … } 2.ID选择器 根据HTML标签的ID属性选择样式应用的元素 #id值{ … }  3.标签选择器 ...

  8. 第3次Scrum冲刺

    *:first-child { margin-top: 0 !important; } body>*:last-child { margin-bottom: 0 !important; } /* ...

  9. C++设计模式实现--訪问者(Visitor)模式

    版权声明:本文为博主原创文章,未经博主同意不得转载. https://blog.csdn.net/L_Andy/article/details/36896645 一. 訪问者模式 定义:表示一个作用于 ...

  10. xml解析-jaxp之dom解析

    package day06_parser.dom; /** * xml的解析技术:JAXP是Java API for XML Processing的英文字头缩写, * 中文含义是:用于XML文档处理的 ...