美文网首页
日志监控工具 Graphite 0.9.15

日志监控工具 Graphite 0.9.15

作者: 咩咩的毛球 | 来源:发表于2019-07-17 10:25 被阅读0次

docs:https://graphite.readthedocs.io/en/latest/
https://amosannn.github.io/2018/11/29/install-graphite/

一、系统与重点步骤

  1. 系统:
    CentOS 7.2 + Python 2.7.5
    WSGI server and web server,选用:gunicorn + nginx
  2. git下载graphite相关源码下载、安装:
$ cd /opt //下载源码:
$ git clone https://github.com/graphite-project/graphite-web.git
$ git clone https://github.com/graphite-project/carbon.git
$ git clone https://github.com/graphite-project/whisper.git

然后通过python setup.py install安装:

$ cd graphite-web 
$ python setup.py install 

这时在/opt下多了一个graphite目录

  1. 检查依赖:
$ cd /opt/graphite-web
$ python check-dependencies.py
$ yum install python-devel cairo-devel openssl-devel
$ yum install gcc libffi-devel 
  1. 一些配置可能需要
$ ./configure
$ make
$ make install 
$ cd /opt/graphite/conf/

通过 cp 去掉 .example 后缀

常用操作

  1. 向 Graphite 写入数据
    https://amosannn.github.io/2018/12/17/data-alert-by-graphite-and-grafana/

https://www.jianshu.com/p/3d98196c4290
https://blog.csdn.net/liuxiao723846/article/details/82735147

export PYTHONPATH="/opt/graphite/lib/:/opt/graphite/webapp/"

  1. pip install --no-binary=:all: https://github.com/graphite-project/whisper/tarball/master

  2. pip install --no-binary=:all: https://github.com/graphite-project/carbon/tarball/master

  3. pip install --no-binary=:all: https://github.com/graphite-project/graphite-web/tarball/master

相关文章

  • 日志监控工具 Graphite 0.9.15

    docs:https://graphite.readthedocs.io/en/latest/https://am...

  • 安装graphite

    简介 Graphite是一种企业级监控工具。Graphite由三个组件组成:carbon - 一种侦听时间序列数据...

  • graphite 安装

    graphite 组件介绍 graphite 是一个 指标数据收集系统,一般作为监控系统中 「监控数据收集存储」使...

  • 第九章 使用日志监控 - 系统监控工具

    第九章 使用日志监控 - 系统监控工具 日志监控器监控 数据平台实例的消息日志,以查找守护程序和用户进程报告的错误...

  • 服务器JVM等查看

    常用 JVM性能调优监控工具JDK内置工具使用JAVA线程dump分析JVM致命错误日志1 . CPU的监控 cs...

  • Jmxtrans + Graphite 监控 Kafka

    jmxtrans的作用是自动去jvm中获取所需要的jmx数据,并按照某种格式(json文件配置格式)输出到其他应用...

  • java面试之四

    1、你常用的jvm监控工具或者命令有哪些 GC日志 PrintGCDetails 每次GC记录日志 jstat -...

  • filebeat学习要点

    filebeat简介 filebeat是轻量级的日志文件托运工具,它会监控日志目录或者指定的日志文件,追踪读取这些...

  • Linux常用命令简单整理

    网络部分 安全工具 存儲工具 日志查看 备份 性能监控 效能工具 端口查看 包管理 硬件工具 bash的基本特性:...

  • dubbo监控+graphite+Metrics+grafana

    本文主要介绍自定义扩展dubbo的监控服务,监控中心的统计数据通过Metrics输出到graphite,然后用gr...

网友评论

      本文标题:日志监控工具 Graphite 0.9.15

      本文链接:https://www.haomeiwen.com/subject/aesgkctx.html