Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

关于graphite部分,楼主可以解释一下怎么创建的吗(新手) #18

Open
WANGYANG12138 opened this issue Jun 3, 2018 · 20 comments

Comments

@WANGYANG12138
Copy link

graphite.py是自己编写,还是创建出来自动生成的(不懂graphite这块)
自己只懂scrapy框架的部分
楼主可以解释一下吗

@ramsayleung
Copy link
Owner

graphite.py 是自己编写的呢,不然谁来帮我自动生产呢 :) 其实graphite.py是按照 scrapy 数据收集器的模式来收集数据并且进行监控,只不过是将scrapy 的scrapy.stats换成了graphite,而graphite的核心就是收集数据,然后画图展示,过一段时间,再收集数据,然后再画图,更详细的信息就要参考graphite的文档了或者是参考 https://github.com/gnemoug/distribute_crawler

@WANGYANG12138
Copy link
Author

可以加一下楼主的qq或微信吗,关于怎么创建项目(项目创建过程)还是有点不懂,请教一下!!(qq:2514705610 weixing:wy18672353951)

@ramsayleung
Copy link
Owner

你把自己的联系方式暴露出来了: ) 讨论技术问题的时候我用邮件,你可以发邮件给我,或者是在issue 上阐述你的问题嘛

@WANGYANG12138
Copy link
Author

哈哈,就是那个docker run -d
--name graphite
--restart=always
-p 80:80
-p 2003-2004:2003-2004
-p 2023-2024:2023-2024
-p 8125:8125/udp
-p 8126:8126
samrayleung/graphite-statsd(这里你说要配置一下,怎么配置),我可以运行官网的那个docker
run ........hopsoft /graphite-statsd。

      不明白怎么配置!!
       还有就是graphite.py文件我看不懂,有没有教程什么的  so sad.

@ramsayleung
Copy link
Owner

最完整的graphite教程就是graphite 的官方文档, 虽说graphite 的文档齐全,但是graphite 的安装还是很麻烦的,并且只能在Linux 安装了,此外,为了让graphite 可以配合scrapy, 需要做额外的配置,参考scrapy-graphite. 说了这么多,就是想说graphite 安装麻烦,配置也麻烦,为了简化这些麻烦的东西,我做了个docker镜像,把所有东西都配置好了,只要用docker 跑起来就可以了, 如果跑了docker 还有问题的话,可以参考#16

@WANGYANG12138
Copy link
Author

你做的docker镜像是哪个??在哪啊,怎么用你的镜像(直接docker吗)
新手,刚学docker

@ramsayleung
Copy link
Owner

我做的镜像在 samrayleung/graphite-statsd, 也就是https://hub.docker.com/r/samrayleung/graphite-statsd/. 通过

docker run -d
--name graphite
--restart=always
-p 80:80
-p 2003-2004:2003-2004
-p 2023-2024:2023-2024
-p 8125:8125/udp
-p 8126:8126
samrayleung/graphite-statsd

命令拉取并且运行我的docker 镜像.如果还有什么疑问的,就应该去看docker 的文档了.

@WANGYANG12138
Copy link
Author

楼主,还是不行(使用了你的镜像和那个graphiteapp/graphite-statsd镜像都不行)。
log显示是:could not connect to graphite

@WANGYANG12138
Copy link
Author

楼主加我QQ吧!(ó﹏ò。)

@WANGYANG12138
Copy link
Author

是不是我是Windows安装的docker的原因:(

@WANGYANG12138
Copy link
Author

我知道了,是graphite中的IP和端口的问题,它用的是localhost,但是Windows用的不是这个IP!!
但是自己对graphite.py还是有很多地方看不懂(官方文档的介绍太少了,还是我看不明白?)

@ramsayleung
Copy link
Owner

目测是你看不明白๑乛◡乛๑  graphite 的文档非常齐备,甚至有点多.scrapystatscol 感觉也挺好理解的

@WANGYANG12138
Copy link
Author

scrapy的statscol怎么理解,在哪里学习啊,有没有链接

@ramsayleung
Copy link
Owner

我在上面已经把statscol给你列出来了:

其实graphite.py是按照 scrapy 数据收集器的模式来收集数据并且进行监控,只不过是将scrapy 的scrapy.stats换成了graphite

@WANGYANG12138
Copy link
Author

楼主,我可以连接到garphite但是没有数据没有传过去。redis中是有数据的,但是传不过去。

@WANGYANG12138
Copy link
Author

我对graphite.py的修改:

def init(self, host="192.168.99.100", port=2003):
try:
#调用color模块的color_style()方法
self.style = color.color_style()
#创建套接字,AF_INET是套接字家族,SOCK_STREAM是套接字类型(面向连接的)
self._sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
#套接字客户端连接(初始化TCP服务器连接)
self._sock.connect((host, port))

还有就是   GRAPHITE_HOST = '192.168.99.100'
GRAPHITE_PORT = 2003;和settings.py的   GRAPHITE_HOST = '192.168.99.100'

其他部分都没变。
传不了数据到graphite(windows的ip是192.168.99.100)

可能是什么原因呢

@WANGYANG12138
Copy link
Author

52n ni i zyj h c rn0r

@WANGYANG12138
Copy link
Author

楼主,已经能传入数据到graphite,但是为什么显示的时间不对(我是晚上搞的,显示的时间是14点多)

好奇怪 =。=

@WANGYANG12138
Copy link
Author

感谢楼主一直回答我的问题,thanks(感觉自己很笨。。对于graphite文件还是有一些不懂的地方)

@WANGYANG12138
Copy link
Author

对graphite.py中的函数有部分还是不太明白,另一个问题是:不是太明白当中的函数执行顺序(先执行那个,后执行哪个)--流程不太明白

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants