當前位置:
首頁 > 知識 > Python項目中跟蹤系統導入Zipkin

Python項目中跟蹤系統導入Zipkin

zipkin概要信息

項目說明官方網站https://zipkin.io/開源/閉源開源License類別Apache License 2.0代碼管理地址https://github.com/openzipkin/zipkin/開發語言Java,Javascript支持平台可運行於Linux/Windows/MacOS等多種操作系統,並提供docker標準鏡像當前版本2.9.1 (2018/06/11)更新頻度平均每月數次


使用zipkin

使用docker方式,使用如下方法,可以最簡單快速地啟動zipkin


docker run –name zipkin -d -p 9411:9411 openzipkin/zipkin

[root@kong ~]# docker pull openzipkin/zipkin
Using default tag: latest
Trying to pull repository docker.io/openzipkin/zipkin ...
latest: Pulling from docker.io/openzipkin/zipkin
3a9e9033596c: Pull complete
187e634e5a8a: Pull complete
fdcad99cc6cd: Pull complete
Digest: sha256:8b6d9da454dcd38ed8c34f11d4a9008d9ad664d913748ebc9b13c247596e7e6c
Status: Downloaded newer image for docker.io/openzipkin/zipkin:latest
[root@kong ~]#
[root@kong ~]#docker run --name zipkin -d -p 9411:9411 openzipkin/zipkin
6a752c4fef6283712908070661ca8e2d6e3d96c535432d04a66a24233ce81949
[root@kong ~]#
1
2
3
4
5
6
7
8
9
10
11
12
13

zipkin架構

Python項目中跟蹤系統導入Zipkin

zipkin由圖示的四個部分組成:

  • collector
  • storage
  • API
  • web UI

Python項目依賴

為了在Python項目中使用zipkin,需要py_zipkin/pyramid/pyramid_zipkin 。在CentOS系Linux發行版上命令如下:


yum install python-devel

pip install –trusted-host pypi.org –trusted-host files.pythonhosted.org py_zipkin pyramid pyramid_zipkin

模擬dapper論文的調用鏈

在這篇文章中我們將會模擬在Python項目中如何跟中dapper論文中的三層架構的例子:

Python項目中跟蹤系統導入Zipkin

層次服務名稱父span調用順序前端Frontend:A無1中間MiddleTier:BA2中間MiddleTier:CA3後端Backend:DC4後端Backend:EC5

這樣的一個樹形結構,表現出來的調用順序則是:A->B->C->D->E。

模擬五個服務

使用python簡單地模擬如上地A-E等五個服務,其中A和C為調用節點,而B/D/E為終端節點,A會調用B和C,其示例代碼如下,C與之類似:

[root@kong python]# ls
A.py B.py C.py D.py E.py test_zipkin.sh
[root@kong python]# cat A.py
import requests
import datetime
from pyramid.response import Response
from pyramid.view import view_config
from pyramid.config import Configurator
from py_zipkin.zipkin import create_http_headers_for_new_span
from wsgiref.simple_server import make_server
class ZipkinNode:
#properties:
connect_url="http://localhost:9001/api"
zipkin_url="http://localhost:9411"
zipkin_span_api=zipkin_url+"/api/v1/spans"
zipkin_service_name="default_service_name"
config=None
#function: zikpin callback handler
def zipkin_handler(self,stream_name, encoded_span):
requests.post(
self.zipkin_span_api,
data=encoded_span,
headers={"Content-Type": "application/x-thrift"},
)
#function:
def init_zipkin_settings(self,service_name):
settings = {}
settings["service_name"] = service_name
self.zipkin_service_name=service_name
settings["zipkin.transport_handler"] = self.zipkin_handler
settings["zipkin.tracing_percent"] = 100.0
self.config = Configurator(settings=settings)
self.config.include("pyramid_zipkin")
#function: add route
def add_router(self,router_type,router_url):
self.config.add_route(router_type, router_url)
self.config.scan()
#function:
def invoke_wsgi_service(self,host_port):
app = self.config.make_wsgi_app()
server = make_server("0.0.0.0", host_port, app)
print("service "+self.zipkin_service_name+" listening : http://localhost:"+str(host_port))
server.serve_forever()
#function: connector node callback function
@view_config(route_name="invoke_service")
def invoke_service(request):
headers = {}
headers.update(create_http_headers_for_new_span())
nextend_response = requests.get(
"http://localhost:9002/apib",
headers=headers,
)
headers = {}
headers.update(create_http_headers_for_new_span())
nextend_response = requests.get(
"http://localhost:9003/api",
headers=headers,
)
return Response(nextend_response.text)
node=ZipkinNode()
node.init_zipkin_settings("Service_A")
node.add_router("invoke_service","/api")
node.invoke_wsgi_service(9001)
[root@kong python]#
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72

服務B的代碼如下,D與E與之類似:

