文件名称:http_log:将HTTP请求记录到MongoDB进行调试并通过Web访问它们
文件大小:44KB
文件格式:ZIP
更新时间:2024-05-24 19:50:02
CSS
HTTP日志 以搜索格式将对您的应用程序的所有请求记录到MongoDB。 该gem包含一个中间件,可将机架请求记录到MongodB。 它还在每个响应中添加一个标头,指示可用于检索该请求的id 。 您可以将此标头与Rails添加的标头结合使用,以跟踪应用程序与您的应用程序进行的对话。 安装 此宝石使用Mongoid来存储模型。 一旦安装了gem,请运行mongoid配置生成器以建立连接。 gem 'http_log' bundle install bundle exec rails g mongoid:config # if you don't already have one 记录内容的示例 { "_id" : "4f16c6c4340765d7c5000005" , "url" : "http://www.example.com/" , "http_method" : "
【文件预览】:
http_log-master
----.gitignore(138B)
----app()
--------assets()
--------models()
--------views()
--------controllers()
----.travis.yml(47B)
----http_log.gemspec(818B)
----config()
--------routes.rb(95B)
----script()
--------rails(319B)
----lib()
--------http_log.rb(360B)
--------http_log()
----readme.md(3KB)
----Gemfile(562B)
----MIT-LICENSE(1KB)
----Rakefile(799B)
----test()
--------dummy()
--------integration()
--------support()
--------test_helper.rb(318B)