码迷,mamicode.com
首页 > Web开发 > 详细

centos curl web站点监控实践

时间:2015-04-11 13:12:48      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

1,监控给定web站点的状态--站点请求返回代码,下载整个web站点页面文本到-o 指定的文本

curl -o /dev/null -s-silent -w--wirte-out "%{http_code}" "http://baidu.com";

2,开启gizp

技术分享

技术分享

3,curl监控网页响应时间

curl -o /dev/null -s -w "time_connect: %{time_connect}\ntime_starttransfer: %{time_starttransfer}\ntime_total: %{time_total}\n" "url"

技术分享

curl -o /dev/null -s -w ‘%{time_total}‘ "url"

技术分享

time_connect 建立到服务器的tcp连接所用时间
time_starttransfer 在发出请求之后,web服务器返回数据的第一个字节所用时间
time_total 完成请求所用时间
http_code

curl -I 取文件 的http头部
-x 指定访问ip与 端口

技术分享

curl提交用户名密码

curl http://name:passwd@www.miotour.com
curl -u name:passwd http://www.miotour.com

 

centos curl web站点监控实践

标签:

原文地址:http://www.cnblogs.com/ruiy/p/4417438.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!