[root@kong python]# cat B.py
import requests
import datetime
from pyramid.response import Response
from pyramid.view import view_config
from pyramid.config import Configurator
from py_zipkin.zipkin import create_http_headers_for_new_span
from wsgiref.simple_server import make_server
class ZipkinNode:
#properties:
connect_url="http://localhost:9001/api"
zipkin_url="http://localhost:9411"
zipkin_span_api=zipkin_url+"/api/v1/spans"
zipkin_service_name="default_service_name"
config=None
#function: zikpin callback handler
def zipkin_handler(self,stream_name, encoded_span):
requests.post(
self.zipkin_span_api,
data=encoded_span,
headers={"Content-Type": "application/x-thrift"},
)
#function:
def init_zipkin_settings(self,service_name):
settings = {}
settings["service_name"] = service_name
self.zipkin_service_name=service_name
settings["zipkin.transport_handler"] = self.zipkin_handler
settings["zipkin.tracing_percent"] = 100.0
self.config = Configurator(settings=settings)
self.config.include("pyramid_zipkin")
#function: add route
def add_router(self,router_type,router_url):
self.config.add_route(router_type, router_url)
#function:
def invoke_wsgi_service(self,host_port):
self.config.scan()
app = self.config.make_wsgi_app()
server = make_server("0.0.0.0", host_port, app)
print("service "+self.zipkin_service_name+" listening : http://localhost:"+str(host_port))
server.serve_forever()
#function: end node callback function
@view_config(route_name="show_time")
def show_time(request):
return Response(str(datetime.datetime.now()))
node=ZipkinNode()
node.init_zipkin_settings("Service_B")
node.add_router("show_time","/apib")
node.invoke_wsgi_service(9002)
[root@kong python]#
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58

為了模擬zipkin,此處還提供了一個腳本用於對A到E的啟動/停止/重啟/狀態確認進行操作

[root@kong python]# sh test_zipkin.sh
Usage: test_zipkin.sh ACTION
ACTION: start|stop|restart|status
[root@kong python]#
1
2
3
4
5

代碼地址

代碼上傳到了github上,可參看:https://github.com/liumiaocn/easypack/tree/master/zipkin/python


事前準備&確認

事前pull完畢zipkin的鏡像,如果沒有,在實驗的時候也會自行pull

[root@kong python]# docker images |grep zipkin
docker.io/openzipkin/zipkin latest a62fb9056a9a 8 days ago 181 MB
[root@kong python]#
1
2
3

啟動zipkin和服務

[root@kong python]# sh test_zipkin.sh start
## Operation: start
## start begins ...
## start zipkin service
2afd09f3ee50e4766702a70ea6cfaf0645e9c4aa5d609911bca2763b890f7f20
## before start action
## Operation: status
## status begins ...
demo process: A.py
demo process: B.py
demo process: C.py
demo process: D.py
demo process: E.py
## status ends...
## after start action
## Operation: status
## status begins ...
demo process: A.py
root 7988 7911 7 00:32 pts/1 00:00:00 python A.py
demo process: B.py
service Service_A listening : http://localhost:9001
service Service_C listening : http://localhost:9003
root 7989 7911 7 00:32 pts/1 00:00:00 python B.py
demo process: C.py
root 7990 7911 7 00:32 pts/1 00:00:00 python C.py
demo process: D.py
root 7991 7911 7 00:32 pts/1 00:00:00 python D.py
demo process: E.py
root 7992 7911 7 00:32 pts/1 00:00:00 python E.py
## status ends...
## start ends...
[root@kong python]#
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35

確認zipkin

Python項目中跟蹤系統導入Zipkin


訪問入口服務

[root@kong python]# curl http://localhost:9001/api
127.0.0.1 - - [30/May/2018 00:36:35] "GET /apib HTTP/1.1" 200 26
127.0.0.1 - - [30/May/2018 00:36:35] "GET /api HTTP/1.1" 200 26
127.0.0.1 - - [30/May/2018 00:36:40] "GET /api HTTP/1.1" 200 26
127.0.0.1 - - [30/May/2018 00:36:40] "GET /api HTTP/1.1" 200 26
127.0.0.1 - - [30/May/2018 00:36:40] "GET /api HTTP/1.1" 200 26
2018-05-30 00:36:40.788249[root@kong python]#
[root@kong python]#
1
2
3
4
5
6
7
8

確認:服務個數

再次刷新zipkin,即可看到service name發生變化

Python項目中跟蹤系統導入Zipkin


確認:trace信息

點擊find trace即可看到含有5個span的如下信息

Python項目中跟蹤系統導入Zipkin

調用棧

Python項目中跟蹤系統導入Zipkin

服務A詳細

Python項目中跟蹤系統導入Zipkin

服務B詳細

Python項目中跟蹤系統導入Zipkin

服務C詳細

Python項目中跟蹤系統導入Zipkin

服務D詳細

Python項目中跟蹤系統導入Zipkin

服務E詳細

Python項目中跟蹤系統導入Zipkin


依賴關係

Python項目中跟蹤系統導入Zipkin

喜歡這篇文章嗎?立刻分享出去讓更多人知道吧!

本站內容充實豐富,博大精深,小編精選每日熱門資訊,隨時更新,點擊「搶先收到最新資訊」瀏覽吧!


請您繼續閱讀更多來自 程序員小新人學習 的精彩文章:

Matlab對深度學習工具包DeepLearnToolbox的例子實現
hue配置使用mysql

TAG:程序員小新人學習 |