当我运行 apache benchmark 时如何记录警告
当我运行 apache benchmark 时如何记录警告。
我运行了这个命令 ab -n10000 -c100 http://crossroads/blog (本地)
但没有任何请求被记录到阿帕奇日志文件。
当我在浏览器中尝试相同的链接时,它记录了所有条目。每个请求中几乎有 100 个条目。
谁能帮助我如何使用 ab
命令填充日志条目?
谢谢
How can i log warnings when i run apache benchmark.
I ran this command ab -n10000 -c100 http://crossroads/blog (Locally)
But none of the request is logged in to apache log file.
When i tried the same link in the browser it logged all the entries. Almost 100 entry in each request.
Can anyone help me how can i populate log entry with ab
command ?
Thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基本输入/输出重定向,可能是增加灵活性的好方法你的小一行启动脚本。您应该能够将事物重定向到需要的地方,但这取决于您设计应用程序的方式。
也许尝试像这样简单的事情可能对您有用:
Ab 可能已经有一个日志文件参数,这似乎很自然。但上面的代码示例显示了 io 重定向的良好灵活性,将所有错误返回和程序输出重定向到同一日志文件。
这是一种很容易被忽视但功能强大的技术,集成在许多 shell 脚本中,但尚未在 ab 中尝试过。
我真的认为 ab 会有一个日志文件参数或类似的东西。
祝你好运
Basic input/output redirection, could be a great way to add flexibility to your small one liner start up scripts. You should be able to redirect things where they need to, but this will depend on how you design your app.
Maybe trying something as simple as this could work for you:
Ab may already have a logfile parameter it seems it would be natural. But above code example show the nice flexibility of io redirections, redirects all error returns and program output to same logfile.
It's an easily overlooked yet powerful technique integrated in many shell scripts, but not tried with ab though.
I would really of thought ab would have a log file parameter or something of the sort.
Good-luck