“我的网站瘫痪了吗?”方法
创建“我的网站已关闭吗?”的最佳方法是什么?在鲁比?我应该如何使用 HTTP(s) 和 Ping 来检查它?
谢谢。
What's the best way to create a "Is my site down?" in Ruby? How should I do it to check it using HTTP(s) and Ping?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
基本上只是使用 http 库来查看是否可以获得(实际上,HEADing 会更好)他们指向的页面。如果您收到响应,则服务器已启动,否则(不响应或超时)服务器已关闭,您会相应地提醒用户。
这不是最干净的方法,但基本上:
您可能可以让它不等待超时,和/或增加超时以避免超时以避免误报,但这是一个简单的示例。
Basically just use a http library to see if you can get (actually, HEADing would be better) the page they're pointing to. If you get a response then the server is up, otherwise (it doesn't respond or times out) it is down and you alert the user accordingly.
This isn't the cleanest way of doing it, but basically:
You can probably get it to not wait for the timeout, and/or increase the timeout to avoid the timeout to avoid false positive, but this is a simple example.
(欺骗)
(cheat)