<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
哈嘍,大家好,我是asong
。
今天給大家推薦一款使用Go語言編寫的流量回放工具 -- goreplay;工作中你一定遇到過需要在伺服器上抓包的場景,有了這個工具就可以助你一臂之力,goreplay的功能十分強大,支援流量的放大、縮小,並且整合了ElasticSearch
,將流量存入ES進行實時分析;
廢話不多,我們接下來來看一看這個工具;
專案地址:https://github.com/buger/goreplay
goreplay是一個開源網路監控工具,可以實時記錄TCP/HTTP流量,支援把流量記錄到檔案或者elasticSearch
實時分析,也支援流量的放大、縮小,還支援頻率限制;goreplay不是代理,無需任何程式碼入侵,只需要在服務相同的機器上執行goreplay
守護程式,其會在後臺偵聽網路介面上的流量,goreplay
的設計遵循 Unix 設計哲學:一切都是由管道組成的,各種輸入將資料複用為輸出;可以看一下官網畫的架構圖:
goreplay
的安裝也比較簡單,只需要在https://github.com/buger/goreplay/releases 下載對應作業系統的二進位制檔案即可,我的電腦是mac
的:
解壓縮後就是一個二進位制檔案gor
,將其新增到您的環境變數中,方便我們後續的操作;
實時流量轉發
首先我們要準備一個Web
服務,最簡單的就是用Gin
快速實現一個helloworld
,替大家實現好了:https://github.com/asong2020/Golang_Dream/tree/master/code_demo/gin_demo;
import ( "flag" "github.com/gin-gonic/gin" ) var Port string func init() { flag.StringVar(&Port, "port", "8081", "Input Your Port") } func main() { flag.Parse() r := gin.Default() r.Use() r1 := r.Group("/api") { r1.GET("/ping", func(c *gin.Context) { c.JSON(200, gin.H{ "message": "pong", }) }) } r.Run("localhost:" + Port) }
因為資源有限,這裡我用一臺電腦起兩個程序來模擬流量轉發,分別啟動兩個web服務分別監控埠號8081
、8082
:
$ go run . --port="8081" $ go run . --port="8082"
服務弄好了,現在我們來開啟gor
守護行程進行流量監聽與轉發,將8081
埠的流量轉發到8082
埠上:
$ sudo gor --input-raw :8081 --output-http="http://127.0.0.1:8082"
現在我們請求8081
埠:
$ curl --location --request GET 'http://127.0.0.1:8081/api/ping'
可以看到8082
埠同樣被請求了:
goreplay
支援將捕獲的流量儲存到檔案中,實際工作中我們可以使用捕獲的流量做壓力測試,首先我們需要將捕獲的流量儲存到本地檔案,然後利用該檔案進行流量回放;
還是上面的Web
程式,我們將埠8081
的流量儲存到本地檔案:
$ sudo gor --input-raw :8081 --output-file ./requests.gor
我們對8081
埠執行了5次請求:
然後我們對8082
埠進行流量縮小測試,縮小一倍:
gor --input-file "requests_0.gor" --output-http="http://127.0.0.1:8082|50%"
調整百分比就是進行流量放大、縮小,這裡我們縮小了一倍,可以看到只有2次請求到了8082
埠;我們可以調整流量回放的速度,比如我們調整流量以10倍速度進行重播:
$ gor --input-file "requests_0.gor|1000%" --output-http="http://127.0.0.1:8082|50%" # 1000%就是放大10倍
goreplay
可以將捕獲的流量匯出到Es
中,只需要執行如下命令:
$ gor --input-raw :8000 --output-http http://staging.cm --output-http-elasticsearch localhost:9200/gor
我們不需要提前建立索引結構,他將自動建立,具體結構如下:
type ESRequestResponse struct { ReqURL string `json:"Req_URL"` ReqMethod string `json:"Req_Method"` ReqUserAgent string `json:"Req_User-Agent"` ReqAcceptLanguage string `json:"Req_Accept-Language,omitempty"` ReqAccept string `json:"Req_Accept,omitempty"` ReqAcceptEncoding string `json:"Req_Accept-Encoding,omitempty"` ReqIfModifiedSince string `json:"Req_If-Modified-Since,omitempty"` ReqConnection string `json:"Req_Connection,omitempty"` ReqCookies string `json:"Req_Cookies,omitempty"` RespStatus string `json:"Resp_Status"` RespStatusCode string `json:"Resp_Status-Code"` RespProto string `json:"Resp_Proto,omitempty"` RespContentLength string `json:"Resp_Content-Length,omitempty"` RespContentType string `json:"Resp_Content-Type,omitempty"` RespTransferEncoding string `json:"Resp_Transfer-Encoding,omitempty"` RespContentEncoding string `json:"Resp_Content-Encoding,omitempty"` RespExpires string `json:"Resp_Expires,omitempty"` RespCacheControl string `json:"Resp_Cache-Control,omitempty"` RespVary string `json:"Resp_Vary,omitempty"` RespSetCookie string `json:"Resp_Set-Cookie,omitempty"` Rtt int64 `json:"RTT"` Timestamp time.Time }
goreplay
提供了太多的功能,就不一一介紹了,可以通過執行help
命令檢視其他高階用法,每個命令都提供了例子,入手很快;
$ gor -h Gor is a simple http traffic replication tool written in Go. Its main goal is to replay traffic from production servers to staging and dev environments. Project page: https://github.com/buger/gor Author: <Leonid Bugaev> leonsbox@gmail.com Current Version: v1.3.0 -copy-buffer-size value Set the buffer size for an individual request (default 5MB) -cpuprofile string write cpu profile to file -exit-after duration exit after specified duration -http-allow-header value A regexp to match a specific header against. Requests with non-matching headers will be dropped: gor --input-raw :8080 --output-http staging.com --http-allow-header api-version:^v1 -http-allow-method value Whitelist of HTTP methods to replay. Anything else will be dropped: gor --input-raw :8080 --output-http staging.com --http-allow-method GET --http-allow-method OPTIONS -http-allow-url value A regexp to match requests against. Filter get matched against full url with domain. Anything else will be dropped: gor --input-raw :8080 --output-http staging.com --http-allow-url ^www. -http-basic-auth-filter value A regexp to match the decoded basic auth string against. Requests with non-matching headers will be dropped: gor --input-raw :8080 --output-http staging.com --http-basic-auth-filter "^customer[0-9].*" -http-disallow-header value A regexp to match a specific header against. Requests with matching headers will be dropped: gor --input-raw :8080 --output-http staging.com --http-disallow-header "User-Agent: Replayed by Gor" ..........省略
goreplay
底層也是呼叫Libpcap
,Libpcap
即封包捕獲函數庫,tcpdump
也是基於這個庫實現的,Libpcap
是C
語言寫的,Go
語言不能直接呼叫C
語言,需要使用CGo
,所以goreplay
可以直接使用谷歌的包github.com/google/gopacket,提供了更方便的操作介面,基於goreplay
封裝了input
、output
,在啟動的時候通過命令列引數解析指定的input
、output
,input
讀取資料寫入到output
中,預設是一個input
複製多份,寫多個output
,多個input
之前是並行的,但是單個intput
到多個output
是序列的,所以input-file
會有效能瓶頸,壓測的時候需要開多個程序同時跑來達到壓測需求;
goreplay
的原始碼有點多,就不在這裡分析了,大家感興趣哪一部分可以從gor.go
的main
函數入手,看自己感興趣的部分就可以了;
goreplay
提供的玩法非常豐富,合理的改造可以做成迴歸工具幫助我們確保服務的穩定性,別放過這個自我展現的機會~。
以上就是利用Go語言實現流量回放工具的範例程式碼的詳細內容,更多關於Go語言流量回放工具的資料請關注it145.com其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45