最好使用 Splunk 在 IIS 日志中查找 HTTP Post 参数
我能够找到作为请求一部分生成的 GET 参数,但无法检索请求的 POST 参数。你们能告诉我我的搜索参数应该是什么吗?
IIS 真的会记录这个吗?
提前致谢。
I am able to find the GET parameters that are made as part of a request but I am not able to retrieve the POST parameters for a request. Can you guys tell me what should be my search parameters for the same?
Does IIS actually log this?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IIS 不记录 POST 参数。 POST 通常用于大型数据集和文件上传,这会占用大量磁盘空间,并可能导致服务器很容易耗尽空间。
您可以使用 log4net 和 log POST 参数等设置一些手动日志记录。文件增长仍然是一个问题,但 log4net 可以配置为限制增长和滚动到一定大小。然后,您可以使用 splunk 对 log4net 日志建立索引
IIS does not log POST parameters. POST is commonly used for large data sets and file uploads which would take up a ton of space on your disk and could cause your server to run out of space easily.
You can setup some manual logging with something like log4net and log POST parameters. File growth will still be a problem but log4net can be configured to limit growth and roll-over at a certain size. You can then index your log4net logs using splunk