1、登錄服務器地址
查詢語法:
支持 AND , OR, && || >,< ,=模糊 *,!
1、如查詢nginx 狀態為500的訪問日志
status:500
2、如查詢nginx狀態為5xx的日志
status:[ 500 TO 599 ]
3、查某個域名為500的日志
domain:"phy.xxx.cn" AND status:500
domain:"phy.xxx.cn" && status:500
4、查某個域名500或者為502 的日志
domain:"phy.xxx.cn" AND (status:502 OR status:500)
domain:"phy.xxx.cn" && (status:502 || status:500)
5、查詢某個域名執行時間 大於2秒的日志
domain:"phy.xxx.cn" AND request_time:>2
domain:"phy.xxx.cn" && request_time:>2
6、查詢online-study-xxx-xx的所有主機名 日志
host:"online-study-xxx-*"
host:"online-study-xxx-.*"
其它復雜語法: