安装、配置Graphite+Grafana

在本文档中,我们会尽量将相关文件安装在/opt/graphite目录

因此,在/opt路径下创建一个文件夹graphite

#mkdir-p graphite


1.查看python版本。

#python --version

Python2.7.12

2.创建Python2.7的virtualenv环境

# pipinstall virtualenv

# pipinstall --upgrade pip

# sudopip install --upgrade virtualenv

    100%|████████████████████████████████| 1.9MB 4.5MB/s

Installing collected packages: virtualenv

Successfullyinstalled virtualenv-16.0.0

创建虚拟环境目录:

#mkdir myproject

#cd myproject

#virtualenv /opt/graphite --python=/usr/bin/python

/opt/graphite:生成的虚拟环境的路径

3.加载virtualenv环境

#source/opt/graphite/bin/activate

[if !vml]

[endif]

在虚拟环境中,用pip安装的包都被安装到graphite这个环境下,系统Python环境不受任何影响。也就是说,graphite环境是专门针对myproject这个应用创建的。用deactivate命令可以退出该虚拟环境。

[if !vml]

[endif]

4.安装Carbon+Whisper

#pipinstall carbon --install-option="--prefix=/opt/graphite"--install-option=

"--install-lib=/opt/graphite/lib"

运行结果:

Successfullybuilt carbon Twisted txAMQP

Installingcollected packages: zope.interface, constantly, incremental, six, attrs,Automat, idna, hyperlink, PyHamcrest, Twisted, txAMQP, cachetools, urllib3,carbon

Successfullyinstalled Automat-0.7.0 PyHamcrest-1.9.0 Twisted-18.9.0 attrs-18.2.0cachetools-2.1.0 carbon-1.1.4 constantly-15.1.0 hyperlink-18.0.0 idna-2.7incremental-17.5.0 six-1.11.0 txAMQP-0.8.2 urllib3-1.24 zope.interface-4.5.0

#pipinstall whisper

运行结果:

Successfullybuilt whisper

Installingcollected packages: whisper

Successfullyinstalled whisper-1.1.4

5.使用默认的配置文件:

#cp/opt/graphite/conf/storage-schemas.conf.example/opt/graphite/conf/storage-schemas.conf

#cp/opt/graphite/conf/carbon.conf.example /opt/graphite/conf/carbon.conf

6.更改Carbon配置

#vi/opt/graphite/conf/carbon.conf

找到LOCAL_DATA_DIR =/opt/graphite/storage/whisper/ 去掉注释#,写入路径

7.启动Carbon

#/opt/graphite/bin/carbon-cache.pystart

Startingcarbon-cache (instance a)

问题:端口占用

#netstat–nlpt |grep XXXX

#killXXXX

再重新起进程。

8.安装graphite-api

#sudoapt-get install libffi-dev

(Readingdatabase ... 61775 files and directories currently installed.)

Preparingto unpack .../libffi-dev_3.2.1-4_amd64.deb ...

Unpackinglibffi-dev:amd64 (3.2.1-4) ...

Processingtriggers for man-db (2.7.5-1) ...

Settingup libffi-dev:amd64 (3.2.1-4) ...

#pipinstall graphite-api

Successfullybuilt PyYAML cairocffi tzlocal itsdangerous pycparser MarkupSafe

Installingcollected packages: PyYAML, pytz, structlog, pycparser, cffi, cairocffi, click,Werkzeug, itsdangerous, MarkupSafe, Jinja2, Flask, tzlocal, pyparsing,graphite-api

Successfullyinstalled Flask-1.0.2 Jinja2-2.10 MarkupSafe-1.0 PyYAML-3.13 Werkzeug-0.14.1cairocffi-0.9.0 cffi-1.11.5 click-7.0 graphite-api-1.1.3 itsdangerous-0.24pycparser-2.19 pyparsing-2.2.2 pytz-2018.5 structlog-18.2.0 tzlocal-1.5.1

9.安装graphite-web

#pipinstall --no-binary=:all: https://github.com/graphite-project/graphite-web/tarball/master

Installingcollected packages: Django, django-tagging, scandir, graphite-web

  Running setup.py install for Django ... done

  Running setup.py install for django-tagging... done

  Running setup.py install for scandir ... done

  Running setup.py install for graphite-web ...done

Successfullyinstalled Django-1.11.16 django-tagging-0.4.3 graphite-web scandir-1.9.0

10.修改配置文件

把/opt/graphite/conf 下的.example结尾的文件 重命名或者拷贝命名(去掉.example)

11.设置graphite local_settings.py文件

/opt/graphite/webapp/graphite/local_settings.py

修改内容:

DEBUG= True     #不设置 页面不能正常显示

TIME_ZONE= 'Asia/Shanghai'  #设置时区

添加sqlite数据库:用户名和密码不需要

[if !vml]

[endif]

12. 启动web服务

/opt/graphite/bin/run-graphite-devel-server.py--port=8085 --libs=/opt/graphite/webapp /opt/graphite

采用后台运行的方式:

nohup/opt/graphite/bin/run-graphite-devel-server.py --port=8085--libs=/opt/graphite/webapp /opt/graphite &

14.安装依赖包

#sudoapt-get install libcairo2-dev

#apt-getupdate

#sudoapt-get install libcairo2-dev

15.启动django,即整个Graphite的web应用

在/opt/graphite/webapp下新建一个manage.py 加执行权限,写入内容:

#!/usr/bin/envpython

importos

importsys



if__name__ == "__main__":

   os.environ.setdefault("DJANGO_SETTINGS_MODULE","graphite.settings")

    os.environ.setdefault('GRAPHITE_SETTINGS_MODULE','graphite.local_settings')


    from django.core.management importexecute_from_command_line


execute_from_command_line(sys.argv)

:wq

#pythonmanage.py migrate --run-syncdb

启动之后对数据库进行同步可能会出现报错:no suchtable:account_profile

解决办法:

使用 python manage.py

migrate --run-syncdb 命令进行同步


之后用浏览器访问将看到一下界面

16.访问

http://***.**.**.**:8085/

17.安装grafana

在/etc/apt/sources.list中,最末端写入:

debhttps://packagecloud.io/grafana/stable/debian/ stretch main

18. 添加Package Cloud密钥,这允许你安装签名包

curlhttps://packagecloud.io/gpg.key | sudo apt-key add -

19. 更新你的Apt存储库并安装Grafana:

sudoapt-get update


问题:

/etc/apt#sudo apt-get update

Hit:1http://mirrors.aliyun.com/ubuntu xenial InRelease

Hit:2http://mirrors.aliyun.com/ubuntu xenial-security InRelease               

Hit:3http://mirrors.aliyun.com/ubuntu xenial-updates InRelease                

Hit:4http://mirrors.aliyun.com/ubuntu xenial-proposed InRelease               

Hit:5http://mirrors.aliyun.com/ubuntu xenial-backports InRelease              

Readingpackage lists... Done                                                  

E:The method driver /usr/lib/apt/methods/https could not be found.

N:Is the package apt-transport-https installed?

E:Failed to fetchhttps://packagecloud.io/grafana/stable/debian/dists/stretch/InRelease 

E:Some index files failed to download. They have been ignored, or old ones usedinstead.

需要安装apt-transport-https软件包,这是通过HTTPS获取软件包所必需的。

#sudoapt-get install -y apt-transport-https    ? # apt install apt-transport-https

#sudoapt-get install grafana

20.启动服务

# sudoservice grafana-server start

21.访问http://***.**.**.**:3000


echo"local.random.xxx 100 `date +%S`" | nc ***.**.**.** 2003

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,776评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,527评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,361评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,430评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,511评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,544评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,561评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,315评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,763评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,070评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,235评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,911评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,554评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,173评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,424评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,106评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,103评论 2 352

推荐阅读更多精彩内容

  • 随着业务系统越来越多,系统化的监控需求就来了。前天看了一下graphite,感觉整体架构还是不错的。废话不多...
    igool阅读 19,573评论 8 10
  • graphite 组件介绍 graphite 是一个 指标数据收集系统,一般作为监控系统中 「监控数据收集存储」使...
    凯帝_f319阅读 4,389评论 0 1
  • 1.指标采集器 - Dropwizard Metrics, StatsD 2.监听器 - Carbon, gra...
    RiboseYim阅读 3,528评论 0 4
  • 街头,跑步结束,一身汗,静静伫立街头,恢复呼吸至平静,天气晴冷,城市轮廓清晰湿润。 突然一种平静、甚至孤寂之感满溢...
    孟yueling阅读 243评论 1 0
  • 从周一开始读这本小说,我经历了悬疑判决,自我对比,内心挣扎,兴致盎然,惋惜落叹,欣慰温暖,触底感动,最后意味...
    幻美心阅读 571评论 0 0