Last active
January 28, 2025 08:32
-
-
Save byroot/e1fcfd1f8e172f5d9c5bfecefebdb15f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'json' | |
path = ARGV.first | |
class Request | |
attr_reader :gc_ms, :run_ms, :idle_ms, :stall_ms, :io_percent, :method, :action | |
def initialize(hash) | |
@gc_ms = hash[:gc_ms] | |
@run_ms = hash[:run_ms] | |
@idle_ms = hash[:idle_ms] | |
@stall_ms = hash[:stall_ms] | |
@io_percent = hash[:io_percent] | |
@method = hash[:method] | |
@action = hash[:action] | |
end | |
end | |
requests = [] | |
File.open(path).each_line do |line| | |
requests << Request.new(JSON.parse(line, symbolize_names: true, freeze: true)) | |
end | |
print "total io%: " | |
total_run_ms = requests.sum(&:run_ms) | |
total_idle_ms = requests.sum(&:idle_ms) | |
puts ((total_idle_ms / (total_run_ms + total_idle_ms)) * 100.0).round(2) | |
print "total io and stall%: " | |
total_stall_ms = requests.sum(&:stall_ms) | |
puts (((total_idle_ms + total_stall_ms) / (total_run_ms + total_idle_ms + total_stall_ms)) * 100.0).round(2) | |
print "average response time ms: " | |
puts ((total_stall_ms + total_run_ms + total_idle_ms) / requests.size).round(2) | |
print "average stall ms: " | |
puts (total_stall_ms / requests.size).round(2) | |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"gc_ms":2.07,"run_ms":62.29,"idle_ms":20.34,"stall_ms":654.91,"io_percent":2.6,"method":"GET"} | |
{"gc_ms":27.74,"run_ms":70.31,"idle_ms":516.34,"stall_ms":874.32,"io_percent":31.1,"method":"GET"} | |
{"gc_ms":138.16,"run_ms":240.27,"idle_ms":100.35,"stall_ms":2062.66,"io_percent":3.1,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.46,"run_ms":45.44,"idle_ms":0.02,"stall_ms":469.69,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":191.87,"run_ms":663.19,"idle_ms":1008.0,"stall_ms":3495.99,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":192.61,"run_ms":394.97,"idle_ms":909.81,"stall_ms":4779.95,"io_percent":13.5,"method":"GET","action":"home#index"} | |
{"gc_ms":179.71,"run_ms":565.85,"idle_ms":975.98,"stall_ms":4038.59,"io_percent":15.1,"method":"GET","action":"home#index"} | |
{"gc_ms":179.71,"run_ms":566.63,"idle_ms":1021.12,"stall_ms":3906.59,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":190.57,"run_ms":376.06,"idle_ms":108.98,"stall_ms":5763.95,"io_percent":1.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":184.5,"run_ms":357.25,"idle_ms":65.45,"stall_ms":3117.54,"io_percent":1.6,"method":"GET","action":"home#index"} | |
{"gc_ms":209.0,"run_ms":339.46,"idle_ms":158.29,"stall_ms":5089.91,"io_percent":2.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":191.31,"run_ms":573.02,"idle_ms":164.11,"stall_ms":6457.99,"io_percent":2.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":35.65,"idle_ms":0.02,"stall_ms":13.72,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":212.51,"run_ms":513.25,"idle_ms":1319.62,"stall_ms":3426.74,"io_percent":19.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":212.08,"run_ms":400.55,"idle_ms":804.4,"stall_ms":4482.37,"io_percent":12.0,"method":"GET","action":"home#index"} | |
{"gc_ms":217.26,"run_ms":478.57,"idle_ms":1674.46,"stall_ms":4989.04,"io_percent":20.0,"method":"GET","action":"home#index"} | |
{"gc_ms":76.82,"run_ms":350.67,"idle_ms":169.45,"stall_ms":3712.82,"io_percent":3.6,"method":"GET","action":"home#index"} | |
{"gc_ms":214.62,"run_ms":485.08,"idle_ms":796.55,"stall_ms":3793.11,"io_percent":12.6,"method":"GET","action":"home#newest"} | |
{"gc_ms":216.69,"run_ms":522.55,"idle_ms":346.66,"stall_ms":5393.26,"io_percent":4.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":215.92,"run_ms":500.5,"idle_ms":735.38,"stall_ms":4981.65,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":42.27,"idle_ms":6.85,"stall_ms":622.39,"io_percent":0.9,"method":"GET","action":"home#index"} | |
{"gc_ms":190.45,"run_ms":724.34,"idle_ms":370.93,"stall_ms":3190.96,"io_percent":6.6,"method":"GET","action":"home#index"} | |
{"gc_ms":152.88,"run_ms":156.96,"idle_ms":922.92,"stall_ms":2948.1,"io_percent":22.3,"method":"GET","action":"home#index"} | |
{"gc_ms":199.52,"run_ms":631.92,"idle_ms":382.99,"stall_ms":3953.12,"io_percent":6.4,"method":"GET","action":"home#newest"} | |
{"gc_ms":201.23,"run_ms":502.51,"idle_ms":653.08,"stall_ms":4273.25,"io_percent":10.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.84,"run_ms":40.7,"idle_ms":16.2,"stall_ms":327.93,"io_percent":3.4,"method":"GET"} | |
{"gc_ms":203.38,"run_ms":527.33,"idle_ms":1200.51,"stall_ms":3764.06,"io_percent":18.6,"method":"GET","action":"home#index"} | |
{"gc_ms":203.77,"run_ms":552.51,"idle_ms":1422.88,"stall_ms":3513.58,"io_percent":21.2,"method":"GET","action":"home#index"} | |
{"gc_ms":212.74,"run_ms":680.85,"idle_ms":604.78,"stall_ms":5311.84,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":204.84,"run_ms":589.47,"idle_ms":680.38,"stall_ms":4378.57,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":201.73,"run_ms":371.65,"idle_ms":255.5,"stall_ms":4910.77,"io_percent":4.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":215.52,"run_ms":176.35,"idle_ms":2886.69,"stall_ms":3046.43,"io_percent":44.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":215.52,"run_ms":488.66,"idle_ms":346.5,"stall_ms":4261.42,"io_percent":5.3,"method":"GET","action":"home#newest"} | |
{"gc_ms":203.82,"run_ms":522.47,"idle_ms":448.37,"stall_ms":4477.34,"io_percent":7.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.63,"run_ms":49.4,"idle_ms":20.08,"stall_ms":180.65,"io_percent":4.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":36.14,"idle_ms":10.12,"stall_ms":171.17,"io_percent":4.0,"method":"GET"} | |
{"gc_ms":217.3,"run_ms":438.14,"idle_ms":488.13,"stall_ms":5470.66,"io_percent":6.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":204.27,"run_ms":387.34,"idle_ms":366.55,"stall_ms":5992.35,"io_percent":5.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":44.59,"run_ms":257.72,"idle_ms":175.3,"stall_ms":2798.08,"io_percent":4.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":15.94,"run_ms":120.45,"idle_ms":14.89,"stall_ms":1243.08,"io_percent":0.9,"method":"GET","action":"home#index"} | |
{"gc_ms":188.71,"run_ms":262.67,"idle_ms":1052.37,"stall_ms":3917.41,"io_percent":19.4,"method":"GET","action":"home#index"} | |
{"gc_ms":187.48,"run_ms":442.22,"idle_ms":539.08,"stall_ms":2003.81,"io_percent":13.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":63.62,"idle_ms":9.05,"stall_ms":766.81,"io_percent":1.0,"method":"GET","action":"home#index"} | |
{"gc_ms":4.95,"run_ms":119.49,"idle_ms":35.65,"stall_ms":1720.05,"io_percent":1.7,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":72.91,"idle_ms":11.63,"stall_ms":766.01,"io_percent":1.2,"method":"GET","action":"home#newest"} | |
{"gc_ms":44.59,"run_ms":232.45,"idle_ms":177.16,"stall_ms":3227.85,"io_percent":4.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":48.01,"idle_ms":51.53,"stall_ms":744.88,"io_percent":5.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":71.19,"idle_ms":16.38,"stall_ms":311.8,"io_percent":3.5,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.0,"run_ms":42.42,"idle_ms":8.9,"stall_ms":302.13,"io_percent":2.4,"method":"GET","action":"home#index"} | |
{"gc_ms":20.06,"run_ms":160.68,"idle_ms":78.74,"stall_ms":772.38,"io_percent":7.3,"method":"GET","action":"home#index"} | |
{"gc_ms":38.88,"run_ms":328.57,"idle_ms":209.33,"stall_ms":2423.95,"io_percent":5.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":46.13,"run_ms":115.18,"idle_ms":151.3,"stall_ms":1610.2,"io_percent":7.4,"method":"GET","action":"home#index"} | |
{"gc_ms":20.67,"run_ms":160.29,"idle_ms":63.48,"stall_ms":886.69,"io_percent":5.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.23,"run_ms":14.29,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.23,"run_ms":36.05,"idle_ms":0.15,"stall_ms":25.22,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":38.94,"run_ms":230.76,"idle_ms":132.49,"stall_ms":3980.41,"io_percent":2.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":133.74,"idle_ms":14.56,"stall_ms":395.83,"io_percent":1.8,"method":"GET","action":"home#index"} | |
{"gc_ms":38.88,"run_ms":203.86,"idle_ms":124.98,"stall_ms":2677.64,"io_percent":3.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":23.26,"run_ms":196.3,"idle_ms":90.11,"stall_ms":1265.64,"io_percent":3.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":36.52,"idle_ms":19.93,"stall_ms":432.69,"io_percent":3.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":32.31,"idle_ms":24.95,"stall_ms":479.27,"io_percent":4.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.6,"run_ms":122.72,"idle_ms":5.0,"stall_ms":1510.76,"io_percent":0.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.93,"run_ms":157.98,"idle_ms":12.96,"stall_ms":479.38,"io_percent":1.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":28.8,"idle_ms":24.19,"stall_ms":203.2,"io_percent":6.5,"method":"HEAD"} | |
{"gc_ms":1.6,"run_ms":59.07,"idle_ms":12.3,"stall_ms":1781.44,"io_percent":0.7,"method":"GET","action":"home#index"} | |
{"gc_ms":23.65,"run_ms":116.88,"idle_ms":384.98,"stall_ms":1961.3,"io_percent":14.4,"method":"GET","action":"home#index"} | |
{"gc_ms":23.65,"run_ms":190.86,"idle_ms":5.04,"stall_ms":2286.09,"io_percent":0.2,"method":"GET","action":"home#index"} | |
{"gc_ms":23.65,"run_ms":108.69,"idle_ms":479.03,"stall_ms":1885.14,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":37.89,"idle_ms":22.0,"stall_ms":132.8,"io_percent":8.4,"method":"GET"} | |
{"gc_ms":22.01,"run_ms":261.46,"idle_ms":110.43,"stall_ms":2911.2,"io_percent":2.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":34.03,"idle_ms":10.69,"stall_ms":103.23,"io_percent":4.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.28,"run_ms":75.6,"idle_ms":5.75,"stall_ms":841.0,"io_percent":0.5,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.93,"run_ms":88.76,"idle_ms":22.1,"stall_ms":1075.32,"io_percent":1.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":124.99,"idle_ms":11.89,"stall_ms":944.07,"io_percent":0.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.59,"run_ms":27.37,"idle_ms":42.2,"stall_ms":629.42,"io_percent":5.4,"method":"GET"} | |
{"gc_ms":122.24,"run_ms":127.5,"idle_ms":15.51,"stall_ms":647.91,"io_percent":1.7,"method":"GET","action":"home#newest"} | |
{"gc_ms":143.17,"run_ms":172.44,"idle_ms":88.59,"stall_ms":1051.61,"io_percent":5.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":17.74,"idle_ms":131.68,"stall_ms":1172.22,"io_percent":9.9,"method":"GET"} | |
{"gc_ms":2.28,"run_ms":120.31,"idle_ms":16.36,"stall_ms":1123.06,"io_percent":1.1,"method":"GET","action":"home#index"} | |
{"gc_ms":38.27,"run_ms":230.04,"idle_ms":184.32,"stall_ms":1698.0,"io_percent":7.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":193.54,"run_ms":540.84,"idle_ms":2142.66,"stall_ms":3593.21,"io_percent":29.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":126.66,"idle_ms":17.67,"stall_ms":1068.41,"io_percent":1.0,"method":"GET","action":"home#index"} | |
{"gc_ms":4.53,"run_ms":114.78,"idle_ms":36.89,"stall_ms":2177.65,"io_percent":1.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":28.51,"idle_ms":9.06,"stall_ms":728.52,"io_percent":1.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.99,"idle_ms":56.45,"stall_ms":817.94,"io_percent":5.6,"method":"GET"} | |
{"gc_ms":0.18,"run_ms":81.76,"idle_ms":45.64,"stall_ms":878.93,"io_percent":3.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":107.0,"idle_ms":93.45,"stall_ms":1260.98,"io_percent":5.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.18,"run_ms":36.94,"idle_ms":72.34,"stall_ms":1216.61,"io_percent":5.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":24.37,"idle_ms":0.19,"stall_ms":9.1,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":112.33,"run_ms":90.64,"idle_ms":22.87,"stall_ms":1350.55,"io_percent":1.3,"method":"GET","action":"home#index"} | |
{"gc_ms":108.9,"run_ms":63.43,"idle_ms":27.56,"stall_ms":1592.97,"io_percent":1.6,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":174.75,"idle_ms":45.94,"stall_ms":1257.23,"io_percent":2.6,"method":"GET","action":"moderations#index"} | |
{"gc_ms":0.0,"run_ms":84.87,"idle_ms":39.03,"stall_ms":1351.57,"io_percent":2.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":121.47,"idle_ms":29.36,"stall_ms":1351.83,"io_percent":1.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":30.3,"idle_ms":18.81,"stall_ms":833.07,"io_percent":2.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":104.32,"idle_ms":99.75,"stall_ms":1246.66,"io_percent":5.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":27.8,"idle_ms":18.89,"stall_ms":65.63,"io_percent":13.0,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":102.64,"idle_ms":19.23,"stall_ms":813.99,"io_percent":1.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":109.87,"idle_ms":56.47,"stall_ms":1724.88,"io_percent":2.7,"method":"GET","action":"home#index"} | |
{"gc_ms":95.27,"run_ms":274.39,"idle_ms":137.63,"stall_ms":1797.97,"io_percent":5.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":239.64,"idle_ms":234.93,"stall_ms":1813.84,"io_percent":8.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":94.47,"idle_ms":35.6,"stall_ms":1246.21,"io_percent":2.4,"method":"GET","action":"home#index"} | |
{"gc_ms":157.56,"run_ms":485.84,"idle_ms":274.46,"stall_ms":3145.72,"io_percent":5.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":62.14,"idle_ms":14.07,"stall_ms":695.56,"io_percent":1.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":102.25,"idle_ms":52.45,"stall_ms":668.53,"io_percent":5.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":73.7,"idle_ms":11.67,"stall_ms":722.13,"io_percent":1.3,"method":"GET","action":"home#index"} | |
{"gc_ms":21.02,"run_ms":84.17,"idle_ms":10.21,"stall_ms":281.72,"io_percent":2.4,"method":"GET","action":"home#index"} | |
{"gc_ms":173.24,"run_ms":293.75,"idle_ms":1016.57,"stall_ms":4221.42,"io_percent":17.6,"method":"GET","action":"home#index"} | |
{"gc_ms":160.66,"run_ms":375.62,"idle_ms":685.43,"stall_ms":3480.01,"io_percent":12.0,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":21.02,"run_ms":53.61,"idle_ms":24.9,"stall_ms":386.08,"io_percent":4.6,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":58.53,"idle_ms":14.25,"stall_ms":954.82,"io_percent":1.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":65.74,"idle_ms":37.28,"stall_ms":524.94,"io_percent":4.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.75,"run_ms":177.24,"idle_ms":37.59,"stall_ms":1280.97,"io_percent":2.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":68.59,"idle_ms":32.92,"stall_ms":1333.58,"io_percent":2.0,"method":"GET","action":"home#index"} | |
{"gc_ms":174.36,"run_ms":274.79,"idle_ms":2322.15,"stall_ms":3072.65,"io_percent":39.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":72.09,"idle_ms":36.35,"stall_ms":1449.69,"io_percent":2.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.75,"run_ms":85.28,"idle_ms":49.7,"stall_ms":1454.76,"io_percent":2.7,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":50.06,"idle_ms":9.3,"stall_ms":662.11,"io_percent":1.2,"method":"GET","action":"home#index"} | |
{"gc_ms":147.81,"run_ms":116.7,"idle_ms":48.48,"stall_ms":1642.52,"io_percent":2.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":57.37,"idle_ms":8.11,"stall_ms":71.68,"io_percent":3.0,"method":"GET","action":"home#index"} | |
{"gc_ms":26.07,"run_ms":49.38,"idle_ms":15.6,"stall_ms":442.4,"io_percent":2.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":27.01,"idle_ms":10.76,"stall_ms":235.78,"io_percent":3.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.63,"idle_ms":14.12,"stall_ms":186.34,"io_percent":5.9,"method":"GET"} | |
{"gc_ms":27.27,"run_ms":102.35,"idle_ms":56.51,"stall_ms":1865.52,"io_percent":2.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":186.44,"idle_ms":64.26,"stall_ms":1354.78,"io_percent":3.1,"method":"GET","action":"home#index"} | |
{"gc_ms":18.18,"run_ms":404.38,"idle_ms":545.99,"stall_ms":3789.76,"io_percent":9.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":34.49,"run_ms":90.15,"idle_ms":35.68,"stall_ms":956.49,"io_percent":3.1,"method":"GET","action":"home#index"} | |
{"gc_ms":3.76,"run_ms":33.11,"idle_ms":20.32,"stall_ms":294.85,"io_percent":4.4,"method":"GET"} | |
{"gc_ms":7.61,"run_ms":45.55,"idle_ms":31.61,"stall_ms":518.27,"io_percent":4.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":67.47,"idle_ms":39.2,"stall_ms":998.14,"io_percent":2.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.05,"run_ms":100.78,"idle_ms":9.03,"stall_ms":438.16,"io_percent":1.1,"method":"GET","action":"home#index"} | |
{"gc_ms":3.5,"run_ms":54.16,"idle_ms":17.98,"stall_ms":418.23,"io_percent":3.4,"method":"GET","action":"home#index"} | |
{"gc_ms":39.05,"run_ms":23.05,"idle_ms":103.26,"stall_ms":580.65,"io_percent":12.9,"method":"HEAD"} | |
{"gc_ms":150.98,"run_ms":396.94,"idle_ms":598.42,"stall_ms":2559.53,"io_percent":14.5,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.18,"run_ms":254.99,"idle_ms":247.21,"stall_ms":2221.7,"io_percent":7.3,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":4.56,"run_ms":64.53,"idle_ms":32.1,"stall_ms":227.24,"io_percent":7.3,"method":"GET","action":"home#index"} | |
{"gc_ms":24.79,"run_ms":93.85,"idle_ms":41.47,"stall_ms":835.03,"io_percent":3.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":144.55,"idle_ms":35.29,"stall_ms":439.69,"io_percent":3.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":83.49,"idle_ms":13.24,"stall_ms":1377.4,"io_percent":0.8,"method":"GET","action":"home#newest"} | |
{"gc_ms":5.21,"run_ms":39.23,"idle_ms":47.06,"stall_ms":417.1,"io_percent":8.0,"method":"GET","action":"home#index"} | |
{"gc_ms":40.13,"run_ms":38.96,"idle_ms":56.69,"stall_ms":538.13,"io_percent":7.9,"method":"GET","action":"home#newest"} | |
{"gc_ms":33.73,"run_ms":143.01,"idle_ms":38.88,"stall_ms":1040.07,"io_percent":2.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":29.42,"run_ms":59.34,"idle_ms":34.51,"stall_ms":742.39,"io_percent":3.2,"method":"GET","action":"home#index"} | |
{"gc_ms":155.54,"run_ms":229.44,"idle_ms":163.47,"stall_ms":3028.74,"io_percent":4.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.07,"run_ms":113.46,"idle_ms":21.77,"stall_ms":873.18,"io_percent":2.1,"method":"GET","action":"home#index"} | |
{"gc_ms":33.73,"run_ms":253.29,"idle_ms":475.19,"stall_ms":2076.04,"io_percent":13.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":21.32,"run_ms":87.02,"idle_ms":17.73,"stall_ms":1734.54,"io_percent":0.9,"method":"GET","action":"home#index"} | |
{"gc_ms":21.32,"run_ms":106.49,"idle_ms":31.47,"stall_ms":1372.44,"io_percent":1.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.41,"run_ms":41.12,"idle_ms":12.37,"stall_ms":516.28,"io_percent":1.6,"method":"GET","action":"home#index"} | |
{"gc_ms":24.17,"run_ms":27.65,"idle_ms":23.83,"stall_ms":487.68,"io_percent":3.9,"method":"GET","action":"users#show"} | |
{"gc_ms":10.63,"run_ms":61.11,"idle_ms":7.46,"stall_ms":482.86,"io_percent":1.3,"method":"GET","action":"home#newest"} | |
{"gc_ms":47.65,"run_ms":84.06,"idle_ms":33.82,"stall_ms":1547.5,"io_percent":1.8,"method":"GET","action":"home#index"} | |
{"gc_ms":34.23,"run_ms":88.98,"idle_ms":41.24,"stall_ms":594.27,"io_percent":3.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":25.06,"run_ms":82.13,"idle_ms":84.08,"stall_ms":1231.59,"io_percent":5.5,"method":"GET","action":"home#index"} | |
{"gc_ms":25.06,"run_ms":110.1,"idle_ms":62.07,"stall_ms":1223.84,"io_percent":3.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":36.34,"run_ms":195.25,"idle_ms":229.22,"stall_ms":1529.08,"io_percent":9.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":25.06,"run_ms":26.66,"idle_ms":42.28,"stall_ms":429.38,"io_percent":7.4,"method":"HEAD"} | |
{"gc_ms":5.11,"run_ms":36.25,"idle_ms":7.23,"stall_ms":499.86,"io_percent":1.2,"method":"GET","action":"home#index"} | |
{"gc_ms":5.28,"run_ms":43.7,"idle_ms":7.57,"stall_ms":327.86,"io_percent":1.5,"method":"HEAD"} | |
{"gc_ms":168.34,"run_ms":277.66,"idle_ms":228.22,"stall_ms":2252.27,"io_percent":6.9,"method":"GET","action":"home#index"} | |
{"gc_ms":172.74,"run_ms":487.97,"idle_ms":1005.76,"stall_ms":1874.83,"io_percent":22.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.32,"run_ms":13.98,"idle_ms":16.91,"stall_ms":58.8,"io_percent":14.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":21.55,"idle_ms":24.0,"stall_ms":612.58,"io_percent":3.3,"method":"GET"} | |
{"gc_ms":1.67,"run_ms":18.71,"idle_ms":26.31,"stall_ms":98.63,"io_percent":16.3,"method":"GET"} | |
{"gc_ms":2.16,"run_ms":65.34,"idle_ms":32.16,"stall_ms":386.77,"io_percent":5.7,"method":"GET","action":"home#index"} | |
{"gc_ms":20.04,"run_ms":95.99,"idle_ms":44.61,"stall_ms":1089.45,"io_percent":3.0,"method":"GET","action":"home#index"} | |
{"gc_ms":20.04,"run_ms":88.45,"idle_ms":55.43,"stall_ms":1391.99,"io_percent":3.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.26,"run_ms":38.46,"idle_ms":22.24,"stall_ms":192.06,"io_percent":7.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.31,"run_ms":15.08,"idle_ms":4.12,"stall_ms":2.1,"io_percent":13.5,"method":"GET"} | |
{"gc_ms":22.96,"run_ms":89.69,"idle_ms":106.66,"stall_ms":1693.07,"io_percent":5.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":22.96,"run_ms":25.81,"idle_ms":26.32,"stall_ms":699.47,"io_percent":3.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.59,"run_ms":32.81,"idle_ms":19.66,"stall_ms":98.02,"io_percent":12.7,"method":"HEAD","action":"home#index"} | |
{"gc_ms":2.0,"run_ms":48.97,"idle_ms":13.16,"stall_ms":198.45,"io_percent":4.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.75,"run_ms":29.0,"idle_ms":17.69,"stall_ms":79.64,"io_percent":11.2,"method":"HEAD","action":"home#index"} | |
{"gc_ms":2.59,"run_ms":29.09,"idle_ms":65.73,"stall_ms":294.58,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.91,"run_ms":33.69,"idle_ms":5.79,"stall_ms":728.38,"io_percent":0.7,"method":"GET","action":"home#index"} | |
{"gc_ms":29.59,"run_ms":294.99,"idle_ms":112.46,"stall_ms":2442.08,"io_percent":3.1,"method":"GET","action":"home#top"} | |
{"gc_ms":0.49,"run_ms":15.92,"idle_ms":89.9,"stall_ms":12.6,"io_percent":65.3,"method":"GET"} | |
{"gc_ms":26.98,"run_ms":36.45,"idle_ms":11.99,"stall_ms":1028.18,"io_percent":1.1,"method":"GET","action":"home#index"} | |
{"gc_ms":3.97,"run_ms":32.1,"idle_ms":115.67,"stall_ms":138.8,"io_percent":34.9,"method":"GET","action":"home#index"} | |
{"gc_ms":33.69,"run_ms":178.24,"idle_ms":124.16,"stall_ms":1104.39,"io_percent":7.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":9.28,"run_ms":82.96,"idle_ms":38.71,"stall_ms":605.84,"io_percent":4.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":35.73,"run_ms":203.96,"idle_ms":218.51,"stall_ms":1117.5,"io_percent":10.5,"method":"GET","action":"home#index"} | |
{"gc_ms":3.73,"run_ms":26.86,"idle_ms":4.41,"stall_ms":578.18,"io_percent":0.7,"method":"HEAD","action":"users#show"} | |
{"gc_ms":2.36,"run_ms":15.29,"idle_ms":109.15,"stall_ms":306.26,"io_percent":24.3,"method":"GET"} | |
{"gc_ms":6.54,"run_ms":47.1,"idle_ms":45.16,"stall_ms":732.31,"io_percent":5.0,"method":"GET","action":"home#index"} | |
{"gc_ms":175.55,"run_ms":259.88,"idle_ms":1422.42,"stall_ms":3248.98,"io_percent":26.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":31.61,"run_ms":23.98,"idle_ms":30.69,"stall_ms":664.63,"io_percent":4.0,"method":"GET"} | |
{"gc_ms":4.5,"run_ms":39.29,"idle_ms":16.23,"stall_ms":1087.92,"io_percent":1.3,"method":"GET","action":"home#index"} | |
{"gc_ms":6.54,"run_ms":27.01,"idle_ms":36.16,"stall_ms":860.08,"io_percent":3.7,"method":"GET","action":"home#index"} | |
{"gc_ms":3.54,"run_ms":130.98,"idle_ms":72.68,"stall_ms":1035.81,"io_percent":4.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.55,"run_ms":77.96,"idle_ms":55.78,"stall_ms":944.21,"io_percent":4.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.14,"run_ms":32.24,"idle_ms":42.26,"stall_ms":354.38,"io_percent":8.5,"method":"GET","action":"users#show"} | |
{"gc_ms":1.56,"run_ms":146.44,"idle_ms":44.85,"stall_ms":1955.73,"io_percent":1.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.13,"run_ms":14.17,"idle_ms":5.13,"stall_ms":163.6,"io_percent":2.6,"method":"GET"} | |
{"gc_ms":8.36,"run_ms":32.69,"idle_ms":12.2,"stall_ms":897.65,"io_percent":1.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.17,"run_ms":52.83,"idle_ms":25.07,"stall_ms":657.09,"io_percent":2.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":46.38,"run_ms":107.02,"idle_ms":73.9,"stall_ms":608.5,"io_percent":7.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":9.45,"run_ms":77.98,"idle_ms":32.78,"stall_ms":831.3,"io_percent":2.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.53,"run_ms":50.4,"idle_ms":41.69,"stall_ms":438.21,"io_percent":6.9,"method":"GET","action":"comments#index"} | |
{"gc_ms":1.56,"run_ms":180.37,"idle_ms":170.14,"stall_ms":1775.37,"io_percent":6.4,"method":"POST","action":"comments#upvote"} | |
{"gc_ms":0.59,"run_ms":36.28,"idle_ms":16.39,"stall_ms":68.45,"io_percent":8.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":43.2,"idle_ms":36.64,"stall_ms":754.0,"io_percent":3.9,"method":"GET"} | |
{"gc_ms":3.01,"run_ms":82.53,"idle_ms":26.76,"stall_ms":374.83,"io_percent":4.1,"method":"GET","action":"comments#index"} | |
{"gc_ms":32.95,"run_ms":17.09,"idle_ms":38.64,"stall_ms":641.83,"io_percent":5.2,"method":"GET"} | |
{"gc_ms":5.67,"run_ms":30.87,"idle_ms":33.57,"stall_ms":1150.6,"io_percent":2.7,"method":"GET","action":"home#index"} | |
{"gc_ms":36.59,"run_ms":245.42,"idle_ms":92.69,"stall_ms":472.5,"io_percent":7.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":37.2,"idle_ms":27.02,"stall_ms":111.19,"io_percent":10.8,"method":"HEAD"} | |
{"gc_ms":2.41,"run_ms":39.3,"idle_ms":11.14,"stall_ms":511.27,"io_percent":1.8,"method":"HEAD","action":"home#index"} | |
{"gc_ms":0.67,"run_ms":26.46,"idle_ms":6.22,"stall_ms":327.85,"io_percent":1.6,"method":"GET","action":"login#index"} | |
{"gc_ms":1.78,"run_ms":28.28,"idle_ms":16.92,"stall_ms":294.58,"io_percent":4.0,"method":"GET","action":"home#index"} | |
{"gc_ms":4.28,"run_ms":56.45,"idle_ms":214.38,"stall_ms":583.12,"io_percent":21.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.47,"run_ms":20.33,"idle_ms":25.16,"stall_ms":195.82,"io_percent":8.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.94,"run_ms":23.91,"idle_ms":38.01,"stall_ms":164.56,"io_percent":13.8,"method":"GET","action":"users#show"} | |
{"gc_ms":47.18,"run_ms":295.29,"idle_ms":1033.89,"stall_ms":1727.76,"io_percent":27.5,"method":"GET","action":"home#recent"} | |
{"gc_ms":0.92,"run_ms":15.98,"idle_ms":51.8,"stall_ms":230.12,"io_percent":17.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.56,"run_ms":298.11,"idle_ms":98.07,"stall_ms":1985.94,"io_percent":3.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.63,"run_ms":28.97,"idle_ms":33.1,"stall_ms":407.28,"io_percent":6.3,"method":"GET","action":"home#index"} | |
{"gc_ms":114.09,"run_ms":261.87,"idle_ms":268.67,"stall_ms":934.48,"io_percent":15.2,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":39.49,"run_ms":66.69,"idle_ms":53.47,"stall_ms":1012.12,"io_percent":4.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":22.94,"run_ms":67.62,"idle_ms":25.47,"stall_ms":1114.52,"io_percent":1.9,"method":"GET","action":"users#show"} | |
{"gc_ms":30.31,"run_ms":44.93,"idle_ms":46.94,"stall_ms":1037.9,"io_percent":4.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.51,"run_ms":24.83,"idle_ms":22.24,"stall_ms":0.01,"io_percent":27.5,"method":"GET","action":"home#index"} | |
{"gc_ms":38.66,"run_ms":102.68,"idle_ms":50.55,"stall_ms":767.5,"io_percent":4.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.67,"run_ms":69.61,"idle_ms":14.72,"stall_ms":359.09,"io_percent":2.9,"method":"GET","action":"home#index"} | |
{"gc_ms":21.09,"run_ms":51.97,"idle_ms":34.66,"stall_ms":407.91,"io_percent":5.9,"method":"GET","action":"users#show"} | |
{"gc_ms":196.45,"run_ms":368.11,"idle_ms":1117.63,"stall_ms":3847.69,"io_percent":18.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":24.97,"run_ms":124.51,"idle_ms":61.8,"stall_ms":1058.57,"io_percent":3.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":125.56,"run_ms":100.88,"idle_ms":73.26,"stall_ms":862.61,"io_percent":5.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":44.27,"idle_ms":10.41,"stall_ms":6.14,"io_percent":6.2,"method":"GET","action":"users#show"} | |
{"gc_ms":1.77,"run_ms":72.04,"idle_ms":12.66,"stall_ms":0.17,"io_percent":6.6,"method":"GET","action":"home#index"} | |
{"gc_ms":79.58,"run_ms":39.79,"idle_ms":44.28,"stall_ms":556.45,"io_percent":6.3,"method":"GET","action":"users#show"} | |
{"gc_ms":87.4,"run_ms":44.64,"idle_ms":83.62,"stall_ms":557.34,"io_percent":10.8,"method":"GET","action":"users#show"} | |
{"gc_ms":89.21,"run_ms":144.48,"idle_ms":23.44,"stall_ms":457.35,"io_percent":2.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.45,"run_ms":30.87,"idle_ms":30.8,"stall_ms":532.02,"io_percent":5.0,"method":"HEAD","action":"users#show"} | |
{"gc_ms":11.63,"run_ms":196.29,"idle_ms":265.28,"stall_ms":589.28,"io_percent":19.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.05,"run_ms":38.76,"idle_ms":25.41,"stall_ms":495.73,"io_percent":4.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.25,"run_ms":39.56,"idle_ms":27.5,"stall_ms":135.27,"io_percent":13.0,"method":"GET","action":"home#index"} | |
{"gc_ms":81.67,"run_ms":319.47,"idle_ms":78.5,"stall_ms":153.98,"io_percent":8.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.55,"run_ms":45.03,"idle_ms":15.96,"stall_ms":0.01,"io_percent":19.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":9.07,"run_ms":32.53,"idle_ms":76.59,"stall_ms":695.67,"io_percent":8.8,"method":"GET","action":"users#show"} | |
{"gc_ms":9.97,"run_ms":108.86,"idle_ms":42.11,"stall_ms":643.83,"io_percent":4.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.35,"run_ms":108.56,"idle_ms":26.17,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":34.6,"run_ms":368.08,"idle_ms":553.1,"stall_ms":1414.49,"io_percent":18.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":122.86,"idle_ms":148.77,"stall_ms":0.02,"io_percent":59.1,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":1.18,"run_ms":57.2,"idle_ms":3.44,"stall_ms":0.01,"io_percent":5.5,"method":"GET","action":"home#index"} | |
{"gc_ms":30.67,"run_ms":151.9,"idle_ms":446.05,"stall_ms":1003.03,"io_percent":25.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":49.34,"idle_ms":3.31,"stall_ms":0.15,"io_percent":6.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":39.79,"idle_ms":3.22,"stall_ms":0.01,"io_percent":7.8,"method":"GET","action":"home#index"} | |
{"gc_ms":16.63,"run_ms":223.05,"idle_ms":21.92,"stall_ms":0.02,"io_percent":8.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":28.95,"idle_ms":5.45,"stall_ms":0.0,"io_percent":15.7,"method":"GET"} | |
{"gc_ms":20.09,"run_ms":103.0,"idle_ms":13.95,"stall_ms":0.02,"io_percent":11.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.53,"run_ms":27.74,"idle_ms":2.35,"stall_ms":0.0,"io_percent":7.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.91,"run_ms":21.13,"idle_ms":3.05,"stall_ms":0.01,"io_percent":14.4,"method":"GET","action":"home#index"} | |
{"gc_ms":66.64,"run_ms":115.41,"idle_ms":3.35,"stall_ms":0.2,"io_percent":2.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":102.99,"idle_ms":16.77,"stall_ms":0.03,"io_percent":13.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.63,"run_ms":8.28,"idle_ms":0.03,"stall_ms":0.02,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":7.25,"run_ms":26.63,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":30.14,"idle_ms":2.02,"stall_ms":0.01,"io_percent":5.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.23,"run_ms":158.66,"idle_ms":27.58,"stall_ms":0.13,"io_percent":15.2,"method":"GET","action":"home#category"} | |
{"gc_ms":44.33,"run_ms":71.37,"idle_ms":2.89,"stall_ms":146.95,"io_percent":1.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.62,"idle_ms":2.36,"stall_ms":0.01,"io_percent":14.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.28,"idle_ms":2.22,"stall_ms":0.01,"io_percent":12.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.26,"run_ms":15.79,"idle_ms":1.58,"stall_ms":0.0,"io_percent":9.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.28,"run_ms":21.42,"idle_ms":2.3,"stall_ms":0.01,"io_percent":10.3,"method":"GET","action":"home#index"} | |
{"gc_ms":14.82,"run_ms":61.61,"idle_ms":346.04,"stall_ms":0.02,"io_percent":84.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.64,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.31,"run_ms":43.31,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.1,"method":"HEAD"} | |
{"gc_ms":1.47,"run_ms":25.86,"idle_ms":10.79,"stall_ms":0.01,"io_percent":29.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":17.72,"idle_ms":2.12,"stall_ms":0.02,"io_percent":10.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":26.96,"idle_ms":1.99,"stall_ms":0.0,"io_percent":6.9,"method":"HEAD","action":"users#show"} | |
{"gc_ms":13.79,"run_ms":32.6,"idle_ms":2.28,"stall_ms":0.01,"io_percent":6.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":79.67,"idle_ms":3.29,"stall_ms":0.05,"io_percent":3.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":101.26,"idle_ms":12.3,"stall_ms":0.02,"io_percent":10.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":25.99,"idle_ms":0.04,"stall_ms":0.4,"io_percent":0.1,"method":"HEAD"} | |
{"gc_ms":15.34,"run_ms":73.16,"idle_ms":11.77,"stall_ms":0.05,"io_percent":13.3,"method":"HEAD","action":"users#show"} | |
{"gc_ms":2.63,"run_ms":45.72,"idle_ms":9.85,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.58,"run_ms":19.82,"idle_ms":2.65,"stall_ms":0.0,"io_percent":11.8,"method":"HEAD","action":"users#show"} | |
{"gc_ms":20.32,"run_ms":72.12,"idle_ms":12.34,"stall_ms":0.01,"io_percent":14.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":71.22,"run_ms":382.09,"idle_ms":121.8,"stall_ms":0.03,"io_percent":25.2,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":12.13,"run_ms":187.47,"idle_ms":416.42,"stall_ms":0.02,"io_percent":68.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.56,"idle_ms":2.37,"stall_ms":0.04,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.17,"idle_ms":2.4,"stall_ms":0.01,"io_percent":11.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.9,"run_ms":33.54,"idle_ms":9.55,"stall_ms":0.01,"io_percent":21.8,"method":"GET"} | |
{"gc_ms":6.27,"run_ms":79.73,"idle_ms":18.29,"stall_ms":0.02,"io_percent":18.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.81,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":2.87,"run_ms":76.02,"idle_ms":11.29,"stall_ms":0.11,"io_percent":12.8,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":23.66,"run_ms":65.06,"idle_ms":1.88,"stall_ms":0.0,"io_percent":2.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":17.34,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"HEAD"} | |
{"gc_ms":4.9,"run_ms":152.99,"idle_ms":167.59,"stall_ms":0.02,"io_percent":56.4,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":1.68,"run_ms":74.72,"idle_ms":14.34,"stall_ms":0.01,"io_percent":14.2,"method":"GET","action":"users#show"} | |
{"gc_ms":5.94,"run_ms":141.47,"idle_ms":29.52,"stall_ms":138.02,"io_percent":10.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.34,"run_ms":19.38,"idle_ms":3.25,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.57,"run_ms":18.28,"idle_ms":3.26,"stall_ms":103.11,"io_percent":2.9,"method":"GET"} | |
{"gc_ms":28.46,"run_ms":70.1,"idle_ms":7.89,"stall_ms":0.01,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":40.76,"idle_ms":5.05,"stall_ms":89.5,"io_percent":4.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.63,"run_ms":28.59,"idle_ms":1.64,"stall_ms":0.0,"io_percent":3.3,"method":"GET","action":"users#show"} | |
{"gc_ms":5.8,"run_ms":55.09,"idle_ms":3.85,"stall_ms":0.01,"io_percent":6.8,"method":"GET","action":"home#index"} | |
{"gc_ms":5.66,"run_ms":59.9,"idle_ms":317.21,"stall_ms":0.01,"io_percent":84.2,"method":"GET","action":"home#index"} | |
{"gc_ms":4.15,"run_ms":190.6,"idle_ms":89.9,"stall_ms":0.03,"io_percent":34.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.75,"run_ms":12.83,"idle_ms":1.92,"stall_ms":0.0,"io_percent":13.0,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.52,"run_ms":53.56,"idle_ms":11.59,"stall_ms":0.01,"io_percent":17.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.57,"run_ms":17.04,"idle_ms":2.62,"stall_ms":1.47,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.46,"run_ms":93.61,"idle_ms":37.1,"stall_ms":0.03,"io_percent":30.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.32,"run_ms":45.26,"idle_ms":5.35,"stall_ms":0.01,"io_percent":10.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.41,"run_ms":61.06,"idle_ms":12.57,"stall_ms":0.01,"io_percent":12.9,"method":"GET","action":"home#top"} | |
{"gc_ms":6.0,"run_ms":142.66,"idle_ms":45.28,"stall_ms":0.04,"io_percent":23.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.38,"run_ms":36.54,"idle_ms":12.09,"stall_ms":90.06,"io_percent":8.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":95.16,"idle_ms":14.06,"stall_ms":0.02,"io_percent":12.9,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.56,"run_ms":31.6,"idle_ms":11.36,"stall_ms":0.01,"io_percent":26.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.29,"run_ms":24.67,"idle_ms":2.96,"stall_ms":0.01,"io_percent":11.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.57,"run_ms":27.95,"idle_ms":14.92,"stall_ms":0.01,"io_percent":35.3,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":51.05,"idle_ms":12.24,"stall_ms":0.01,"io_percent":19.2,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":32.44,"idle_ms":2.91,"stall_ms":0.01,"io_percent":8.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.92,"run_ms":24.14,"idle_ms":3.05,"stall_ms":0.01,"io_percent":12.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.06,"run_ms":153.39,"idle_ms":67.38,"stall_ms":0.02,"io_percent":32.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":42.49,"idle_ms":12.82,"stall_ms":1.75,"io_percent":22.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":110.55,"idle_ms":18.88,"stall_ms":0.02,"io_percent":14.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.8,"run_ms":137.11,"idle_ms":282.02,"stall_ms":0.04,"io_percent":67.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":90.41,"idle_ms":10.71,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":19.46,"run_ms":44.69,"idle_ms":3.14,"stall_ms":0.77,"io_percent":5.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":70.72,"idle_ms":4.48,"stall_ms":0.01,"io_percent":6.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.41,"run_ms":108.08,"idle_ms":242.71,"stall_ms":0.05,"io_percent":69.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":49.19,"idle_ms":22.15,"stall_ms":0.1,"io_percent":41.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.5,"run_ms":14.03,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":31.38,"idle_ms":3.09,"stall_ms":0.01,"io_percent":8.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":103.85,"idle_ms":28.45,"stall_ms":130.7,"io_percent":11.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":71.13,"idle_ms":12.27,"stall_ms":0.02,"io_percent":14.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.54,"run_ms":15.33,"idle_ms":2.38,"stall_ms":0.0,"io_percent":13.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":30.31,"idle_ms":3.59,"stall_ms":0.01,"io_percent":11.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":35.45,"idle_ms":2.92,"stall_ms":0.01,"io_percent":7.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.07,"run_ms":44.64,"idle_ms":14.26,"stall_ms":0.01,"io_percent":24.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":26.96,"run_ms":232.89,"idle_ms":218.92,"stall_ms":0.03,"io_percent":47.6,"method":"GET","action":"home#index"} | |
{"gc_ms":6.19,"run_ms":188.78,"idle_ms":95.24,"stall_ms":0.24,"io_percent":33.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.17,"run_ms":227.37,"idle_ms":93.34,"stall_ms":0.06,"io_percent":31.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.8,"run_ms":55.46,"idle_ms":22.77,"stall_ms":0.02,"io_percent":28.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.77,"run_ms":263.92,"idle_ms":163.95,"stall_ms":0.4,"io_percent":40.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":75.69,"idle_ms":5.26,"stall_ms":8.89,"io_percent":5.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":80.59,"idle_ms":15.42,"stall_ms":0.02,"io_percent":15.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":31.91,"idle_ms":3.48,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":37.36,"idle_ms":8.42,"stall_ms":1.06,"io_percent":14.6,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":44.54,"idle_ms":21.02,"stall_ms":0.02,"io_percent":27.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":43.02,"idle_ms":16.43,"stall_ms":0.02,"io_percent":20.5,"method":"GET","action":"home#index"} | |
{"gc_ms":21.25,"run_ms":67.54,"idle_ms":3.63,"stall_ms":0.01,"io_percent":5.3,"method":"GET","action":"home#newest"} | |
{"gc_ms":1.96,"run_ms":82.79,"idle_ms":21.24,"stall_ms":133.69,"io_percent":9.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.42,"run_ms":55.68,"idle_ms":0.05,"stall_ms":145.36,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":5.68,"run_ms":52.5,"idle_ms":16.73,"stall_ms":0.02,"io_percent":24.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.73,"run_ms":35.53,"idle_ms":20.34,"stall_ms":0.02,"io_percent":26.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":59.49,"idle_ms":31.65,"stall_ms":133.25,"io_percent":12.5,"method":"GET","action":"home#index"} | |
{"gc_ms":11.01,"run_ms":214.9,"idle_ms":26.64,"stall_ms":0.03,"io_percent":10.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.26,"run_ms":43.39,"idle_ms":1.37,"stall_ms":0.01,"io_percent":3.0,"method":"GET"} | |
{"gc_ms":0.99,"run_ms":35.79,"idle_ms":2.95,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":54.67,"idle_ms":4.24,"stall_ms":0.01,"io_percent":7.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.72,"idle_ms":0.9,"stall_ms":0.01,"io_percent":4.2,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":97.0,"idle_ms":11.1,"stall_ms":0.02,"io_percent":9.8,"method":"GET","action":"users#show"} | |
{"gc_ms":4.63,"run_ms":74.13,"idle_ms":18.14,"stall_ms":0.02,"io_percent":19.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.2,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":2.1,"run_ms":82.65,"idle_ms":21.54,"stall_ms":0.02,"io_percent":20.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":28.48,"idle_ms":2.29,"stall_ms":0.0,"io_percent":7.2,"method":"GET","action":"users#show"} | |
{"gc_ms":1.52,"run_ms":50.68,"idle_ms":4.14,"stall_ms":0.01,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.88,"run_ms":92.81,"idle_ms":18.79,"stall_ms":0.02,"io_percent":16.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.39,"run_ms":26.46,"idle_ms":2.97,"stall_ms":0.42,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.15,"run_ms":126.25,"idle_ms":20.18,"stall_ms":0.02,"io_percent":13.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":91.95,"idle_ms":11.07,"stall_ms":0.09,"io_percent":10.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.32,"run_ms":9.03,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.21,"idle_ms":2.24,"stall_ms":0.0,"io_percent":12.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":163.37,"idle_ms":120.12,"stall_ms":0.03,"io_percent":46.5,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.57,"run_ms":72.9,"idle_ms":11.82,"stall_ms":0.01,"io_percent":13.9,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":33.99,"idle_ms":2.77,"stall_ms":0.14,"io_percent":8.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.66,"idle_ms":3.21,"stall_ms":118.72,"io_percent":2.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.58,"run_ms":40.95,"idle_ms":23.39,"stall_ms":0.02,"io_percent":36.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":49.86,"idle_ms":3.96,"stall_ms":0.01,"io_percent":7.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.02,"run_ms":20.5,"idle_ms":2.59,"stall_ms":0.01,"io_percent":11.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":67.76,"idle_ms":4.09,"stall_ms":0.01,"io_percent":5.9,"method":"GET","action":"home#index"} | |
{"gc_ms":14.02,"run_ms":87.23,"idle_ms":11.18,"stall_ms":0.02,"io_percent":11.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.64,"run_ms":35.68,"idle_ms":3.26,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.19,"run_ms":22.76,"idle_ms":2.37,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.73,"run_ms":128.49,"idle_ms":99.61,"stall_ms":0.03,"io_percent":50.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.94,"run_ms":15.53,"idle_ms":2.31,"stall_ms":0.01,"io_percent":14.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":21.74,"idle_ms":2.38,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":16.74,"run_ms":337.29,"idle_ms":599.93,"stall_ms":0.06,"io_percent":63.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.27,"run_ms":7.34,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":52.0,"idle_ms":11.39,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":37.52,"idle_ms":3.55,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":33.75,"idle_ms":2.18,"stall_ms":0.01,"io_percent":5.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":12.07,"idle_ms":2.36,"stall_ms":0.0,"io_percent":16.4,"method":"GET","action":"users#show"} | |
{"gc_ms":2.01,"run_ms":134.68,"idle_ms":38.28,"stall_ms":0.02,"io_percent":24.6,"method":"HEAD","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":30.07,"idle_ms":3.2,"stall_ms":0.06,"io_percent":10.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.74,"run_ms":24.0,"idle_ms":2.7,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.46,"idle_ms":3.26,"stall_ms":0.02,"io_percent":13.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":35.5,"idle_ms":3.12,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":42.31,"idle_ms":4.5,"stall_ms":0.01,"io_percent":10.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":16.98,"idle_ms":2.82,"stall_ms":0.13,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.28,"run_ms":39.64,"idle_ms":3.48,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.32,"run_ms":11.99,"idle_ms":0.07,"stall_ms":78.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.77,"idle_ms":2.32,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.14,"idle_ms":1.81,"stall_ms":0.0,"io_percent":13.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":13.86,"idle_ms":2.13,"stall_ms":0.01,"io_percent":15.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.24,"run_ms":7.99,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.29,"run_ms":29.86,"idle_ms":2.34,"stall_ms":0.0,"io_percent":7.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.37,"run_ms":30.47,"idle_ms":2.99,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.37,"idle_ms":2.83,"stall_ms":0.01,"io_percent":12.3,"method":"GET","action":"home#index"} | |
{"gc_ms":6.21,"run_ms":160.75,"idle_ms":280.81,"stall_ms":106.37,"io_percent":51.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":47.37,"idle_ms":10.25,"stall_ms":0.01,"io_percent":17.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.09,"run_ms":40.99,"idle_ms":3.19,"stall_ms":0.01,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":106.29,"idle_ms":29.93,"stall_ms":0.02,"io_percent":25.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":5.88,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":97.55,"idle_ms":33.09,"stall_ms":0.02,"io_percent":25.2,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":5.77,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":12.16,"run_ms":34.56,"idle_ms":7.31,"stall_ms":0.12,"io_percent":17.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":9.22,"idle_ms":1.83,"stall_ms":0.0,"io_percent":16.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":48.08,"idle_ms":15.94,"stall_ms":0.01,"io_percent":24.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.65,"idle_ms":0.6,"stall_ms":0.0,"io_percent":7.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":7.82,"idle_ms":0.84,"stall_ms":0.0,"io_percent":9.7,"method":"GET"} | |
{"gc_ms":1.21,"run_ms":13.83,"idle_ms":2.85,"stall_ms":0.0,"io_percent":15.3,"method":"GET","action":"inbox#index"} | |
{"gc_ms":0.94,"run_ms":9.58,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":7.92,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":12.56,"run_ms":52.6,"idle_ms":17.09,"stall_ms":0.01,"io_percent":24.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.27,"run_ms":47.52,"idle_ms":3.96,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.54,"run_ms":12.06,"idle_ms":1.92,"stall_ms":0.0,"io_percent":13.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.82,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":14.72,"idle_ms":2.32,"stall_ms":0.0,"io_percent":13.7,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":80.84,"idle_ms":410.5,"stall_ms":0.02,"io_percent":83.2,"method":"GET","action":"replies#all"} | |
{"gc_ms":0.0,"run_ms":22.39,"idle_ms":4.45,"stall_ms":0.0,"io_percent":9.1,"method":"GET","action":"users#show"} | |
{"gc_ms":3.6,"run_ms":41.52,"idle_ms":6.59,"stall_ms":0.02,"io_percent":13.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.48,"run_ms":24.93,"idle_ms":2.44,"stall_ms":0.01,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.09,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":70.34,"idle_ms":18.32,"stall_ms":0.02,"io_percent":20.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.22,"run_ms":11.1,"idle_ms":2.09,"stall_ms":0.0,"io_percent":15.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":15.12,"idle_ms":2.33,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.85,"run_ms":7.26,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":1.36,"run_ms":31.31,"idle_ms":2.82,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.41,"run_ms":12.95,"idle_ms":2.28,"stall_ms":0.0,"io_percent":15.0,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":40.11,"idle_ms":15.42,"stall_ms":0.01,"io_percent":27.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.63,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":33.78,"idle_ms":2.83,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":6.07,"run_ms":117.62,"idle_ms":35.8,"stall_ms":0.02,"io_percent":25.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.29,"run_ms":10.55,"idle_ms":2.28,"stall_ms":0.0,"io_percent":17.9,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":25.23,"idle_ms":2.64,"stall_ms":0.01,"io_percent":10.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.99,"idle_ms":2.71,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#recent"} | |
{"gc_ms":0.29,"run_ms":16.52,"idle_ms":2.51,"stall_ms":0.01,"io_percent":14.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.51,"run_ms":15.59,"idle_ms":2.45,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.09,"run_ms":45.3,"idle_ms":17.26,"stall_ms":0.41,"io_percent":27.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.58,"run_ms":13.39,"idle_ms":2.59,"stall_ms":0.0,"io_percent":16.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.23,"run_ms":18.3,"idle_ms":3.54,"stall_ms":0.01,"io_percent":14.2,"method":"GET","action":"home#index"} | |
{"gc_ms":89.83,"run_ms":203.03,"idle_ms":77.17,"stall_ms":0.02,"io_percent":29.1,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.21,"run_ms":17.2,"idle_ms":3.7,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":2.23,"run_ms":104.39,"idle_ms":45.86,"stall_ms":0.02,"io_percent":33.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":6.5,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.26,"idle_ms":0.05,"stall_ms":77.62,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.33,"idle_ms":2.08,"stall_ms":0.0,"io_percent":15.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":26.78,"idle_ms":1.46,"stall_ms":0.0,"io_percent":5.2,"method":"GET","action":"users#show"} | |
{"gc_ms":15.89,"run_ms":112.3,"idle_ms":32.59,"stall_ms":0.18,"io_percent":23.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":35.63,"idle_ms":3.15,"stall_ms":0.24,"io_percent":8.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":32.4,"idle_ms":3.3,"stall_ms":0.01,"io_percent":8.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.54,"run_ms":9.47,"idle_ms":2.16,"stall_ms":0.11,"io_percent":18.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":13.94,"idle_ms":2.35,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":3.23,"run_ms":37.71,"idle_ms":11.24,"stall_ms":0.01,"io_percent":22.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.61,"run_ms":84.9,"idle_ms":8.37,"stall_ms":0.01,"io_percent":8.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.0,"run_ms":32.55,"idle_ms":2.1,"stall_ms":0.0,"io_percent":6.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":38.83,"idle_ms":10.61,"stall_ms":0.01,"io_percent":21.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":21.53,"run_ms":160.25,"idle_ms":59.62,"stall_ms":0.02,"io_percent":29.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.79,"run_ms":12.72,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.76,"run_ms":25.01,"idle_ms":2.13,"stall_ms":0.0,"io_percent":7.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":35.8,"idle_ms":4.88,"stall_ms":0.15,"io_percent":12.7,"method":"GET","action":"home#index"} | |
{"gc_ms":21.59,"run_ms":30.6,"idle_ms":0.04,"stall_ms":0.07,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.72,"run_ms":19.66,"idle_ms":22.49,"stall_ms":0.02,"io_percent":53.9,"method":"GET","action":"users#show"} | |
{"gc_ms":2.94,"run_ms":19.77,"idle_ms":2.3,"stall_ms":0.0,"io_percent":8.6,"method":"GET","action":"users#show"} | |
{"gc_ms":12.75,"run_ms":32.18,"idle_ms":2.33,"stall_ms":0.01,"io_percent":7.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.42,"idle_ms":2.17,"stall_ms":95.18,"io_percent":2.0,"method":"GET","action":"users#show"} | |
{"gc_ms":15.98,"run_ms":38.97,"idle_ms":3.05,"stall_ms":0.01,"io_percent":7.7,"method":"GET","action":"home#index"} | |
{"gc_ms":3.48,"run_ms":134.52,"idle_ms":43.73,"stall_ms":0.03,"io_percent":25.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.03,"run_ms":8.67,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":3.56,"run_ms":31.4,"idle_ms":4.38,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.51,"run_ms":15.45,"idle_ms":2.3,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":8.9,"run_ms":130.92,"idle_ms":365.64,"stall_ms":0.04,"io_percent":73.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.58,"run_ms":10.98,"idle_ms":2.33,"stall_ms":0.0,"io_percent":17.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.53,"run_ms":15.81,"idle_ms":2.31,"stall_ms":0.01,"io_percent":14.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.91,"run_ms":16.18,"idle_ms":2.31,"stall_ms":0.01,"io_percent":13.9,"method":"GET","action":"home#index"} | |
{"gc_ms":3.06,"run_ms":132.08,"idle_ms":35.43,"stall_ms":0.03,"io_percent":24.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.28,"run_ms":28.16,"idle_ms":3.77,"stall_ms":2.63,"io_percent":11.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.42,"run_ms":7.74,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":5.91,"run_ms":72.18,"idle_ms":24.38,"stall_ms":0.01,"io_percent":24.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.56,"idle_ms":2.45,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.26,"run_ms":13.83,"idle_ms":2.9,"stall_ms":1.55,"io_percent":12.3,"method":"GET","action":"users#show"} | |
{"gc_ms":17.61,"run_ms":132.23,"idle_ms":72.96,"stall_ms":0.03,"io_percent":36.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.05,"run_ms":137.84,"idle_ms":127.52,"stall_ms":0.02,"io_percent":49.5,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.99,"run_ms":33.48,"idle_ms":16.93,"stall_ms":103.87,"io_percent":11.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.41,"run_ms":45.07,"idle_ms":19.66,"stall_ms":0.02,"io_percent":30.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":30.08,"idle_ms":3.5,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":8.08,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.4,"run_ms":7.97,"idle_ms":1.11,"stall_ms":0.0,"io_percent":11.7,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.91,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":34.24,"idle_ms":3.12,"stall_ms":79.44,"io_percent":2.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":12.43,"idle_ms":2.2,"stall_ms":0.0,"io_percent":14.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.41,"run_ms":12.23,"idle_ms":1.95,"stall_ms":0.0,"io_percent":13.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.48,"idle_ms":0.08,"stall_ms":110.32,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.73,"run_ms":10.58,"idle_ms":2.15,"stall_ms":69.88,"io_percent":2.7,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":33.25,"idle_ms":3.06,"stall_ms":0.01,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":42.84,"idle_ms":3.67,"stall_ms":0.07,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":8.4,"run_ms":37.86,"idle_ms":4.0,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.53,"run_ms":17.33,"idle_ms":1.7,"stall_ms":0.0,"io_percent":8.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.87,"run_ms":7.18,"idle_ms":1.11,"stall_ms":0.0,"io_percent":13.2,"method":"GET"} | |
{"gc_ms":0.7,"run_ms":36.27,"idle_ms":7.01,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.92,"run_ms":40.9,"idle_ms":3.31,"stall_ms":0.08,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.53,"run_ms":30.91,"idle_ms":3.0,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.71,"run_ms":19.04,"idle_ms":2.8,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.3,"idle_ms":3.02,"stall_ms":0.01,"io_percent":15.5,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":47.29,"idle_ms":3.56,"stall_ms":0.01,"io_percent":7.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.02,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.54,"run_ms":8.77,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":69.94,"idle_ms":2.79,"stall_ms":0.39,"io_percent":3.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.4,"run_ms":10.59,"idle_ms":2.22,"stall_ms":0.0,"io_percent":17.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.46,"run_ms":10.87,"idle_ms":1.76,"stall_ms":0.0,"io_percent":12.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.45,"run_ms":31.28,"idle_ms":3.07,"stall_ms":0.01,"io_percent":9.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.67,"idle_ms":2.33,"stall_ms":0.01,"io_percent":11.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.38,"run_ms":21.6,"idle_ms":3.06,"stall_ms":120.57,"io_percent":2.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.73,"idle_ms":0.74,"stall_ms":0.0,"io_percent":5.4,"method":"GET"} | |
{"gc_ms":1.12,"run_ms":26.14,"idle_ms":8.57,"stall_ms":0.01,"io_percent":25.1,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":20.95,"run_ms":124.26,"idle_ms":161.36,"stall_ms":0.02,"io_percent":55.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.63,"run_ms":40.62,"idle_ms":15.68,"stall_ms":0.01,"io_percent":28.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.07,"run_ms":44.01,"idle_ms":16.79,"stall_ms":0.01,"io_percent":27.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.44,"idle_ms":0.05,"stall_ms":148.26,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.77,"run_ms":14.71,"idle_ms":1.96,"stall_ms":0.0,"io_percent":11.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.11,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":31.76,"idle_ms":5.11,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":8.04,"idle_ms":0.72,"stall_ms":0.0,"io_percent":7.5,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":10.33,"idle_ms":1.91,"stall_ms":0.0,"io_percent":14.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.55,"run_ms":22.46,"idle_ms":3.65,"stall_ms":113.26,"io_percent":2.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.37,"idle_ms":2.98,"stall_ms":0.04,"io_percent":12.5,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":57.15,"idle_ms":18.55,"stall_ms":0.02,"io_percent":24.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.44,"run_ms":16.65,"idle_ms":2.48,"stall_ms":0.01,"io_percent":14.3,"method":"GET","action":"home#index"} | |
{"gc_ms":8.92,"run_ms":25.59,"idle_ms":2.4,"stall_ms":0.01,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.95,"idle_ms":1.08,"stall_ms":0.0,"io_percent":8.7,"method":"GET"} | |
{"gc_ms":15.14,"run_ms":81.53,"idle_ms":170.69,"stall_ms":0.02,"io_percent":66.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.43,"idle_ms":1.93,"stall_ms":0.0,"io_percent":12.5,"method":"GET","action":"users#show"} | |
{"gc_ms":3.12,"run_ms":36.54,"idle_ms":4.62,"stall_ms":0.01,"io_percent":11.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.63,"run_ms":39.81,"idle_ms":7.76,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.63,"idle_ms":0.65,"stall_ms":0.0,"io_percent":4.0,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":21.03,"idle_ms":2.99,"stall_ms":0.01,"io_percent":13.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.57,"run_ms":33.46,"idle_ms":3.18,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":28.37,"idle_ms":8.38,"stall_ms":0.01,"io_percent":22.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.19,"run_ms":45.54,"idle_ms":3.49,"stall_ms":0.01,"io_percent":7.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.64,"run_ms":12.4,"idle_ms":2.07,"stall_ms":0.0,"io_percent":11.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":47.9,"idle_ms":6.88,"stall_ms":0.01,"io_percent":12.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.37,"run_ms":23.64,"idle_ms":3.13,"stall_ms":0.01,"io_percent":12.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":68.68,"idle_ms":44.06,"stall_ms":0.01,"io_percent":38.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":30.01,"idle_ms":2.92,"stall_ms":0.01,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.34,"idle_ms":2.26,"stall_ms":0.01,"io_percent":14.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.01,"run_ms":22.38,"idle_ms":2.72,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":5.85,"run_ms":109.51,"idle_ms":37.71,"stall_ms":0.03,"io_percent":27.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.71,"run_ms":46.09,"idle_ms":10.69,"stall_ms":0.01,"io_percent":17.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.13,"run_ms":50.58,"idle_ms":10.3,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":10.78,"idle_ms":3.25,"stall_ms":0.0,"io_percent":20.4,"method":"GET"} | |
{"gc_ms":1.34,"run_ms":30.0,"idle_ms":9.13,"stall_ms":0.01,"io_percent":22.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":8.7,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":20.58,"idle_ms":2.66,"stall_ms":0.01,"io_percent":11.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.6,"idle_ms":223.72,"stall_ms":0.0,"io_percent":94.0,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":13.18,"idle_ms":4.31,"stall_ms":0.0,"io_percent":14.6,"method":"GET","action":"users#show"} | |
{"gc_ms":15.2,"run_ms":63.78,"idle_ms":6.68,"stall_ms":88.46,"io_percent":4.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.41,"run_ms":14.02,"idle_ms":3.76,"stall_ms":0.0,"io_percent":18.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.21,"run_ms":15.02,"idle_ms":2.36,"stall_ms":0.01,"io_percent":14.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.34,"run_ms":23.09,"idle_ms":3.22,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":12.62,"run_ms":49.4,"idle_ms":3.3,"stall_ms":0.09,"io_percent":6.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.44,"run_ms":70.05,"idle_ms":216.86,"stall_ms":0.05,"io_percent":75.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.78,"run_ms":21.59,"idle_ms":2.91,"stall_ms":0.01,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.66,"idle_ms":7.84,"stall_ms":0.01,"io_percent":29.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":14.77,"idle_ms":2.37,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.23,"run_ms":58.72,"idle_ms":132.82,"stall_ms":0.02,"io_percent":69.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.48,"run_ms":17.87,"idle_ms":2.36,"stall_ms":70.22,"io_percent":2.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.67,"idle_ms":2.98,"stall_ms":0.01,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.93,"idle_ms":10.17,"stall_ms":0.01,"io_percent":33.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.31,"idle_ms":2.4,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.17,"idle_ms":2.47,"stall_ms":0.01,"io_percent":14.4,"method":"GET","action":"home#index"} | |
{"gc_ms":10.96,"run_ms":29.38,"idle_ms":2.57,"stall_ms":0.01,"io_percent":8.1,"method":"GET","action":"home#index"} | |
{"gc_ms":3.76,"run_ms":117.77,"idle_ms":151.59,"stall_ms":0.07,"io_percent":57.2,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.44,"run_ms":15.61,"idle_ms":2.47,"stall_ms":0.01,"io_percent":14.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.58,"run_ms":49.91,"idle_ms":16.64,"stall_ms":0.01,"io_percent":25.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.78,"run_ms":83.28,"idle_ms":9.8,"stall_ms":0.02,"io_percent":10.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":77.22,"idle_ms":120.46,"stall_ms":0.03,"io_percent":61.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.59,"run_ms":33.37,"idle_ms":3.05,"stall_ms":0.01,"io_percent":8.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.54,"run_ms":21.98,"idle_ms":9.63,"stall_ms":0.01,"io_percent":29.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":119.92,"idle_ms":77.39,"stall_ms":0.03,"io_percent":43.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":21.63,"run_ms":135.24,"idle_ms":13.46,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.48,"run_ms":118.45,"idle_ms":67.37,"stall_ms":0.02,"io_percent":39.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":6.12,"run_ms":112.92,"idle_ms":70.59,"stall_ms":72.98,"io_percent":30.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.45,"run_ms":52.41,"idle_ms":20.86,"stall_ms":0.02,"io_percent":32.7,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":29.15,"idle_ms":2.71,"stall_ms":0.01,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.62,"run_ms":6.11,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.0,"run_ms":9.83,"idle_ms":1.92,"stall_ms":0.0,"io_percent":16.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.72,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":7.86,"idle_ms":1.86,"stall_ms":0.0,"io_percent":16.2,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.3,"run_ms":16.14,"idle_ms":2.25,"stall_ms":0.01,"io_percent":12.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.89,"run_ms":32.69,"idle_ms":14.48,"stall_ms":0.01,"io_percent":25.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.03,"run_ms":27.95,"idle_ms":7.85,"stall_ms":0.01,"io_percent":17.0,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":116.03,"idle_ms":33.54,"stall_ms":0.02,"io_percent":26.3,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":46.21,"idle_ms":9.46,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":22.23,"idle_ms":3.24,"stall_ms":0.01,"io_percent":13.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.7,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.89,"idle_ms":2.48,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.71,"idle_ms":16.75,"stall_ms":0.01,"io_percent":41.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.99,"run_ms":71.26,"idle_ms":13.52,"stall_ms":0.17,"io_percent":15.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":15.04,"run_ms":51.09,"idle_ms":3.75,"stall_ms":0.01,"io_percent":7.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.78,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.52,"run_ms":16.36,"idle_ms":2.36,"stall_ms":0.01,"io_percent":14.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":36.05,"idle_ms":9.97,"stall_ms":0.01,"io_percent":22.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":21.36,"idle_ms":1.93,"stall_ms":0.0,"io_percent":5.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.58,"run_ms":17.75,"idle_ms":2.57,"stall_ms":0.05,"io_percent":14.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.47,"run_ms":20.56,"idle_ms":2.4,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.77,"run_ms":40.23,"idle_ms":16.42,"stall_ms":0.01,"io_percent":28.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.93,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.91,"run_ms":34.5,"idle_ms":11.02,"stall_ms":0.34,"io_percent":23.1,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.0,"run_ms":62.49,"idle_ms":9.12,"stall_ms":0.03,"io_percent":12.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.35,"run_ms":19.85,"idle_ms":3.07,"stall_ms":0.07,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.75,"idle_ms":1.72,"stall_ms":0.0,"io_percent":12.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":40.78,"idle_ms":9.59,"stall_ms":0.02,"io_percent":18.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.69,"run_ms":25.8,"idle_ms":8.38,"stall_ms":0.01,"io_percent":24.7,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":8.48,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":2.0,"run_ms":136.02,"idle_ms":42.93,"stall_ms":0.03,"io_percent":26.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.27,"run_ms":10.9,"idle_ms":2.88,"stall_ms":0.0,"io_percent":21.2,"method":"GET","action":"users#show"} | |
{"gc_ms":5.01,"run_ms":63.39,"idle_ms":672.73,"stall_ms":0.02,"io_percent":91.4,"method":"GET","action":"search#index"} | |
{"gc_ms":0.82,"run_ms":32.74,"idle_ms":3.35,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#index"} | |
{"gc_ms":5.21,"run_ms":131.77,"idle_ms":171.76,"stall_ms":0.02,"io_percent":60.4,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":15.21,"idle_ms":2.45,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.31,"run_ms":30.18,"idle_ms":3.8,"stall_ms":0.1,"io_percent":11.9,"method":"GET","action":"home#index"} | |
{"gc_ms":2.43,"run_ms":63.55,"idle_ms":436.54,"stall_ms":77.56,"io_percent":76.1,"method":"GET","action":"home#index"} | |
{"gc_ms":9.89,"run_ms":30.84,"idle_ms":2.59,"stall_ms":0.01,"io_percent":8.0,"method":"GET","action":"home#index"} | |
{"gc_ms":6.23,"run_ms":77.27,"idle_ms":19.66,"stall_ms":0.01,"io_percent":20.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.24,"run_ms":24.53,"idle_ms":7.51,"stall_ms":0.01,"io_percent":23.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.69,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.67,"run_ms":11.59,"idle_ms":1.96,"stall_ms":0.0,"io_percent":14.5,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.37,"run_ms":15.14,"idle_ms":2.37,"stall_ms":0.01,"io_percent":15.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.18,"idle_ms":2.75,"stall_ms":0.01,"io_percent":15.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.09,"run_ms":12.7,"idle_ms":3.3,"stall_ms":0.0,"io_percent":20.9,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":47.68,"idle_ms":13.4,"stall_ms":0.01,"io_percent":22.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.32,"run_ms":15.81,"idle_ms":2.37,"stall_ms":0.01,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":99.28,"idle_ms":44.35,"stall_ms":0.02,"io_percent":33.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":28.12,"idle_ms":14.06,"stall_ms":0.01,"io_percent":31.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":19.37,"run_ms":125.6,"idle_ms":44.48,"stall_ms":0.04,"io_percent":25.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":13.51,"run_ms":121.99,"idle_ms":53.43,"stall_ms":0.02,"io_percent":29.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":116.47,"idle_ms":90.55,"stall_ms":0.02,"io_percent":47.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.4,"run_ms":137.97,"idle_ms":34.76,"stall_ms":0.02,"io_percent":23.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.15,"run_ms":27.64,"idle_ms":4.32,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.23,"idle_ms":3.25,"stall_ms":0.01,"io_percent":14.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.02,"run_ms":23.07,"idle_ms":3.49,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":23.34,"idle_ms":3.14,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.74,"idle_ms":2.99,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.26,"run_ms":41.45,"idle_ms":3.72,"stall_ms":0.01,"io_percent":8.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":13.18,"idle_ms":2.13,"stall_ms":0.0,"io_percent":11.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":19.13,"idle_ms":2.53,"stall_ms":0.01,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":24.76,"idle_ms":1.91,"stall_ms":0.06,"io_percent":7.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":8.45,"run_ms":23.99,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"HEAD"} | |
{"gc_ms":0.49,"run_ms":38.83,"idle_ms":15.42,"stall_ms":0.01,"io_percent":28.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":23.52,"idle_ms":7.46,"stall_ms":0.01,"io_percent":22.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.4,"run_ms":11.16,"idle_ms":1.81,"stall_ms":0.0,"io_percent":14.0,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":18.25,"idle_ms":2.88,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":17.3,"run_ms":168.34,"idle_ms":48.57,"stall_ms":0.02,"io_percent":26.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":5.59,"run_ms":52.68,"idle_ms":9.49,"stall_ms":0.01,"io_percent":13.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.54,"run_ms":42.49,"idle_ms":9.41,"stall_ms":1.44,"io_percent":13.3,"method":"GET","action":"home#index"} | |
{"gc_ms":3.9,"run_ms":59.91,"idle_ms":54.67,"stall_ms":93.3,"io_percent":26.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.8,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":45.8,"idle_ms":25.84,"stall_ms":0.02,"io_percent":36.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.54,"run_ms":11.0,"idle_ms":2.17,"stall_ms":0.0,"io_percent":13.6,"method":"GET","action":"users#show"} | |
{"gc_ms":12.4,"run_ms":133.79,"idle_ms":97.02,"stall_ms":99.41,"io_percent":30.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.32,"run_ms":17.46,"idle_ms":2.41,"stall_ms":0.01,"io_percent":13.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.79,"idle_ms":0.72,"stall_ms":0.0,"io_percent":7.2,"method":"GET","action":"stories#new"} | |
{"gc_ms":2.26,"run_ms":121.89,"idle_ms":48.73,"stall_ms":0.26,"io_percent":30.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":153.39,"idle_ms":61.61,"stall_ms":0.03,"io_percent":31.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.74,"run_ms":51.94,"idle_ms":12.29,"stall_ms":0.02,"io_percent":17.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.26,"run_ms":20.05,"idle_ms":2.71,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":11.1,"run_ms":171.82,"idle_ms":34.86,"stall_ms":0.03,"io_percent":18.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":4.06,"run_ms":135.16,"idle_ms":65.52,"stall_ms":0.03,"io_percent":37.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.29,"run_ms":56.43,"idle_ms":14.74,"stall_ms":0.01,"io_percent":20.9,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.41,"run_ms":15.78,"idle_ms":2.36,"stall_ms":0.01,"io_percent":14.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.26,"run_ms":10.73,"idle_ms":0.86,"stall_ms":0.0,"io_percent":7.5,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":7.31,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.83,"run_ms":106.92,"idle_ms":36.47,"stall_ms":0.02,"io_percent":27.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":7.68,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.36,"run_ms":13.22,"idle_ms":2.32,"stall_ms":0.0,"io_percent":14.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":19.88,"idle_ms":2.45,"stall_ms":0.01,"io_percent":10.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.13,"run_ms":33.54,"idle_ms":3.34,"stall_ms":0.09,"io_percent":9.5,"method":"GET","action":"home#newest"} | |
{"gc_ms":2.38,"run_ms":36.45,"idle_ms":27.91,"stall_ms":0.02,"io_percent":42.6,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.0,"run_ms":42.93,"idle_ms":27.97,"stall_ms":0.08,"io_percent":38.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.04,"run_ms":68.17,"idle_ms":149.36,"stall_ms":0.02,"io_percent":68.9,"method":"GET","action":"search#index"} | |
{"gc_ms":1.06,"run_ms":38.84,"idle_ms":20.69,"stall_ms":0.02,"io_percent":32.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.23,"run_ms":71.55,"idle_ms":306.52,"stall_ms":0.02,"io_percent":80.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.12,"idle_ms":0.05,"stall_ms":80.61,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":1.01,"run_ms":100.37,"idle_ms":26.78,"stall_ms":0.02,"io_percent":24.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":30.49,"idle_ms":3.34,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.2,"idle_ms":2.1,"stall_ms":0.0,"io_percent":18.7,"method":"GET","action":"users#show"} | |
{"gc_ms":12.41,"run_ms":45.62,"idle_ms":3.04,"stall_ms":0.01,"io_percent":6.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.73,"idle_ms":2.52,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":46.4,"idle_ms":12.44,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.69,"run_ms":99.47,"idle_ms":44.48,"stall_ms":0.02,"io_percent":32.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":6.08,"run_ms":20.95,"idle_ms":2.28,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.58,"idle_ms":7.09,"stall_ms":0.01,"io_percent":24.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.96,"run_ms":18.69,"idle_ms":2.6,"stall_ms":0.01,"io_percent":13.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.32,"run_ms":12.92,"idle_ms":2.03,"stall_ms":0.0,"io_percent":13.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.41,"run_ms":28.49,"idle_ms":2.78,"stall_ms":0.01,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.07,"run_ms":19.03,"idle_ms":2.53,"stall_ms":0.01,"io_percent":13.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.42,"run_ms":112.9,"idle_ms":191.02,"stall_ms":0.02,"io_percent":67.3,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.29,"run_ms":102.74,"idle_ms":92.36,"stall_ms":0.07,"io_percent":51.9,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":5.73,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":2.78,"run_ms":13.05,"idle_ms":2.35,"stall_ms":0.0,"io_percent":15.3,"method":"GET","action":"users#show"} | |
{"gc_ms":13.27,"run_ms":178.98,"idle_ms":33.09,"stall_ms":0.04,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":8.57,"run_ms":180.46,"idle_ms":39.4,"stall_ms":0.03,"io_percent":18.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.59,"run_ms":26.47,"idle_ms":3.7,"stall_ms":0.01,"io_percent":10.3,"method":"GET","action":"home#index"} | |
{"gc_ms":4.27,"run_ms":160.16,"idle_ms":46.88,"stall_ms":0.03,"io_percent":25.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.5,"run_ms":18.58,"idle_ms":4.55,"stall_ms":0.01,"io_percent":20.1,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.48,"run_ms":19.22,"idle_ms":5.69,"stall_ms":0.01,"io_percent":22.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.83,"idle_ms":2.41,"stall_ms":0.01,"io_percent":15.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.04,"idle_ms":2.8,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.1,"run_ms":71.36,"idle_ms":187.08,"stall_ms":0.03,"io_percent":72.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":37.06,"idle_ms":4.0,"stall_ms":0.01,"io_percent":10.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":41.25,"idle_ms":9.09,"stall_ms":0.14,"io_percent":18.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.75,"run_ms":45.45,"idle_ms":11.0,"stall_ms":114.58,"io_percent":6.7,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":9.4,"run_ms":41.54,"idle_ms":10.2,"stall_ms":0.01,"io_percent":19.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.54,"run_ms":11.74,"idle_ms":2.22,"stall_ms":0.0,"io_percent":16.1,"method":"GET","action":"users#show"} | |
{"gc_ms":1.01,"run_ms":6.42,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":3.02,"run_ms":30.15,"idle_ms":3.59,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":30.25,"idle_ms":3.19,"stall_ms":0.01,"io_percent":10.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.02,"run_ms":40.58,"idle_ms":16.55,"stall_ms":0.02,"io_percent":29.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.45,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.08,"idle_ms":1.82,"stall_ms":0.0,"io_percent":14.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":30.28,"idle_ms":11.37,"stall_ms":0.01,"io_percent":27.6,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":71.3,"idle_ms":464.29,"stall_ms":0.02,"io_percent":86.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.69,"run_ms":14.74,"idle_ms":2.22,"stall_ms":0.01,"io_percent":15.1,"method":"GET","action":"home#index"} | |
{"gc_ms":13.47,"run_ms":80.27,"idle_ms":101.69,"stall_ms":0.02,"io_percent":55.9,"method":"GET","action":"home#index"} | |
{"gc_ms":4.12,"run_ms":44.82,"idle_ms":3.31,"stall_ms":0.01,"io_percent":7.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.26,"idle_ms":3.62,"stall_ms":0.11,"io_percent":19.6,"method":"GET","action":"home#index"} | |
{"gc_ms":20.07,"run_ms":112.78,"idle_ms":425.01,"stall_ms":0.03,"io_percent":79.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.84,"run_ms":24.99,"idle_ms":200.2,"stall_ms":0.01,"io_percent":89.0,"method":"GET","action":"comments#reply"} | |
{"gc_ms":3.41,"run_ms":69.18,"idle_ms":22.34,"stall_ms":0.02,"io_percent":24.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.46,"run_ms":43.15,"idle_ms":2.91,"stall_ms":0.01,"io_percent":6.1,"method":"GET","action":"home#index"} | |
{"gc_ms":3.12,"run_ms":136.96,"idle_ms":183.93,"stall_ms":72.36,"io_percent":49.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.25,"run_ms":18.25,"idle_ms":2.57,"stall_ms":0.01,"io_percent":14.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.71,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.62,"run_ms":20.29,"idle_ms":2.66,"stall_ms":0.01,"io_percent":11.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.27,"run_ms":30.92,"idle_ms":2.89,"stall_ms":0.01,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.1,"run_ms":33.19,"idle_ms":3.19,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":78.37,"idle_ms":515.49,"stall_ms":78.09,"io_percent":77.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.4,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":20.93,"idle_ms":2.97,"stall_ms":0.01,"io_percent":12.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.51,"idle_ms":1.89,"stall_ms":0.0,"io_percent":16.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":13.46,"idle_ms":1.99,"stall_ms":0.0,"io_percent":13.0,"method":"GET","action":"users#show"} | |
{"gc_ms":2.0,"run_ms":29.84,"idle_ms":11.43,"stall_ms":0.01,"io_percent":26.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":33.79,"idle_ms":3.41,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.39,"run_ms":5.72,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.72,"idle_ms":5.83,"stall_ms":0.0,"io_percent":37.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":155.78,"idle_ms":90.89,"stall_ms":0.04,"io_percent":43.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":11.51,"run_ms":42.5,"idle_ms":3.6,"stall_ms":0.01,"io_percent":8.1,"method":"GET","action":"home#index"} | |
{"gc_ms":3.39,"run_ms":60.6,"idle_ms":258.75,"stall_ms":0.02,"io_percent":81.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":13.34,"idle_ms":3.71,"stall_ms":0.0,"io_percent":21.9,"method":"GET","action":"search#index"} | |
{"gc_ms":10.89,"run_ms":137.51,"idle_ms":49.35,"stall_ms":0.02,"io_percent":29.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":4.01,"run_ms":29.94,"idle_ms":2.97,"stall_ms":0.01,"io_percent":9.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":23.5,"idle_ms":9.98,"stall_ms":0.01,"io_percent":29.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.57,"run_ms":37.27,"idle_ms":2.91,"stall_ms":0.01,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":9.51,"run_ms":44.21,"idle_ms":10.43,"stall_ms":0.01,"io_percent":19.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":39.31,"idle_ms":13.11,"stall_ms":0.02,"io_percent":25.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.19,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.35,"idle_ms":2.12,"stall_ms":0.0,"io_percent":18.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.89,"run_ms":16.55,"idle_ms":3.43,"stall_ms":0.01,"io_percent":15.5,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":3.79,"run_ms":110.66,"idle_ms":61.71,"stall_ms":0.02,"io_percent":40.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.58,"run_ms":67.22,"idle_ms":417.47,"stall_ms":0.02,"io_percent":86.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.36,"run_ms":57.08,"idle_ms":133.9,"stall_ms":0.02,"io_percent":70.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.95,"run_ms":29.33,"idle_ms":2.89,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.88,"run_ms":64.0,"idle_ms":356.12,"stall_ms":0.02,"io_percent":84.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.19,"run_ms":15.27,"idle_ms":2.4,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.07,"idle_ms":3.06,"stall_ms":0.01,"io_percent":14.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.34,"run_ms":30.75,"idle_ms":3.21,"stall_ms":0.01,"io_percent":10.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.88,"idle_ms":10.98,"stall_ms":0.04,"io_percent":32.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.61,"idle_ms":2.25,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":4.01,"run_ms":118.29,"idle_ms":46.27,"stall_ms":0.02,"io_percent":31.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":9.85,"idle_ms":1.97,"stall_ms":0.0,"io_percent":16.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.87,"run_ms":42.55,"idle_ms":3.83,"stall_ms":0.01,"io_percent":8.9,"method":"GET","action":"home#index"} | |
{"gc_ms":3.71,"run_ms":108.76,"idle_ms":66.16,"stall_ms":0.02,"io_percent":40.9,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":1.47,"run_ms":20.21,"idle_ms":2.95,"stall_ms":0.04,"io_percent":14.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":26.2,"idle_ms":5.52,"stall_ms":1.32,"io_percent":16.8,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":4.27,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":37.35,"idle_ms":10.59,"stall_ms":0.01,"io_percent":21.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":54.01,"idle_ms":10.61,"stall_ms":0.05,"io_percent":16.8,"method":"GET","action":"users#tree"} | |
{"gc_ms":0.27,"run_ms":26.53,"idle_ms":2.92,"stall_ms":0.01,"io_percent":6.9,"method":"GET","action":"home#index"} | |
{"gc_ms":3.43,"run_ms":56.46,"idle_ms":16.76,"stall_ms":0.01,"io_percent":20.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.71,"idle_ms":2.55,"stall_ms":0.01,"io_percent":14.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.65,"idle_ms":12.53,"stall_ms":0.01,"io_percent":28.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":9.43,"idle_ms":1.25,"stall_ms":0.0,"io_percent":11.9,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":5.43,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.6,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.83,"idle_ms":2.27,"stall_ms":0.07,"io_percent":15.1,"method":"GET","action":"home#index"} | |
{"gc_ms":8.3,"run_ms":24.76,"idle_ms":3.09,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":38.65,"idle_ms":17.08,"stall_ms":0.01,"io_percent":30.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":20.69,"idle_ms":10.42,"stall_ms":0.01,"io_percent":34.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.49,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":47.7,"idle_ms":28.22,"stall_ms":0.01,"io_percent":37.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.53,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":19.04,"idle_ms":3.06,"stall_ms":99.28,"io_percent":2.7,"method":"GET","action":"home#index"} | |
{"gc_ms":6.83,"run_ms":57.94,"idle_ms":17.23,"stall_ms":85.77,"io_percent":10.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.7,"idle_ms":2.08,"stall_ms":0.0,"io_percent":17.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.15,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.3,"run_ms":10.05,"idle_ms":1.82,"stall_ms":0.0,"io_percent":15.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.53,"run_ms":24.24,"idle_ms":10.41,"stall_ms":0.01,"io_percent":30.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":33.04,"idle_ms":12.08,"stall_ms":0.06,"io_percent":25.5,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":15.93,"idle_ms":2.2,"stall_ms":0.01,"io_percent":12.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.47,"run_ms":15.96,"idle_ms":3.31,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":32.92,"idle_ms":3.62,"stall_ms":0.01,"io_percent":10.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":111.1,"idle_ms":57.9,"stall_ms":0.02,"io_percent":37.2,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":19.49,"idle_ms":3.07,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":61.28,"idle_ms":19.56,"stall_ms":0.02,"io_percent":24.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":26.66,"idle_ms":12.88,"stall_ms":0.01,"io_percent":32.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":92.94,"idle_ms":53.28,"stall_ms":0.13,"io_percent":40.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":7.89,"run_ms":14.49,"idle_ms":0.66,"stall_ms":0.04,"io_percent":4.3,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":11.32,"idle_ms":0.9,"stall_ms":0.01,"io_percent":6.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":38.6,"idle_ms":17.97,"stall_ms":74.33,"io_percent":14.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.03,"idle_ms":0.04,"stall_ms":2.5,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.77,"idle_ms":3.47,"stall_ms":0.0,"io_percent":18.1,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":5.51,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":36.91,"idle_ms":3.07,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.8,"idle_ms":10.19,"stall_ms":0.01,"io_percent":33.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":9.97,"idle_ms":1.98,"stall_ms":67.32,"io_percent":2.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":14.86,"idle_ms":5.85,"stall_ms":0.01,"io_percent":28.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":9.54,"idle_ms":1.9,"stall_ms":0.0,"io_percent":16.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":14.91,"idle_ms":2.27,"stall_ms":0.01,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":9.73,"run_ms":41.64,"idle_ms":2.94,"stall_ms":0.01,"io_percent":6.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.04,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.36,"run_ms":13.65,"idle_ms":1.88,"stall_ms":0.0,"io_percent":12.2,"method":"GET","action":"users#show"} | |
{"gc_ms":2.31,"run_ms":26.08,"idle_ms":3.23,"stall_ms":0.01,"io_percent":7.2,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.91,"run_ms":8.56,"idle_ms":0.03,"stall_ms":0.11,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.77,"run_ms":63.57,"idle_ms":10.97,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.77,"run_ms":12.58,"idle_ms":4.26,"stall_ms":92.8,"io_percent":4.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.63,"run_ms":11.31,"idle_ms":1.13,"stall_ms":0.0,"io_percent":9.2,"method":"GET","action":"login#index"} | |
{"gc_ms":5.63,"run_ms":183.23,"idle_ms":65.92,"stall_ms":0.03,"io_percent":29.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":32.4,"idle_ms":2.87,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.99,"run_ms":68.72,"idle_ms":134.36,"stall_ms":0.02,"io_percent":66.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.41,"run_ms":39.28,"idle_ms":3.17,"stall_ms":0.01,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.27,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.29,"run_ms":17.23,"idle_ms":2.85,"stall_ms":0.05,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":12.95,"idle_ms":1.83,"stall_ms":0.0,"io_percent":12.4,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.29,"run_ms":17.68,"idle_ms":3.01,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.06,"idle_ms":2.0,"stall_ms":0.0,"io_percent":13.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.59,"run_ms":16.22,"idle_ms":2.37,"stall_ms":0.01,"io_percent":14.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.4,"run_ms":6.51,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.1,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":37.39,"idle_ms":3.04,"stall_ms":0.01,"io_percent":7.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.25,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":33.83,"idle_ms":12.58,"stall_ms":0.12,"io_percent":27.1,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":33.8,"idle_ms":15.38,"stall_ms":0.01,"io_percent":31.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.92,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.24,"idle_ms":1.95,"stall_ms":0.0,"io_percent":17.6,"method":"GET","action":"users#show"} | |
{"gc_ms":5.03,"run_ms":32.62,"idle_ms":3.67,"stall_ms":0.01,"io_percent":10.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":12.02,"idle_ms":2.03,"stall_ms":0.0,"io_percent":14.5,"method":"GET","action":"users#show"} | |
{"gc_ms":7.36,"run_ms":119.96,"idle_ms":42.39,"stall_ms":0.03,"io_percent":28.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.29,"run_ms":41.44,"idle_ms":16.54,"stall_ms":0.02,"io_percent":28.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":39.02,"idle_ms":11.99,"stall_ms":0.02,"io_percent":23.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.69,"run_ms":47.38,"idle_ms":16.98,"stall_ms":0.01,"io_percent":26.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":67.79,"idle_ms":423.53,"stall_ms":0.03,"io_percent":86.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":41.34,"idle_ms":9.72,"stall_ms":0.01,"io_percent":19.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":41.15,"idle_ms":10.27,"stall_ms":0.01,"io_percent":20.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":96.45,"idle_ms":19.49,"stall_ms":0.02,"io_percent":16.3,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":33.06,"idle_ms":2.91,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":34.0,"idle_ms":14.28,"stall_ms":0.01,"io_percent":29.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.02,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":18.32,"run_ms":138.36,"idle_ms":26.19,"stall_ms":0.03,"io_percent":17.8,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.51,"run_ms":18.8,"idle_ms":2.57,"stall_ms":0.01,"io_percent":13.6,"method":"GET","action":"home#index"} | |
{"gc_ms":2.6,"run_ms":38.92,"idle_ms":4.09,"stall_ms":72.5,"io_percent":3.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":43.81,"idle_ms":3.84,"stall_ms":0.01,"io_percent":6.2,"method":"GET","action":"home#index"} | |
{"gc_ms":8.72,"run_ms":17.74,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":5.32,"run_ms":10.98,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.15,"idle_ms":1.86,"stall_ms":0.0,"io_percent":13.3,"method":"GET","action":"users#show"} | |
{"gc_ms":10.84,"run_ms":21.51,"idle_ms":1.64,"stall_ms":0.0,"io_percent":7.1,"method":"GET","action":"users#show"} | |
{"gc_ms":2.24,"run_ms":80.94,"idle_ms":163.61,"stall_ms":0.02,"io_percent":66.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.71,"run_ms":15.2,"idle_ms":2.38,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.54,"run_ms":19.8,"idle_ms":2.89,"stall_ms":0.01,"io_percent":14.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.45,"run_ms":10.33,"idle_ms":0.86,"stall_ms":59.9,"io_percent":1.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.74,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.35,"run_ms":5.78,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.87,"idle_ms":1.98,"stall_ms":0.0,"io_percent":16.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":18.11,"idle_ms":4.22,"stall_ms":0.0,"io_percent":14.5,"method":"GET","action":"users#show"} | |
{"gc_ms":11.12,"run_ms":44.78,"idle_ms":3.19,"stall_ms":0.01,"io_percent":5.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.67,"run_ms":32.69,"idle_ms":12.51,"stall_ms":65.09,"io_percent":11.6,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":0.24,"run_ms":20.6,"idle_ms":9.35,"stall_ms":0.01,"io_percent":31.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.4,"run_ms":26.75,"idle_ms":2.53,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.57,"run_ms":42.6,"idle_ms":80.89,"stall_ms":0.17,"io_percent":65.5,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":16.12,"idle_ms":2.54,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.67,"run_ms":25.23,"idle_ms":9.78,"stall_ms":0.01,"io_percent":28.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":22.04,"run_ms":234.55,"idle_ms":389.2,"stall_ms":0.04,"io_percent":61.5,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":9.37,"idle_ms":0.74,"stall_ms":0.0,"io_percent":7.4,"method":"GET"} | |
{"gc_ms":0.93,"run_ms":30.38,"idle_ms":3.06,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":13.98,"idle_ms":3.01,"stall_ms":0.01,"io_percent":17.8,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":1.17,"run_ms":32.38,"idle_ms":3.06,"stall_ms":1.2,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":54.71,"idle_ms":167.37,"stall_ms":0.01,"io_percent":75.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":25.82,"idle_ms":9.46,"stall_ms":0.01,"io_percent":24.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.78,"idle_ms":3.5,"stall_ms":0.0,"io_percent":17.7,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":52.76,"idle_ms":405.55,"stall_ms":0.04,"io_percent":88.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.86,"run_ms":16.19,"idle_ms":2.25,"stall_ms":0.01,"io_percent":13.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":48.58,"idle_ms":37.1,"stall_ms":0.01,"io_percent":43.3,"method":"GET","action":"home#index"} | |
{"gc_ms":22.45,"run_ms":44.59,"idle_ms":3.24,"stall_ms":0.01,"io_percent":6.6,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.57,"run_ms":36.26,"idle_ms":3.05,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":8.0,"run_ms":24.49,"idle_ms":2.43,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.95,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":4.18,"run_ms":48.13,"idle_ms":9.87,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.46,"run_ms":12.35,"idle_ms":1.78,"stall_ms":0.0,"io_percent":12.7,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":13.1,"idle_ms":4.1,"stall_ms":0.0,"io_percent":24.0,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":9.23,"idle_ms":0.69,"stall_ms":69.66,"io_percent":0.9,"method":"GET"} | |
{"gc_ms":39.78,"run_ms":243.88,"idle_ms":533.76,"stall_ms":0.06,"io_percent":68.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.42,"run_ms":9.15,"idle_ms":0.66,"stall_ms":0.0,"io_percent":5.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":29.78,"idle_ms":3.36,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":13.87,"idle_ms":2.16,"stall_ms":0.01,"io_percent":15.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.93,"run_ms":32.45,"idle_ms":3.43,"stall_ms":0.01,"io_percent":10.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.11,"idle_ms":0.7,"stall_ms":0.0,"io_percent":7.1,"method":"GET"} | |
{"gc_ms":0.6,"run_ms":38.66,"idle_ms":15.09,"stall_ms":0.01,"io_percent":28.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.74,"run_ms":42.4,"idle_ms":3.42,"stall_ms":0.01,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.0,"idle_ms":3.01,"stall_ms":0.01,"io_percent":9.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":32.62,"idle_ms":9.24,"stall_ms":0.01,"io_percent":22.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.46,"idle_ms":2.44,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.36,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":12.72,"run_ms":65.37,"idle_ms":13.04,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.6,"idle_ms":0.64,"stall_ms":0.0,"io_percent":5.9,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":5.74,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":31.32,"idle_ms":3.46,"stall_ms":0.01,"io_percent":6.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":7.4,"run_ms":37.29,"idle_ms":12.12,"stall_ms":0.01,"io_percent":22.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.43,"run_ms":20.07,"idle_ms":2.0,"stall_ms":0.0,"io_percent":5.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.96,"run_ms":17.44,"idle_ms":5.67,"stall_ms":0.01,"io_percent":27.3,"method":"GET","action":"home#index"} | |
{"gc_ms":34.57,"run_ms":62.24,"idle_ms":2.04,"stall_ms":0.01,"io_percent":3.2,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.32,"run_ms":22.89,"idle_ms":8.94,"stall_ms":0.01,"io_percent":28.0,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.11,"run_ms":29.7,"idle_ms":9.92,"stall_ms":0.01,"io_percent":21.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.34,"run_ms":17.62,"idle_ms":3.3,"stall_ms":0.0,"io_percent":13.6,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":6.77,"run_ms":30.52,"idle_ms":7.47,"stall_ms":0.01,"io_percent":19.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.46,"idle_ms":3.5,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.57,"run_ms":23.08,"idle_ms":5.08,"stall_ms":77.26,"io_percent":5.1,"method":"GET","action":"comments#index"} | |
{"gc_ms":2.19,"run_ms":45.18,"idle_ms":19.91,"stall_ms":0.02,"io_percent":30.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":22.21,"idle_ms":2.91,"stall_ms":0.06,"io_percent":12.3,"method":"GET","action":"home#index"} | |
{"gc_ms":2.21,"run_ms":41.87,"idle_ms":10.43,"stall_ms":0.01,"io_percent":19.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.67,"run_ms":69.9,"idle_ms":59.78,"stall_ms":0.04,"io_percent":46.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.04,"run_ms":15.37,"idle_ms":2.49,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.15,"idle_ms":10.64,"stall_ms":0.01,"io_percent":25.7,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.42,"run_ms":121.2,"idle_ms":79.63,"stall_ms":0.03,"io_percent":45.0,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":44.65,"idle_ms":17.33,"stall_ms":0.01,"io_percent":28.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":18.87,"run_ms":100.46,"idle_ms":290.55,"stall_ms":0.02,"io_percent":74.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":13.76,"idle_ms":2.34,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":40.73,"run_ms":156.29,"idle_ms":31.71,"stall_ms":0.02,"io_percent":18.6,"method":"GET","action":"home#top"} | |
{"gc_ms":0.7,"run_ms":15.26,"idle_ms":2.19,"stall_ms":0.01,"io_percent":14.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":29.44,"idle_ms":4.32,"stall_ms":0.01,"io_percent":12.8,"method":"GET","action":"settings#index"} | |
{"gc_ms":0.59,"run_ms":16.68,"idle_ms":2.73,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.58,"run_ms":6.57,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":3.55,"run_ms":35.89,"idle_ms":3.13,"stall_ms":0.01,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.2,"run_ms":39.29,"idle_ms":15.23,"stall_ms":0.02,"io_percent":27.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.89,"idle_ms":2.37,"stall_ms":0.01,"io_percent":15.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":40.1,"idle_ms":20.27,"stall_ms":0.02,"io_percent":33.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.96,"run_ms":26.3,"idle_ms":3.24,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"home#index"} | |
{"gc_ms":5.49,"run_ms":75.08,"idle_ms":12.22,"stall_ms":0.01,"io_percent":14.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":57.25,"idle_ms":363.37,"stall_ms":0.02,"io_percent":84.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.08,"run_ms":16.16,"idle_ms":2.13,"stall_ms":0.01,"io_percent":13.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.25,"run_ms":9.75,"idle_ms":2.03,"stall_ms":0.0,"io_percent":17.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":29.43,"idle_ms":3.17,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.95,"run_ms":19.91,"idle_ms":5.25,"stall_ms":0.01,"io_percent":20.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.37,"run_ms":36.44,"idle_ms":13.23,"stall_ms":0.01,"io_percent":26.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.2,"run_ms":22.59,"idle_ms":3.11,"stall_ms":0.01,"io_percent":13.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.78,"run_ms":132.92,"idle_ms":427.54,"stall_ms":0.02,"io_percent":75.8,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":24.95,"idle_ms":2.13,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#top"} | |
{"gc_ms":0.6,"run_ms":6.16,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.82,"idle_ms":1.69,"stall_ms":0.0,"io_percent":14.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":20.34,"idle_ms":5.74,"stall_ms":0.01,"io_percent":21.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":12.23,"run_ms":132.03,"idle_ms":27.84,"stall_ms":0.02,"io_percent":20.1,"method":"GET","action":"home#index"} | |
{"gc_ms":16.5,"run_ms":64.66,"idle_ms":149.0,"stall_ms":0.01,"io_percent":69.8,"method":"GET","action":"comments#reply"} | |
{"gc_ms":0.0,"run_ms":41.06,"idle_ms":20.02,"stall_ms":0.02,"io_percent":33.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.07,"run_ms":125.87,"idle_ms":61.77,"stall_ms":0.02,"io_percent":36.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":6.71,"idle_ms":0.0,"stall_ms":2.53,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":116.52,"idle_ms":45.96,"stall_ms":0.08,"io_percent":30.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":23.21,"idle_ms":5.86,"stall_ms":0.01,"io_percent":10.3,"method":"GET","action":"home#index"} | |
{"gc_ms":6.52,"run_ms":140.19,"idle_ms":44.76,"stall_ms":0.03,"io_percent":22.1,"method":"GET","action":"home#top"} | |
{"gc_ms":0.33,"run_ms":8.44,"idle_ms":0.15,"stall_ms":84.61,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":18.23,"idle_ms":2.67,"stall_ms":0.01,"io_percent":12.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.14,"idle_ms":2.1,"stall_ms":0.0,"io_percent":9.8,"method":"HEAD","action":"users#show"} | |
{"gc_ms":2.04,"run_ms":14.48,"idle_ms":2.42,"stall_ms":0.0,"io_percent":14.4,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.68,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.91,"idle_ms":1.93,"stall_ms":0.0,"io_percent":16.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":21.95,"idle_ms":2.89,"stall_ms":0.01,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.59,"run_ms":9.65,"idle_ms":0.8,"stall_ms":0.0,"io_percent":7.7,"method":"GET"} | |
{"gc_ms":0.98,"run_ms":20.6,"idle_ms":2.31,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.31,"run_ms":32.38,"idle_ms":3.0,"stall_ms":0.01,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":3.44,"run_ms":75.12,"idle_ms":231.02,"stall_ms":0.02,"io_percent":75.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":144.11,"idle_ms":132.66,"stall_ms":0.03,"io_percent":51.5,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":16.8,"idle_ms":3.22,"stall_ms":0.01,"io_percent":14.2,"method":"GET","action":"home#index"} | |
{"gc_ms":9.16,"run_ms":41.79,"idle_ms":8.79,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.98,"run_ms":31.06,"idle_ms":8.52,"stall_ms":0.01,"io_percent":20.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.0,"run_ms":50.91,"idle_ms":10.06,"stall_ms":70.39,"io_percent":8.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.72,"run_ms":20.89,"idle_ms":2.86,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.34,"run_ms":21.39,"idle_ms":5.95,"stall_ms":0.01,"io_percent":23.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.84,"run_ms":39.59,"idle_ms":16.39,"stall_ms":0.02,"io_percent":29.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":2.74,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.08,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.45,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":41.91,"idle_ms":19.26,"stall_ms":0.02,"io_percent":31.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":2.32,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.67,"run_ms":3.64,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.84,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.94,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.49,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.23,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.45,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.09,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.37,"run_ms":7.2,"idle_ms":0.67,"stall_ms":0.0,"io_percent":7.3,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":2.41,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.32,"run_ms":15.88,"idle_ms":3.29,"stall_ms":0.01,"io_percent":19.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":24.25,"idle_ms":6.45,"stall_ms":0.12,"io_percent":23.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":13.62,"idle_ms":5.96,"stall_ms":0.0,"io_percent":30.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":17.44,"run_ms":52.76,"idle_ms":14.5,"stall_ms":0.02,"io_percent":20.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.7,"idle_ms":6.75,"stall_ms":0.01,"io_percent":26.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":31.15,"idle_ms":18.5,"stall_ms":0.01,"io_percent":33.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":17.25,"idle_ms":4.48,"stall_ms":0.0,"io_percent":14.2,"method":"GET","action":"users#show"} | |
{"gc_ms":2.08,"run_ms":62.09,"idle_ms":47.85,"stall_ms":0.03,"io_percent":38.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.28,"run_ms":49.55,"idle_ms":18.33,"stall_ms":0.02,"io_percent":21.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":3.46,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.32,"run_ms":25.17,"idle_ms":7.47,"stall_ms":0.01,"io_percent":18.5,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":3.45,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.09,"run_ms":3.54,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.44,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.07,"run_ms":33.23,"idle_ms":3.35,"stall_ms":0.01,"io_percent":7.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":57.58,"idle_ms":3.5,"stall_ms":0.07,"io_percent":3.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.37,"run_ms":80.29,"idle_ms":6.47,"stall_ms":0.14,"io_percent":4.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.06,"run_ms":67.29,"idle_ms":26.1,"stall_ms":0.01,"io_percent":23.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.08,"run_ms":36.12,"idle_ms":2.98,"stall_ms":7.15,"io_percent":6.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":51.3,"idle_ms":6.66,"stall_ms":534.48,"io_percent":1.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.96,"run_ms":66.97,"idle_ms":76.94,"stall_ms":655.8,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":38.44,"run_ms":57.75,"idle_ms":383.15,"stall_ms":107.73,"io_percent":54.6,"method":"GET","action":"login#index"} | |
{"gc_ms":1.48,"run_ms":122.48,"idle_ms":478.92,"stall_ms":169.2,"io_percent":48.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":18.61,"run_ms":257.45,"idle_ms":155.83,"stall_ms":117.96,"io_percent":13.0,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":2.57,"run_ms":99.55,"idle_ms":567.84,"stall_ms":236.41,"io_percent":47.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":30.54,"idle_ms":112.6,"stall_ms":273.65,"io_percent":23.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.35,"run_ms":23.65,"idle_ms":34.98,"stall_ms":1089.23,"io_percent":3.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":135.03,"idle_ms":319.52,"stall_ms":55.09,"io_percent":28.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.18,"run_ms":77.26,"idle_ms":323.36,"stall_ms":412.32,"io_percent":34.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":43.05,"idle_ms":202.63,"stall_ms":206.65,"io_percent":30.3,"method":"GET","action":"home#index"} | |
{"gc_ms":2.26,"run_ms":54.24,"idle_ms":104.29,"stall_ms":0.04,"io_percent":32.9,"method":"GET","action":"home#index"} | |
{"gc_ms":3.63,"run_ms":117.89,"idle_ms":729.59,"stall_ms":403.55,"io_percent":49.1,"method":"GET","action":"home#index"} | |
{"gc_ms":4.04,"run_ms":61.12,"idle_ms":230.75,"stall_ms":1217.08,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":150.22,"run_ms":293.44,"idle_ms":709.76,"stall_ms":216.85,"io_percent":37.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":27.03,"run_ms":61.19,"idle_ms":24.65,"stall_ms":0.35,"io_percent":23.9,"method":"GET","action":"home#index"} | |
{"gc_ms":30.49,"run_ms":296.61,"idle_ms":878.87,"stall_ms":544.36,"io_percent":42.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":32.96,"run_ms":90.49,"idle_ms":401.88,"stall_ms":700.98,"io_percent":28.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":29.37,"idle_ms":39.0,"stall_ms":8.36,"io_percent":19.8,"method":"GET","action":"home#index"} | |
{"gc_ms":9.47,"run_ms":346.15,"idle_ms":656.16,"stall_ms":716.86,"io_percent":28.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":5.13,"run_ms":90.42,"idle_ms":53.86,"stall_ms":1.34,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.61,"run_ms":56.32,"idle_ms":82.43,"stall_ms":0.02,"io_percent":39.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":11.08,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":20.3,"run_ms":54.63,"idle_ms":3.05,"stall_ms":0.78,"io_percent":2.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.04,"run_ms":48.82,"idle_ms":255.04,"stall_ms":1024.42,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.47,"run_ms":19.36,"idle_ms":9.01,"stall_ms":0.0,"io_percent":14.3,"method":"GET","action":"users#show"} | |
{"gc_ms":39.77,"run_ms":207.06,"idle_ms":168.13,"stall_ms":788.14,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.71,"run_ms":243.49,"idle_ms":717.35,"stall_ms":825.46,"io_percent":29.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":18.09,"idle_ms":34.88,"stall_ms":631.45,"io_percent":5.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":34.02,"idle_ms":73.01,"stall_ms":0.01,"io_percent":50.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":25.46,"idle_ms":3.49,"stall_ms":0.01,"io_percent":7.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.92,"run_ms":180.25,"idle_ms":1159.16,"stall_ms":222.01,"io_percent":55.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.51,"run_ms":131.29,"idle_ms":955.03,"stall_ms":1320.25,"io_percent":37.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.64,"run_ms":65.13,"idle_ms":8.41,"stall_ms":0.04,"io_percent":10.1,"method":"GET","action":"home#newest"} | |
{"gc_ms":1.11,"run_ms":59.36,"idle_ms":25.34,"stall_ms":0.02,"io_percent":21.1,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.68,"run_ms":23.6,"idle_ms":2.75,"stall_ms":0.01,"io_percent":9.5,"method":"GET","action":"home#index"} | |
{"gc_ms":3.11,"run_ms":95.98,"idle_ms":174.96,"stall_ms":0.02,"io_percent":58.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.99,"run_ms":43.41,"idle_ms":2.93,"stall_ms":0.01,"io_percent":6.3,"method":"GET","action":"home#top"} | |
{"gc_ms":2.13,"run_ms":25.28,"idle_ms":3.31,"stall_ms":0.01,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.6,"run_ms":38.07,"idle_ms":19.68,"stall_ms":0.01,"io_percent":31.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.86,"run_ms":76.32,"idle_ms":224.25,"stall_ms":1.94,"io_percent":69.7,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":60.08,"idle_ms":4.89,"stall_ms":0.01,"io_percent":4.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.23,"idle_ms":0.04,"stall_ms":0.07,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.22,"idle_ms":0.66,"stall_ms":0.05,"io_percent":3.7,"method":"GET"} | |
{"gc_ms":6.33,"run_ms":23.75,"idle_ms":1.95,"stall_ms":0.0,"io_percent":6.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":23.91,"idle_ms":2.82,"stall_ms":0.01,"io_percent":4.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.2,"idle_ms":2.81,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.06,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.3,"run_ms":15.66,"idle_ms":1.71,"stall_ms":0.0,"io_percent":8.0,"method":"GET","action":"users#show"} | |
{"gc_ms":2.21,"run_ms":89.26,"idle_ms":313.97,"stall_ms":0.03,"io_percent":71.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":34.79,"idle_ms":12.9,"stall_ms":0.01,"io_percent":22.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":23.58,"idle_ms":3.92,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.22,"run_ms":158.98,"idle_ms":59.94,"stall_ms":0.03,"io_percent":26.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":50.85,"idle_ms":18.14,"stall_ms":0.01,"io_percent":21.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":13.55,"idle_ms":3.39,"stall_ms":0.01,"io_percent":17.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":16.94,"idle_ms":3.52,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":45.73,"idle_ms":17.15,"stall_ms":0.01,"io_percent":25.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":38.02,"idle_ms":15.24,"stall_ms":0.01,"io_percent":24.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":30.95,"idle_ms":18.6,"stall_ms":0.01,"io_percent":30.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":8.78,"run_ms":59.67,"idle_ms":13.01,"stall_ms":0.01,"io_percent":11.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":25.14,"idle_ms":9.42,"stall_ms":0.01,"io_percent":20.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.74,"run_ms":9.27,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":32.96,"idle_ms":7.23,"stall_ms":182.67,"io_percent":3.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":24.94,"idle_ms":3.14,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.35,"idle_ms":2.59,"stall_ms":0.0,"io_percent":17.9,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":21.24,"idle_ms":5.9,"stall_ms":0.01,"io_percent":22.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.45,"idle_ms":4.64,"stall_ms":0.01,"io_percent":13.5,"method":"GET","action":"home#index"} | |
{"gc_ms":15.21,"run_ms":49.64,"idle_ms":20.71,"stall_ms":0.01,"io_percent":24.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.85,"run_ms":18.1,"idle_ms":2.42,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.04,"run_ms":29.11,"idle_ms":5.18,"stall_ms":0.01,"io_percent":10.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.15,"idle_ms":2.66,"stall_ms":0.0,"io_percent":8.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.37,"idle_ms":1.95,"stall_ms":0.0,"io_percent":9.0,"method":"GET","action":"stories#new"} | |
{"gc_ms":1.17,"run_ms":28.75,"idle_ms":4.05,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.46,"idle_ms":3.53,"stall_ms":0.01,"io_percent":12.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.96,"run_ms":22.28,"idle_ms":6.91,"stall_ms":0.01,"io_percent":13.3,"method":"GET","action":"home#index"} | |
{"gc_ms":2.65,"run_ms":41.69,"idle_ms":32.79,"stall_ms":0.01,"io_percent":32.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.8,"idle_ms":4.63,"stall_ms":0.01,"io_percent":11.8,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":84.13,"idle_ms":1625.45,"stall_ms":0.02,"io_percent":92.1,"method":"GET","action":"search#index"} | |
{"gc_ms":4.4,"run_ms":47.92,"idle_ms":27.41,"stall_ms":95.28,"io_percent":16.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":22.2,"idle_ms":17.83,"stall_ms":0.01,"io_percent":44.0,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.56,"run_ms":34.39,"idle_ms":9.55,"stall_ms":0.01,"io_percent":17.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.25,"run_ms":30.27,"idle_ms":10.98,"stall_ms":0.01,"io_percent":22.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":22.35,"run_ms":102.64,"idle_ms":337.71,"stall_ms":0.02,"io_percent":76.8,"method":"GET","action":"search#index"} | |
{"gc_ms":0.91,"run_ms":17.27,"idle_ms":2.9,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":25.06,"idle_ms":10.42,"stall_ms":0.01,"io_percent":28.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":20.59,"idle_ms":2.87,"stall_ms":0.01,"io_percent":13.9,"method":"GET","action":"home#index"} | |
{"gc_ms":11.93,"run_ms":45.56,"idle_ms":3.95,"stall_ms":81.76,"io_percent":3.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.87,"run_ms":7.28,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":10.64,"run_ms":50.81,"idle_ms":15.64,"stall_ms":0.01,"io_percent":23.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.99,"run_ms":18.6,"idle_ms":1.72,"stall_ms":0.0,"io_percent":8.5,"method":"GET","action":"users#show"} | |
{"gc_ms":12.26,"run_ms":49.94,"idle_ms":13.25,"stall_ms":0.01,"io_percent":21.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.1,"run_ms":27.5,"idle_ms":9.31,"stall_ms":0.01,"io_percent":25.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.81,"run_ms":36.83,"idle_ms":3.13,"stall_ms":0.01,"io_percent":8.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.71,"run_ms":13.07,"idle_ms":1.79,"stall_ms":0.0,"io_percent":12.1,"method":"HEAD","action":"users#show"} | |
{"gc_ms":2.06,"run_ms":54.69,"idle_ms":26.91,"stall_ms":0.02,"io_percent":32.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.26,"run_ms":36.61,"idle_ms":3.12,"stall_ms":0.01,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.16,"run_ms":26.58,"idle_ms":6.94,"stall_ms":1.26,"io_percent":20.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.18,"run_ms":8.02,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":2.54,"run_ms":34.29,"idle_ms":3.33,"stall_ms":0.01,"io_percent":9.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.49,"run_ms":15.64,"idle_ms":2.25,"stall_ms":0.0,"io_percent":12.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":4.96,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.6,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":28.84,"idle_ms":9.75,"stall_ms":1.33,"io_percent":23.8,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":2.06,"run_ms":56.19,"idle_ms":14.28,"stall_ms":0.04,"io_percent":22.8,"method":"GET","action":"users#tree"} | |
{"gc_ms":1.31,"run_ms":43.33,"idle_ms":13.12,"stall_ms":0.01,"io_percent":23.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.38,"run_ms":19.46,"idle_ms":3.41,"stall_ms":0.01,"io_percent":13.1,"method":"GET","action":"home#index"} | |
{"gc_ms":12.32,"run_ms":130.63,"idle_ms":31.01,"stall_ms":0.02,"io_percent":21.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.5,"run_ms":20.73,"idle_ms":2.95,"stall_ms":0.01,"io_percent":14.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.94,"run_ms":17.21,"idle_ms":2.19,"stall_ms":0.01,"io_percent":12.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.35,"run_ms":75.74,"idle_ms":341.76,"stall_ms":0.03,"io_percent":79.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.45,"run_ms":27.79,"idle_ms":10.94,"stall_ms":0.01,"io_percent":28.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.07,"run_ms":38.51,"idle_ms":16.69,"stall_ms":0.01,"io_percent":30.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.85,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.2,"run_ms":32.37,"idle_ms":14.58,"stall_ms":0.01,"io_percent":31.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.99,"run_ms":138.56,"idle_ms":90.64,"stall_ms":0.1,"io_percent":45.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.37,"run_ms":13.01,"idle_ms":2.74,"stall_ms":0.0,"io_percent":17.3,"method":"GET","action":"users#show"} | |
{"gc_ms":1.13,"run_ms":17.77,"idle_ms":2.41,"stall_ms":0.04,"io_percent":13.5,"method":"GET","action":"home#index"} | |
{"gc_ms":4.63,"run_ms":104.65,"idle_ms":38.66,"stall_ms":0.01,"io_percent":28.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.93,"run_ms":25.91,"idle_ms":2.05,"stall_ms":0.01,"io_percent":7.0,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":65.15,"idle_ms":81.56,"stall_ms":0.02,"io_percent":55.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.11,"run_ms":15.22,"idle_ms":2.29,"stall_ms":0.01,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.76,"run_ms":20.26,"idle_ms":8.84,"stall_ms":0.01,"io_percent":30.5,"method":"GET","action":"users#show"} | |
{"gc_ms":5.31,"run_ms":48.63,"idle_ms":5.96,"stall_ms":0.02,"io_percent":11.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":26.44,"run_ms":77.67,"idle_ms":5.66,"stall_ms":0.17,"io_percent":7.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":30.97,"run_ms":55.39,"idle_ms":3.7,"stall_ms":0.01,"io_percent":6.6,"method":"GET","action":"home#index"} | |
{"gc_ms":11.48,"run_ms":25.24,"idle_ms":3.18,"stall_ms":0.0,"io_percent":11.2,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":23.88,"idle_ms":9.98,"stall_ms":65.69,"io_percent":10.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.49,"run_ms":18.77,"idle_ms":2.56,"stall_ms":0.01,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":4.0,"run_ms":63.68,"idle_ms":16.9,"stall_ms":0.02,"io_percent":17.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":59.48,"run_ms":137.94,"idle_ms":437.98,"stall_ms":0.12,"io_percent":74.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.67,"run_ms":48.58,"idle_ms":22.14,"stall_ms":2.71,"io_percent":23.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.56,"run_ms":20.02,"idle_ms":5.25,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.07,"run_ms":35.27,"idle_ms":13.53,"stall_ms":0.01,"io_percent":23.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":32.72,"idle_ms":12.0,"stall_ms":0.01,"io_percent":24.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.5,"run_ms":40.89,"idle_ms":4.83,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.24,"run_ms":44.92,"idle_ms":17.46,"stall_ms":0.02,"io_percent":26.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":60.97,"idle_ms":14.29,"stall_ms":0.02,"io_percent":16.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.63,"run_ms":53.04,"idle_ms":3.94,"stall_ms":0.01,"io_percent":6.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.53,"run_ms":155.52,"idle_ms":110.78,"stall_ms":0.03,"io_percent":42.2,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.35,"run_ms":27.31,"idle_ms":3.7,"stall_ms":0.01,"io_percent":10.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.79,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":37.54,"idle_ms":11.91,"stall_ms":0.02,"io_percent":24.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.69,"run_ms":22.17,"idle_ms":2.64,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.22,"run_ms":20.38,"idle_ms":2.7,"stall_ms":0.01,"io_percent":11.9,"method":"GET","action":"home#index"} | |
{"gc_ms":11.77,"run_ms":53.14,"idle_ms":3.53,"stall_ms":0.01,"io_percent":6.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":15.18,"idle_ms":2.75,"stall_ms":0.0,"io_percent":13.8,"method":"GET","action":"users#show"} | |
{"gc_ms":1.95,"run_ms":16.48,"idle_ms":1.94,"stall_ms":0.0,"io_percent":10.3,"method":"HEAD","action":"users#show"} | |
{"gc_ms":2.2,"run_ms":67.03,"idle_ms":3.78,"stall_ms":0.01,"io_percent":5.3,"method":"GET","action":"home#index"} | |
{"gc_ms":3.14,"run_ms":140.54,"idle_ms":100.87,"stall_ms":0.05,"io_percent":41.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.09,"run_ms":9.55,"idle_ms":0.09,"stall_ms":186.78,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":1.2,"run_ms":60.31,"idle_ms":12.3,"stall_ms":0.02,"io_percent":14.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.17,"run_ms":17.38,"idle_ms":3.83,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":13.62,"idle_ms":1.95,"stall_ms":0.0,"io_percent":12.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":29.78,"idle_ms":2.81,"stall_ms":0.14,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":9.51,"run_ms":36.24,"idle_ms":7.19,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.62,"run_ms":54.21,"idle_ms":417.41,"stall_ms":0.02,"io_percent":88.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.77,"run_ms":21.12,"idle_ms":2.45,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.46,"run_ms":14.73,"idle_ms":6.39,"stall_ms":79.32,"io_percent":6.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.82,"run_ms":17.91,"idle_ms":2.31,"stall_ms":0.01,"io_percent":12.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.85,"run_ms":51.37,"idle_ms":21.16,"stall_ms":0.02,"io_percent":29.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.83,"idle_ms":2.94,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":3.88,"run_ms":48.4,"idle_ms":19.64,"stall_ms":0.02,"io_percent":28.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.58,"idle_ms":6.14,"stall_ms":0.01,"io_percent":27.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":23.96,"idle_ms":4.04,"stall_ms":116.97,"io_percent":2.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.97,"run_ms":18.64,"idle_ms":2.5,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.75,"run_ms":18.53,"idle_ms":2.37,"stall_ms":0.01,"io_percent":12.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.85,"run_ms":34.19,"idle_ms":2.98,"stall_ms":0.01,"io_percent":8.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.65,"run_ms":24.24,"idle_ms":7.62,"stall_ms":0.01,"io_percent":24.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":13.78,"idle_ms":2.21,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.74,"run_ms":15.53,"idle_ms":2.33,"stall_ms":0.01,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":25.85,"idle_ms":9.27,"stall_ms":0.01,"io_percent":26.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":10.04,"idle_ms":1.67,"stall_ms":0.0,"io_percent":14.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.5,"run_ms":21.27,"idle_ms":8.53,"stall_ms":0.01,"io_percent":29.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.51,"idle_ms":2.35,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":4.82,"run_ms":111.98,"idle_ms":519.55,"stall_ms":0.03,"io_percent":82.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.42,"run_ms":30.08,"idle_ms":3.71,"stall_ms":77.71,"io_percent":3.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.21,"run_ms":23.01,"idle_ms":5.01,"stall_ms":0.13,"io_percent":19.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":36.88,"idle_ms":5.73,"stall_ms":0.01,"io_percent":13.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":33.53,"idle_ms":4.17,"stall_ms":0.07,"io_percent":11.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.37,"run_ms":31.78,"idle_ms":12.98,"stall_ms":0.01,"io_percent":26.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.28,"idle_ms":2.27,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":7.73,"run_ms":45.41,"idle_ms":14.58,"stall_ms":117.04,"io_percent":8.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":11.13,"run_ms":39.79,"idle_ms":3.0,"stall_ms":0.01,"io_percent":7.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":13.7,"idle_ms":5.7,"stall_ms":0.01,"io_percent":29.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.84,"run_ms":31.72,"idle_ms":2.37,"stall_ms":0.01,"io_percent":7.5,"method":"GET","action":"home#top"} | |
{"gc_ms":4.16,"run_ms":50.62,"idle_ms":82.91,"stall_ms":0.02,"io_percent":62.2,"method":"GET","action":"moderations#index"} | |
{"gc_ms":1.07,"run_ms":7.53,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.79,"run_ms":22.11,"idle_ms":3.01,"stall_ms":0.01,"io_percent":13.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.33,"idle_ms":6.28,"stall_ms":0.01,"io_percent":24.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.72,"run_ms":17.68,"idle_ms":2.34,"stall_ms":0.0,"io_percent":11.7,"method":"GET","action":"users#show"} | |
{"gc_ms":1.75,"run_ms":31.33,"idle_ms":3.07,"stall_ms":0.01,"io_percent":9.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.21,"run_ms":15.34,"idle_ms":2.34,"stall_ms":0.01,"io_percent":15.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.23,"run_ms":63.19,"idle_ms":7.9,"stall_ms":0.01,"io_percent":11.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.91,"run_ms":133.69,"idle_ms":32.87,"stall_ms":0.09,"io_percent":22.9,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.65,"run_ms":21.37,"idle_ms":5.42,"stall_ms":2.27,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.21,"run_ms":27.12,"idle_ms":8.52,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.38,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.27,"run_ms":10.58,"idle_ms":1.96,"stall_ms":0.0,"io_percent":15.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":148.63,"idle_ms":81.71,"stall_ms":87.83,"io_percent":27.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":12.34,"idle_ms":6.17,"stall_ms":0.0,"io_percent":33.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.26,"run_ms":16.43,"idle_ms":2.49,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.45,"run_ms":14.7,"idle_ms":2.32,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":27.39,"idle_ms":2.89,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.89,"idle_ms":2.95,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.89,"idle_ms":1.66,"stall_ms":0.0,"io_percent":11.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":11.57,"idle_ms":5.41,"stall_ms":0.0,"io_percent":32.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.81,"idle_ms":0.06,"stall_ms":111.01,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":20.71,"idle_ms":3.87,"stall_ms":0.01,"io_percent":12.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.49,"run_ms":26.18,"idle_ms":10.01,"stall_ms":0.01,"io_percent":27.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.87,"run_ms":58.39,"idle_ms":55.58,"stall_ms":0.02,"io_percent":47.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":13.81,"idle_ms":1.93,"stall_ms":0.0,"io_percent":11.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":38.68,"idle_ms":3.31,"stall_ms":0.01,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":17.92,"run_ms":61.31,"idle_ms":3.56,"stall_ms":0.01,"io_percent":5.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.53,"run_ms":14.98,"idle_ms":5.63,"stall_ms":0.01,"io_percent":27.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.76,"run_ms":32.54,"idle_ms":9.68,"stall_ms":0.01,"io_percent":23.0,"method":"GET","action":"users#show"} | |
{"gc_ms":1.62,"run_ms":34.74,"idle_ms":3.0,"stall_ms":0.01,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.09,"idle_ms":0.91,"stall_ms":0.0,"io_percent":10.1,"method":"GET","action":"stories#new"} | |
{"gc_ms":1.52,"run_ms":27.25,"idle_ms":7.16,"stall_ms":0.01,"io_percent":20.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.47,"run_ms":24.23,"idle_ms":9.33,"stall_ms":0.01,"io_percent":28.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.34,"run_ms":38.86,"idle_ms":3.12,"stall_ms":0.01,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.88,"run_ms":33.78,"idle_ms":2.79,"stall_ms":0.01,"io_percent":8.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.31,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"HEAD"} | |
{"gc_ms":3.4,"run_ms":59.93,"idle_ms":277.34,"stall_ms":0.02,"io_percent":81.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.22,"run_ms":17.98,"idle_ms":7.46,"stall_ms":0.01,"io_percent":29.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":9.67,"idle_ms":1.91,"stall_ms":0.0,"io_percent":16.6,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":26.47,"idle_ms":7.61,"stall_ms":0.01,"io_percent":22.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.77,"run_ms":40.52,"idle_ms":3.18,"stall_ms":0.02,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.03,"idle_ms":2.56,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.06,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.53,"idle_ms":1.81,"stall_ms":0.0,"io_percent":13.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":14.88,"idle_ms":6.16,"stall_ms":72.32,"io_percent":6.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.65,"idle_ms":2.49,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"about#about"} | |
{"gc_ms":0.0,"run_ms":9.2,"idle_ms":0.05,"stall_ms":0.0,"io_percent":0.5,"method":"HEAD"} | |
{"gc_ms":0.39,"run_ms":14.33,"idle_ms":1.05,"stall_ms":0.01,"io_percent":6.9,"method":"GET","action":"login#index"} | |
{"gc_ms":3.56,"run_ms":71.17,"idle_ms":64.94,"stall_ms":0.03,"io_percent":48.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.81,"idle_ms":5.42,"stall_ms":0.01,"io_percent":25.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":45.66,"idle_ms":13.64,"stall_ms":69.45,"io_percent":11.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":12.29,"idle_ms":6.1,"stall_ms":0.01,"io_percent":33.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":11.37,"run_ms":45.69,"idle_ms":3.48,"stall_ms":0.01,"io_percent":7.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.42,"run_ms":20.14,"idle_ms":2.74,"stall_ms":0.01,"io_percent":13.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.28,"idle_ms":7.46,"stall_ms":0.01,"io_percent":18.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":11.56,"idle_ms":137.26,"stall_ms":0.0,"io_percent":92.3,"method":"GET","action":"home#newest"} | |
{"gc_ms":6.22,"run_ms":102.74,"idle_ms":138.77,"stall_ms":0.02,"io_percent":57.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.58,"idle_ms":2.23,"stall_ms":0.01,"io_percent":14.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.24,"run_ms":16.18,"idle_ms":3.69,"stall_ms":0.01,"io_percent":20.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.47,"idle_ms":2.31,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.29,"idle_ms":2.87,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":9.29,"run_ms":41.97,"idle_ms":13.42,"stall_ms":0.01,"io_percent":23.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.49,"run_ms":113.94,"idle_ms":155.27,"stall_ms":0.02,"io_percent":62.7,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":14.7,"idle_ms":2.4,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.79,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":5.43,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":38.45,"idle_ms":2.99,"stall_ms":0.01,"io_percent":5.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.41,"idle_ms":1.75,"stall_ms":0.0,"io_percent":15.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":32.6,"idle_ms":9.19,"stall_ms":0.01,"io_percent":22.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":9.96,"idle_ms":1.92,"stall_ms":0.0,"io_percent":16.2,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":18.39,"idle_ms":2.51,"stall_ms":0.01,"io_percent":13.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.75,"idle_ms":3.73,"stall_ms":0.07,"io_percent":12.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.53,"run_ms":6.02,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.67,"run_ms":12.35,"idle_ms":2.33,"stall_ms":0.0,"io_percent":15.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.65,"run_ms":20.95,"idle_ms":2.99,"stall_ms":0.01,"io_percent":14.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.19,"run_ms":54.35,"idle_ms":17.84,"stall_ms":0.02,"io_percent":24.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.1,"run_ms":145.58,"idle_ms":40.31,"stall_ms":0.14,"io_percent":26.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.68,"run_ms":130.36,"idle_ms":33.45,"stall_ms":0.02,"io_percent":22.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.47,"run_ms":135.1,"idle_ms":38.38,"stall_ms":0.03,"io_percent":25.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.43,"run_ms":44.94,"idle_ms":4.27,"stall_ms":0.09,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":24.68,"idle_ms":8.55,"stall_ms":0.01,"io_percent":26.0,"method":"GET","action":"users#show"} | |
{"gc_ms":2.44,"run_ms":39.5,"idle_ms":4.37,"stall_ms":0.01,"io_percent":10.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.75,"idle_ms":4.19,"stall_ms":0.01,"io_percent":19.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.06,"idle_ms":4.03,"stall_ms":0.01,"io_percent":19.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.42,"idle_ms":2.91,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":67.36,"idle_ms":264.32,"stall_ms":0.03,"io_percent":79.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":9.94,"idle_ms":2.13,"stall_ms":0.0,"io_percent":17.8,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":20.46,"idle_ms":3.5,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":17.43,"run_ms":146.29,"idle_ms":36.86,"stall_ms":0.02,"io_percent":21.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.41,"run_ms":16.16,"idle_ms":5.95,"stall_ms":0.01,"io_percent":27.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.05,"run_ms":19.8,"idle_ms":3.06,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.78,"run_ms":39.41,"idle_ms":11.57,"stall_ms":0.01,"io_percent":22.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":38.36,"idle_ms":12.96,"stall_ms":0.02,"io_percent":25.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":39.54,"idle_ms":11.45,"stall_ms":0.01,"io_percent":22.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.03,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.87,"run_ms":46.18,"idle_ms":11.7,"stall_ms":0.01,"io_percent":19.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.72,"run_ms":57.22,"idle_ms":12.76,"stall_ms":0.02,"io_percent":17.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":27.92,"idle_ms":7.1,"stall_ms":0.01,"io_percent":20.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.51,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":18.82,"idle_ms":3.06,"stall_ms":94.98,"io_percent":2.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.26,"run_ms":20.22,"idle_ms":3.26,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.3,"run_ms":12.69,"idle_ms":1.99,"stall_ms":0.0,"io_percent":13.6,"method":"HEAD","action":"users#show"} | |
{"gc_ms":22.35,"run_ms":190.25,"idle_ms":31.38,"stall_ms":0.44,"io_percent":14.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.2,"run_ms":17.52,"idle_ms":2.98,"stall_ms":0.04,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.25,"run_ms":52.0,"idle_ms":47.97,"stall_ms":73.07,"io_percent":28.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":24.41,"idle_ms":10.89,"stall_ms":0.01,"io_percent":31.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.82,"run_ms":35.93,"idle_ms":11.89,"stall_ms":0.01,"io_percent":25.2,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.64,"run_ms":25.18,"idle_ms":9.29,"stall_ms":0.01,"io_percent":27.3,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":7.32,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.16,"idle_ms":4.63,"stall_ms":0.0,"io_percent":22.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":8.0,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.23,"run_ms":18.73,"idle_ms":3.4,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.26,"run_ms":10.23,"idle_ms":2.05,"stall_ms":0.0,"io_percent":16.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.17,"run_ms":15.12,"idle_ms":2.77,"stall_ms":0.01,"io_percent":18.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":32.25,"idle_ms":13.6,"stall_ms":0.11,"io_percent":28.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":34.26,"idle_ms":13.73,"stall_ms":0.01,"io_percent":27.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.75,"run_ms":61.8,"idle_ms":534.47,"stall_ms":0.02,"io_percent":89.7,"method":"GET","action":"home#index"} | |
{"gc_ms":40.27,"run_ms":84.89,"idle_ms":3.68,"stall_ms":0.01,"io_percent":3.2,"method":"GET","action":"home#index"} | |
{"gc_ms":63.57,"run_ms":129.16,"idle_ms":31.63,"stall_ms":0.02,"io_percent":19.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.6,"run_ms":19.11,"idle_ms":2.99,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.57,"idle_ms":2.86,"stall_ms":0.01,"io_percent":17.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":4.91,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":5.25,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.63,"run_ms":10.32,"idle_ms":2.01,"stall_ms":0.0,"io_percent":16.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.27,"run_ms":9.97,"idle_ms":2.08,"stall_ms":0.0,"io_percent":17.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.4,"run_ms":16.5,"idle_ms":2.74,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":6.76,"run_ms":85.44,"idle_ms":231.15,"stall_ms":0.02,"io_percent":73.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.55,"run_ms":34.02,"idle_ms":8.74,"stall_ms":0.01,"io_percent":20.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.26,"idle_ms":3.69,"stall_ms":0.01,"io_percent":19.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.2,"run_ms":17.79,"idle_ms":2.95,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":11.78,"run_ms":71.5,"idle_ms":21.39,"stall_ms":0.02,"io_percent":23.0,"method":"GET","action":"home#index"} | |
{"gc_ms":7.09,"run_ms":42.98,"idle_ms":9.12,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.11,"run_ms":34.65,"idle_ms":4.4,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.65,"idle_ms":291.74,"stall_ms":0.01,"io_percent":93.5,"method":"GET"} | |
{"gc_ms":0.64,"run_ms":18.7,"idle_ms":3.36,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.45,"run_ms":22.48,"idle_ms":4.09,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.55,"run_ms":40.29,"idle_ms":4.51,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.42,"run_ms":17.11,"idle_ms":3.23,"stall_ms":0.01,"io_percent":18.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.34,"run_ms":12.88,"idle_ms":1.88,"stall_ms":0.0,"io_percent":12.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.52,"run_ms":7.34,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.36,"run_ms":11.22,"idle_ms":2.0,"stall_ms":0.0,"io_percent":15.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.33,"run_ms":12.87,"idle_ms":0.66,"stall_ms":0.0,"io_percent":4.8,"method":"GET"} | |
{"gc_ms":0.27,"run_ms":20.7,"idle_ms":3.53,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.61,"run_ms":26.48,"idle_ms":6.24,"stall_ms":0.01,"io_percent":19.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.26,"idle_ms":2.61,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.24,"run_ms":12.48,"idle_ms":2.94,"stall_ms":0.0,"io_percent":19.2,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":2.04,"run_ms":99.73,"idle_ms":27.32,"stall_ms":0.02,"io_percent":25.2,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":29.47,"idle_ms":3.49,"stall_ms":0.07,"io_percent":11.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.48,"idle_ms":2.32,"stall_ms":0.0,"io_percent":18.4,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.0,"run_ms":14.04,"idle_ms":2.72,"stall_ms":0.01,"io_percent":19.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.96,"idle_ms":7.89,"stall_ms":0.01,"io_percent":26.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.75,"idle_ms":2.78,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.21,"run_ms":5.51,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.49,"run_ms":21.89,"idle_ms":8.35,"stall_ms":0.01,"io_percent":28.2,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":34.38,"idle_ms":16.2,"stall_ms":0.01,"io_percent":32.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.38,"run_ms":11.07,"idle_ms":2.12,"stall_ms":69.45,"io_percent":2.8,"method":"GET","action":"users#show"} | |
{"gc_ms":1.33,"run_ms":88.36,"idle_ms":32.32,"stall_ms":0.02,"io_percent":28.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":6.87,"run_ms":22.99,"idle_ms":2.94,"stall_ms":0.01,"io_percent":12.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.51,"idle_ms":2.78,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":6.19,"run_ms":58.26,"idle_ms":36.99,"stall_ms":0.02,"io_percent":38.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":86.79,"idle_ms":69.66,"stall_ms":0.02,"io_percent":50.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":14.87,"idle_ms":2.71,"stall_ms":0.01,"io_percent":17.9,"method":"GET","action":"home#index"} | |
{"gc_ms":4.79,"run_ms":30.38,"idle_ms":3.24,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":21.73,"idle_ms":7.16,"stall_ms":0.01,"io_percent":25.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":23.6,"idle_ms":9.44,"stall_ms":64.12,"io_percent":9.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":4.97,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":30.08,"idle_ms":13.64,"stall_ms":0.01,"io_percent":31.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":17.75,"idle_ms":9.06,"stall_ms":0.01,"io_percent":34.1,"method":"GET","action":"users#show"} | |
{"gc_ms":14.64,"run_ms":127.26,"idle_ms":32.31,"stall_ms":0.02,"io_percent":20.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.27,"run_ms":6.56,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.72,"run_ms":10.76,"idle_ms":1.69,"stall_ms":0.0,"io_percent":13.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":28.48,"idle_ms":8.28,"stall_ms":0.01,"io_percent":22.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.9,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":1.51,"run_ms":21.39,"idle_ms":3.23,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":15.37,"run_ms":83.3,"idle_ms":246.83,"stall_ms":0.02,"io_percent":74.8,"method":"GET","action":"home#index"} | |
{"gc_ms":10.84,"run_ms":40.34,"idle_ms":7.36,"stall_ms":0.01,"io_percent":14.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":42.67,"idle_ms":4.08,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":39.64,"idle_ms":10.61,"stall_ms":0.01,"io_percent":20.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.66,"idle_ms":1.92,"stall_ms":0.0,"io_percent":7.8,"method":"HEAD","action":"users#show"} | |
{"gc_ms":1.54,"run_ms":10.6,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.87,"run_ms":12.93,"idle_ms":2.4,"stall_ms":0.11,"io_percent":15.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.88,"run_ms":32.0,"idle_ms":7.93,"stall_ms":0.01,"io_percent":20.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":42.33,"idle_ms":7.48,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":4.28,"run_ms":70.56,"idle_ms":597.84,"stall_ms":0.03,"io_percent":89.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":31.23,"idle_ms":12.21,"stall_ms":77.16,"io_percent":10.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":13.07,"idle_ms":2.12,"stall_ms":0.0,"io_percent":13.5,"method":"GET","action":"inbox#index"} | |
{"gc_ms":0.8,"run_ms":18.01,"idle_ms":2.97,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":40.17,"idle_ms":342.98,"stall_ms":0.02,"io_percent":89.6,"method":"GET","action":"replies#unread"} | |
{"gc_ms":2.96,"run_ms":119.51,"idle_ms":30.47,"stall_ms":0.02,"io_percent":23.3,"method":"GET","action":"home#index"} | |
{"gc_ms":2.13,"run_ms":17.63,"idle_ms":3.1,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":40.33,"idle_ms":12.14,"stall_ms":0.02,"io_percent":23.4,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":0.0,"run_ms":34.55,"idle_ms":3.96,"stall_ms":0.1,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":8.27,"run_ms":53.47,"idle_ms":18.38,"stall_ms":0.02,"io_percent":23.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.7,"run_ms":161.78,"idle_ms":100.01,"stall_ms":0.04,"io_percent":43.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":6.73,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":6.86,"run_ms":97.74,"idle_ms":20.93,"stall_ms":0.03,"io_percent":17.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.19,"run_ms":43.13,"idle_ms":12.26,"stall_ms":0.01,"io_percent":22.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.71,"run_ms":127.02,"idle_ms":55.63,"stall_ms":5.4,"io_percent":31.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":41.34,"idle_ms":20.64,"stall_ms":0.02,"io_percent":30.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.04,"run_ms":140.51,"idle_ms":81.81,"stall_ms":0.03,"io_percent":39.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":16.81,"run_ms":192.49,"idle_ms":91.69,"stall_ms":0.03,"io_percent":30.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.46,"run_ms":9.02,"idle_ms":0.91,"stall_ms":0.0,"io_percent":8.8,"method":"GET","action":"stories#new"} | |
{"gc_ms":1.63,"run_ms":38.2,"idle_ms":3.62,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.67,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.69,"run_ms":9.8,"idle_ms":2.19,"stall_ms":0.0,"io_percent":18.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":15.63,"idle_ms":2.82,"stall_ms":0.01,"io_percent":17.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":100.6,"idle_ms":10.6,"stall_ms":0.02,"io_percent":9.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":33.8,"idle_ms":3.92,"stall_ms":0.01,"io_percent":11.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.08,"run_ms":23.18,"idle_ms":4.14,"stall_ms":115.1,"io_percent":3.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.89,"run_ms":71.3,"idle_ms":663.72,"stall_ms":0.03,"io_percent":90.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.01,"run_ms":78.9,"idle_ms":22.8,"stall_ms":0.02,"io_percent":21.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":37.95,"idle_ms":3.89,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.25,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":7.81,"run_ms":20.48,"idle_ms":2.05,"stall_ms":0.0,"io_percent":9.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.32,"run_ms":17.32,"idle_ms":2.8,"stall_ms":0.01,"io_percent":15.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.68,"run_ms":24.85,"idle_ms":3.71,"stall_ms":0.01,"io_percent":14.6,"method":"GET","action":"home#index"} | |
{"gc_ms":2.03,"run_ms":25.33,"idle_ms":3.35,"stall_ms":0.01,"io_percent":12.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.55,"run_ms":16.65,"idle_ms":0.75,"stall_ms":0.0,"io_percent":4.3,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":98.85,"idle_ms":21.13,"stall_ms":0.02,"io_percent":19.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.26,"run_ms":31.45,"idle_ms":3.39,"stall_ms":0.01,"io_percent":10.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":42.4,"idle_ms":9.87,"stall_ms":0.02,"io_percent":19.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.86,"run_ms":23.88,"idle_ms":3.47,"stall_ms":0.01,"io_percent":11.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.53,"idle_ms":6.71,"stall_ms":0.01,"io_percent":22.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.87,"run_ms":19.19,"idle_ms":2.99,"stall_ms":0.01,"io_percent":15.5,"method":"GET","action":"home#index"} | |
{"gc_ms":3.05,"run_ms":44.7,"idle_ms":4.37,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.01,"idle_ms":2.89,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":33.82,"idle_ms":3.32,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":12.07,"run_ms":79.72,"idle_ms":71.43,"stall_ms":0.03,"io_percent":47.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.02,"run_ms":39.18,"idle_ms":15.72,"stall_ms":0.01,"io_percent":28.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.05,"run_ms":38.23,"idle_ms":4.04,"stall_ms":0.01,"io_percent":9.5,"method":"GET","action":"home#index"} | |
{"gc_ms":5.61,"run_ms":112.0,"idle_ms":146.69,"stall_ms":0.02,"io_percent":61.8,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.27,"run_ms":7.52,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.38,"run_ms":29.65,"idle_ms":11.53,"stall_ms":0.03,"io_percent":28.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.55,"run_ms":26.11,"idle_ms":7.91,"stall_ms":0.09,"io_percent":21.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.35,"run_ms":34.6,"idle_ms":15.27,"stall_ms":0.01,"io_percent":26.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.55,"run_ms":14.6,"idle_ms":3.0,"stall_ms":0.0,"io_percent":17.1,"method":"GET","action":"users#show"} | |
{"gc_ms":3.6,"run_ms":79.35,"idle_ms":150.01,"stall_ms":0.02,"io_percent":65.1,"method":"GET","action":"home#index"} | |
{"gc_ms":12.24,"run_ms":132.93,"idle_ms":24.56,"stall_ms":0.02,"io_percent":15.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.67,"idle_ms":1.08,"stall_ms":0.0,"io_percent":13.9,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.4,"idle_ms":3.27,"stall_ms":0.0,"io_percent":28.7,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.48,"idle_ms":2.79,"stall_ms":0.0,"io_percent":19.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":14.68,"idle_ms":5.35,"stall_ms":92.23,"io_percent":5.1,"method":"GET","action":"users#show"} | |
{"gc_ms":3.26,"run_ms":53.06,"idle_ms":12.81,"stall_ms":0.02,"io_percent":19.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.76,"run_ms":21.74,"idle_ms":3.44,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.26,"run_ms":15.04,"idle_ms":5.02,"stall_ms":0.01,"io_percent":24.6,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":2.44,"run_ms":90.46,"idle_ms":20.1,"stall_ms":0.02,"io_percent":18.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.15,"run_ms":15.91,"idle_ms":2.73,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.01,"run_ms":14.65,"idle_ms":4.7,"stall_ms":109.89,"io_percent":3.5,"method":"GET","action":"users#show"} | |
{"gc_ms":4.61,"run_ms":64.06,"idle_ms":16.13,"stall_ms":0.46,"io_percent":19.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.47,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":43.99,"idle_ms":6.06,"stall_ms":0.08,"io_percent":9.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":13.53,"idle_ms":2.32,"stall_ms":0.0,"io_percent":14.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.4,"run_ms":7.6,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.77,"run_ms":15.04,"idle_ms":2.56,"stall_ms":0.0,"io_percent":14.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":148.03,"idle_ms":68.42,"stall_ms":0.04,"io_percent":32.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":18.97,"idle_ms":6.06,"stall_ms":0.02,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":3.45,"run_ms":122.02,"idle_ms":34.08,"stall_ms":0.02,"io_percent":23.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":16.6,"idle_ms":2.9,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":43.49,"idle_ms":4.03,"stall_ms":0.01,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.39,"run_ms":25.36,"idle_ms":3.68,"stall_ms":0.01,"io_percent":14.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.04,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":16.75,"idle_ms":2.14,"stall_ms":0.0,"io_percent":9.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.53,"run_ms":51.98,"idle_ms":7.07,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":28.75,"idle_ms":8.85,"stall_ms":0.18,"io_percent":18.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":43.15,"idle_ms":4.39,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.9,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":32.45,"idle_ms":5.76,"stall_ms":0.01,"io_percent":17.8,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":20.46,"idle_ms":3.1,"stall_ms":0.01,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":7.13,"run_ms":21.83,"idle_ms":5.39,"stall_ms":0.0,"io_percent":19.9,"method":"GET","action":"users#show"} | |
{"gc_ms":1.6,"run_ms":21.97,"idle_ms":2.94,"stall_ms":0.17,"io_percent":12.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.69,"run_ms":31.94,"idle_ms":4.37,"stall_ms":0.01,"io_percent":12.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":34.79,"idle_ms":3.79,"stall_ms":0.01,"io_percent":10.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":41.7,"idle_ms":25.51,"stall_ms":0.02,"io_percent":37.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":17.89,"idle_ms":3.09,"stall_ms":0.01,"io_percent":13.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.6,"run_ms":27.44,"idle_ms":7.93,"stall_ms":0.01,"io_percent":22.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":30.55,"idle_ms":2.31,"stall_ms":0.01,"io_percent":7.3,"method":"GET","action":"home#top"} | |
{"gc_ms":1.47,"run_ms":28.75,"idle_ms":6.92,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":35.16,"idle_ms":17.72,"stall_ms":0.02,"io_percent":32.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":22.24,"idle_ms":3.36,"stall_ms":0.01,"io_percent":13.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":39.12,"idle_ms":18.97,"stall_ms":0.01,"io_percent":29.5,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.58,"run_ms":26.45,"idle_ms":9.15,"stall_ms":0.01,"io_percent":22.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":47.07,"idle_ms":17.38,"stall_ms":0.01,"io_percent":23.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.82,"idle_ms":1.62,"stall_ms":0.0,"io_percent":6.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":24.95,"idle_ms":167.04,"stall_ms":0.01,"io_percent":85.2,"method":"GET","action":"comments#reply"} | |
{"gc_ms":10.67,"run_ms":41.27,"idle_ms":1.99,"stall_ms":0.01,"io_percent":4.8,"method":"GET","action":"home#top"} | |
{"gc_ms":1.13,"run_ms":31.43,"idle_ms":4.29,"stall_ms":0.01,"io_percent":13.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":7.22,"run_ms":48.75,"idle_ms":11.85,"stall_ms":0.01,"io_percent":19.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.94,"idle_ms":2.91,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.35,"run_ms":16.74,"idle_ms":2.84,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.03,"run_ms":6.32,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.19,"run_ms":60.11,"idle_ms":18.98,"stall_ms":81.38,"io_percent":12.5,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":15.1,"idle_ms":2.28,"stall_ms":0.0,"io_percent":10.1,"method":"GET","action":"users#show"} | |
{"gc_ms":3.58,"run_ms":42.12,"idle_ms":9.68,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":32.66,"idle_ms":3.77,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":11.83,"run_ms":127.61,"idle_ms":54.21,"stall_ms":0.03,"io_percent":32.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":8.68,"idle_ms":0.77,"stall_ms":0.0,"io_percent":8.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":37.06,"idle_ms":11.14,"stall_ms":0.01,"io_percent":22.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":12.85,"run_ms":139.06,"idle_ms":103.06,"stall_ms":0.02,"io_percent":44.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":23.02,"idle_ms":6.43,"stall_ms":0.01,"io_percent":21.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":39.09,"idle_ms":10.57,"stall_ms":0.01,"io_percent":21.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":12.7,"run_ms":231.12,"idle_ms":139.69,"stall_ms":0.08,"io_percent":46.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.66,"run_ms":18.0,"idle_ms":2.89,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":39.64,"idle_ms":18.28,"stall_ms":0.02,"io_percent":31.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.63,"run_ms":17.37,"idle_ms":2.75,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":124.72,"idle_ms":40.14,"stall_ms":0.09,"io_percent":28.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.06,"run_ms":17.62,"idle_ms":5.19,"stall_ms":0.01,"io_percent":26.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.1,"idle_ms":3.56,"stall_ms":0.01,"io_percent":16.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.76,"idle_ms":4.86,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.58,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.6,"run_ms":13.48,"idle_ms":2.1,"stall_ms":0.0,"io_percent":12.3,"method":"GET","action":"users#show"} | |
{"gc_ms":4.3,"run_ms":12.61,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":23.67,"idle_ms":5.28,"stall_ms":0.01,"io_percent":17.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.07,"run_ms":14.84,"idle_ms":2.65,"stall_ms":0.0,"io_percent":15.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.52,"idle_ms":0.07,"stall_ms":79.53,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":31.22,"idle_ms":11.85,"stall_ms":0.01,"io_percent":27.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.46,"run_ms":123.11,"idle_ms":69.93,"stall_ms":0.02,"io_percent":38.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.3,"run_ms":13.08,"idle_ms":2.16,"stall_ms":0.0,"io_percent":14.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.21,"run_ms":12.99,"idle_ms":1.97,"stall_ms":0.0,"io_percent":13.2,"method":"GET","action":"users#show"} | |
{"gc_ms":5.35,"run_ms":82.62,"idle_ms":24.86,"stall_ms":0.02,"io_percent":22.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.2,"run_ms":7.97,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":2.99,"run_ms":39.44,"idle_ms":10.4,"stall_ms":0.01,"io_percent":19.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.6,"run_ms":19.04,"idle_ms":3.31,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.12,"idle_ms":2.14,"stall_ms":0.0,"io_percent":9.4,"method":"GET","action":"users#show"} | |
{"gc_ms":46.34,"run_ms":94.73,"idle_ms":13.74,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.59,"run_ms":144.09,"idle_ms":39.85,"stall_ms":1.25,"io_percent":21.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.92,"run_ms":12.26,"idle_ms":0.79,"stall_ms":0.0,"io_percent":6.1,"method":"GET"} | |
{"gc_ms":4.41,"run_ms":84.48,"idle_ms":232.94,"stall_ms":0.02,"io_percent":73.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.36,"run_ms":22.89,"idle_ms":3.69,"stall_ms":0.25,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.81,"run_ms":37.37,"idle_ms":3.85,"stall_ms":0.01,"io_percent":10.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.63,"run_ms":8.22,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":37.41,"idle_ms":3.79,"stall_ms":86.23,"io_percent":3.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.3,"run_ms":30.2,"idle_ms":7.73,"stall_ms":0.01,"io_percent":20.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.46,"run_ms":12.4,"idle_ms":2.16,"stall_ms":0.0,"io_percent":12.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.9,"run_ms":5.88,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.3,"run_ms":15.8,"idle_ms":3.06,"stall_ms":0.01,"io_percent":19.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.75,"run_ms":32.33,"idle_ms":3.54,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.26,"run_ms":67.07,"idle_ms":97.87,"stall_ms":0.03,"io_percent":59.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.1,"run_ms":31.04,"idle_ms":2.72,"stall_ms":0.01,"io_percent":7.8,"method":"GET","action":"home#index"} | |
{"gc_ms":10.1,"run_ms":26.77,"idle_ms":2.9,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.17,"run_ms":16.55,"idle_ms":2.8,"stall_ms":0.01,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":41.18,"run_ms":106.91,"idle_ms":143.43,"stall_ms":0.03,"io_percent":57.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":15.56,"run_ms":55.22,"idle_ms":13.79,"stall_ms":0.01,"io_percent":20.5,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":1.54,"run_ms":42.72,"idle_ms":18.57,"stall_ms":0.01,"io_percent":28.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.41,"run_ms":38.07,"idle_ms":16.9,"stall_ms":0.02,"io_percent":31.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.69,"run_ms":49.3,"idle_ms":17.95,"stall_ms":0.01,"io_percent":26.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.49,"run_ms":28.73,"idle_ms":3.43,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.25,"run_ms":16.6,"idle_ms":3.0,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":29.55,"idle_ms":3.5,"stall_ms":0.01,"io_percent":11.6,"method":"GET","action":"home#index"} | |
{"gc_ms":3.8,"run_ms":43.43,"idle_ms":4.16,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":114.02,"idle_ms":39.01,"stall_ms":0.02,"io_percent":31.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.54,"idle_ms":2.88,"stall_ms":0.01,"io_percent":5.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.33,"run_ms":105.51,"idle_ms":30.42,"stall_ms":0.02,"io_percent":24.3,"method":"GET","action":"home#index"} | |
{"gc_ms":4.83,"run_ms":129.95,"idle_ms":37.27,"stall_ms":82.48,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.23,"run_ms":17.3,"idle_ms":3.01,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":50.4,"idle_ms":11.84,"stall_ms":0.01,"io_percent":19.1,"method":"GET","action":"home#index"} | |
{"gc_ms":11.32,"run_ms":51.1,"idle_ms":2.44,"stall_ms":0.01,"io_percent":4.8,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":40.35,"idle_ms":8.52,"stall_ms":0.01,"io_percent":17.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.27,"run_ms":15.92,"idle_ms":2.61,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.36,"run_ms":45.9,"idle_ms":10.95,"stall_ms":0.01,"io_percent":18.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.66,"idle_ms":0.64,"stall_ms":0.0,"io_percent":7.0,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":66.05,"idle_ms":16.88,"stall_ms":0.02,"io_percent":20.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.29,"idle_ms":2.88,"stall_ms":0.01,"io_percent":20.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":32.75,"idle_ms":3.59,"stall_ms":0.01,"io_percent":10.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.98,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":39.6,"idle_ms":16.8,"stall_ms":0.01,"io_percent":30.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.67,"idle_ms":0.15,"stall_ms":85.09,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.28,"run_ms":9.61,"idle_ms":1.56,"stall_ms":0.0,"io_percent":14.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.57,"run_ms":10.49,"idle_ms":1.95,"stall_ms":0.0,"io_percent":15.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":15.95,"idle_ms":2.95,"stall_ms":0.01,"io_percent":18.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.58,"run_ms":38.13,"idle_ms":5.28,"stall_ms":0.01,"io_percent":13.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.73,"idle_ms":2.95,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":11.3,"run_ms":61.29,"idle_ms":83.72,"stall_ms":0.07,"io_percent":57.8,"method":"GET","action":"home#index"} | |
{"gc_ms":23.53,"run_ms":243.05,"idle_ms":41.42,"stall_ms":0.04,"io_percent":14.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.15,"run_ms":71.02,"idle_ms":11.55,"stall_ms":0.02,"io_percent":14.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.6,"run_ms":7.97,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":1.39,"run_ms":33.79,"idle_ms":3.32,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.23,"idle_ms":0.71,"stall_ms":0.0,"io_percent":5.9,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.68,"run_ms":20.99,"idle_ms":3.12,"stall_ms":0.09,"io_percent":14.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.59,"idle_ms":6.75,"stall_ms":0.01,"io_percent":26.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":28.84,"idle_ms":3.3,"stall_ms":0.01,"io_percent":11.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.71,"idle_ms":0.64,"stall_ms":0.0,"io_percent":5.6,"method":"HEAD"} | |
{"gc_ms":1.83,"run_ms":66.47,"idle_ms":597.78,"stall_ms":0.02,"io_percent":89.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":9.88,"idle_ms":1.9,"stall_ms":0.0,"io_percent":15.4,"method":"HEAD","action":"users#show"} | |
{"gc_ms":10.45,"run_ms":118.26,"idle_ms":99.89,"stall_ms":0.02,"io_percent":50.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":151.03,"idle_ms":75.13,"stall_ms":0.05,"io_percent":37.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.72,"run_ms":15.29,"idle_ms":7.6,"stall_ms":0.01,"io_percent":30.8,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":3.33,"run_ms":48.4,"idle_ms":10.07,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":35.02,"idle_ms":4.34,"stall_ms":0.01,"io_percent":11.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":55.09,"idle_ms":455.54,"stall_ms":0.04,"io_percent":89.1,"method":"POST","action":"comments#create"} | |
{"gc_ms":0.76,"run_ms":54.52,"idle_ms":443.48,"stall_ms":0.02,"io_percent":89.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.24,"run_ms":6.0,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.6,"method":"GET"} | |
{"gc_ms":0.55,"run_ms":17.62,"idle_ms":3.02,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.7,"run_ms":44.02,"idle_ms":18.05,"stall_ms":0.02,"io_percent":29.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.59,"run_ms":13.49,"idle_ms":2.38,"stall_ms":0.0,"io_percent":15.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":16.01,"idle_ms":2.7,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.24,"run_ms":16.41,"idle_ms":2.87,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.22,"run_ms":15.91,"idle_ms":2.87,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.85,"idle_ms":1.08,"stall_ms":0.0,"io_percent":10.9,"method":"GET","action":"login#index"} | |
{"gc_ms":1.95,"run_ms":22.31,"idle_ms":5.44,"stall_ms":72.25,"io_percent":6.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.36,"idle_ms":3.07,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.67,"idle_ms":2.9,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.41,"idle_ms":3.53,"stall_ms":96.37,"io_percent":3.2,"method":"GET","action":"home#index"} | |
{"gc_ms":5.62,"run_ms":29.5,"idle_ms":3.68,"stall_ms":68.97,"io_percent":3.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.95,"run_ms":21.02,"idle_ms":3.71,"stall_ms":0.01,"io_percent":17.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.02,"idle_ms":2.89,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.42,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.7,"idle_ms":2.11,"stall_ms":0.0,"io_percent":15.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":10.54,"idle_ms":3.14,"stall_ms":0.0,"io_percent":22.0,"method":"GET","action":"inbox#index"} | |
{"gc_ms":0.56,"run_ms":16.66,"idle_ms":2.92,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":47.94,"idle_ms":20.09,"stall_ms":0.01,"io_percent":29.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":20.12,"idle_ms":3.52,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.2,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.5,"idle_ms":2.37,"stall_ms":0.05,"io_percent":18.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":20.01,"idle_ms":3.15,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":8.26,"run_ms":37.65,"idle_ms":12.2,"stall_ms":0.01,"io_percent":24.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":53.09,"idle_ms":475.42,"stall_ms":0.01,"io_percent":89.7,"method":"GET","action":"replies#all"} | |
{"gc_ms":8.05,"run_ms":15.55,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":13.41,"idle_ms":2.3,"stall_ms":0.02,"io_percent":13.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":39.8,"idle_ms":5.32,"stall_ms":0.01,"io_percent":12.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.81,"run_ms":14.77,"idle_ms":1.03,"stall_ms":0.0,"io_percent":6.4,"method":"GET"} | |
{"gc_ms":8.66,"run_ms":105.18,"idle_ms":156.36,"stall_ms":0.03,"io_percent":56.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.62,"idle_ms":3.34,"stall_ms":74.14,"io_percent":4.0,"method":"GET","action":"inbox#index"} | |
{"gc_ms":13.57,"run_ms":160.64,"idle_ms":57.57,"stall_ms":0.03,"io_percent":30.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":11.9,"run_ms":43.21,"idle_ms":17.16,"stall_ms":115.3,"io_percent":10.1,"method":"GET","action":"replies#all"} | |
{"gc_ms":0.0,"run_ms":130.35,"idle_ms":44.64,"stall_ms":0.03,"io_percent":27.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.74,"run_ms":48.17,"idle_ms":5.42,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.28,"run_ms":113.28,"idle_ms":43.54,"stall_ms":0.02,"io_percent":30.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.65,"run_ms":71.36,"idle_ms":16.12,"stall_ms":0.01,"io_percent":18.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.89,"run_ms":7.6,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":38.43,"idle_ms":3.48,"stall_ms":0.43,"io_percent":8.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.38,"run_ms":16.74,"idle_ms":0.87,"stall_ms":0.0,"io_percent":3.5,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":33.34,"idle_ms":3.45,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.39,"run_ms":6.44,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.56,"run_ms":153.55,"idle_ms":40.26,"stall_ms":0.03,"io_percent":22.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.96,"idle_ms":1.94,"stall_ms":0.0,"io_percent":13.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":72.12,"idle_ms":476.85,"stall_ms":0.03,"io_percent":87.0,"method":"GET","action":"replies#comments"} | |
{"gc_ms":15.03,"run_ms":132.35,"idle_ms":70.57,"stall_ms":0.03,"io_percent":35.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.85,"run_ms":17.88,"idle_ms":2.85,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":73.95,"idle_ms":685.7,"stall_ms":0.05,"io_percent":90.3,"method":"POST","action":"comments#create"} | |
{"gc_ms":5.53,"run_ms":36.51,"idle_ms":4.18,"stall_ms":0.08,"io_percent":11.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":7.95,"run_ms":137.06,"idle_ms":46.09,"stall_ms":0.09,"io_percent":28.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.14,"run_ms":28.01,"idle_ms":12.14,"stall_ms":0.01,"io_percent":30.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.62,"run_ms":42.9,"idle_ms":3.86,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":2.95,"run_ms":37.77,"idle_ms":3.98,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.39,"run_ms":61.9,"idle_ms":29.79,"stall_ms":1.01,"io_percent":28.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":11.09,"idle_ms":6.33,"stall_ms":0.01,"io_percent":36.7,"method":"GET"} | |
{"gc_ms":0.73,"run_ms":24.7,"idle_ms":10.11,"stall_ms":126.26,"io_percent":6.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.85,"run_ms":7.43,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":2.54,"run_ms":14.79,"idle_ms":2.15,"stall_ms":0.0,"io_percent":12.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":10.13,"idle_ms":2.23,"stall_ms":0.0,"io_percent":18.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":42.19,"idle_ms":4.32,"stall_ms":0.01,"io_percent":10.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":39.66,"idle_ms":4.02,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":26.33,"idle_ms":3.07,"stall_ms":0.01,"io_percent":11.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.23,"run_ms":10.4,"idle_ms":1.76,"stall_ms":0.0,"io_percent":14.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.9,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.05,"run_ms":12.98,"idle_ms":2.02,"stall_ms":0.0,"io_percent":13.5,"method":"GET","action":"users#show"} | |
{"gc_ms":1.34,"run_ms":23.37,"idle_ms":10.54,"stall_ms":0.01,"io_percent":31.3,"method":"GET","action":"comments#edit"} | |
{"gc_ms":0.27,"run_ms":6.65,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.78,"idle_ms":1.94,"stall_ms":0.0,"io_percent":14.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":31.4,"idle_ms":3.12,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.9,"idle_ms":10.93,"stall_ms":0.01,"io_percent":31.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.31,"run_ms":26.85,"idle_ms":11.66,"stall_ms":0.01,"io_percent":30.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.34,"run_ms":20.01,"idle_ms":3.72,"stall_ms":0.01,"io_percent":18.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.24,"run_ms":15.96,"idle_ms":13.31,"stall_ms":0.0,"io_percent":45.5,"method":"GET","action":"replies#comments"} | |
{"gc_ms":1.31,"run_ms":37.15,"idle_ms":13.56,"stall_ms":0.11,"io_percent":26.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.09,"run_ms":16.85,"idle_ms":3.01,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.06,"idle_ms":2.21,"stall_ms":0.0,"io_percent":15.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.29,"run_ms":16.61,"idle_ms":2.64,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":38.88,"idle_ms":15.21,"stall_ms":0.01,"io_percent":28.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.22,"run_ms":14.8,"idle_ms":2.69,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.48,"run_ms":32.61,"idle_ms":12.03,"stall_ms":0.01,"io_percent":27.3,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":2.68,"run_ms":40.5,"idle_ms":14.83,"stall_ms":66.86,"io_percent":12.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.52,"run_ms":16.62,"idle_ms":2.9,"stall_ms":0.01,"io_percent":17.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.05,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.4,"method":"HEAD"} | |
{"gc_ms":2.09,"run_ms":31.0,"idle_ms":3.66,"stall_ms":0.01,"io_percent":11.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":4.35,"run_ms":95.82,"idle_ms":48.06,"stall_ms":0.02,"io_percent":37.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.95,"run_ms":95.97,"idle_ms":35.71,"stall_ms":0.02,"io_percent":29.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":41.15,"idle_ms":3.49,"stall_ms":0.33,"io_percent":6.4,"method":"GET","action":"home#index"} | |
{"gc_ms":12.45,"run_ms":109.47,"idle_ms":25.35,"stall_ms":0.02,"io_percent":21.0,"method":"GET","action":"home#top"} | |
{"gc_ms":1.65,"run_ms":20.54,"idle_ms":4.8,"stall_ms":0.01,"io_percent":12.6,"method":"GET","action":"home#index"} | |
{"gc_ms":17.42,"run_ms":124.57,"idle_ms":66.89,"stall_ms":0.02,"io_percent":38.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":8.08,"run_ms":133.52,"idle_ms":98.22,"stall_ms":0.03,"io_percent":50.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.84,"run_ms":102.93,"idle_ms":81.93,"stall_ms":0.02,"io_percent":44.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":20.11,"idle_ms":9.89,"stall_ms":0.01,"io_percent":33.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.14,"run_ms":21.87,"idle_ms":8.91,"stall_ms":0.01,"io_percent":29.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.12,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.5,"idle_ms":1.97,"stall_ms":0.0,"io_percent":17.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.25,"run_ms":16.26,"idle_ms":2.77,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.49,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.31,"run_ms":9.32,"idle_ms":1.83,"stall_ms":0.0,"io_percent":16.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":15.25,"idle_ms":2.96,"stall_ms":0.01,"io_percent":19.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.51,"run_ms":6.05,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":2.27,"run_ms":34.03,"idle_ms":3.52,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.68,"run_ms":8.62,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.65,"run_ms":16.75,"idle_ms":6.02,"stall_ms":0.01,"io_percent":29.5,"method":"HEAD","action":"home#index"} | |
{"gc_ms":1.22,"run_ms":13.48,"idle_ms":1.68,"stall_ms":0.0,"io_percent":11.0,"method":"GET","action":"users#show"} | |
{"gc_ms":7.55,"run_ms":69.47,"idle_ms":254.32,"stall_ms":0.02,"io_percent":78.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.1,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.64,"run_ms":12.07,"idle_ms":2.46,"stall_ms":0.0,"io_percent":17.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.72,"run_ms":11.8,"idle_ms":4.22,"stall_ms":0.0,"io_percent":24.8,"method":"HEAD","action":"users#show"} | |
{"gc_ms":1.51,"run_ms":54.24,"idle_ms":599.3,"stall_ms":0.03,"io_percent":91.8,"method":"POST","action":"comments#create"} | |
{"gc_ms":0.0,"run_ms":16.17,"idle_ms":2.76,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.2,"run_ms":70.61,"idle_ms":320.34,"stall_ms":0.03,"io_percent":82.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.32,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":3.01,"run_ms":33.1,"idle_ms":8.45,"stall_ms":0.01,"io_percent":20.7,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.97,"run_ms":35.24,"idle_ms":23.23,"stall_ms":0.01,"io_percent":39.9,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":98.45,"idle_ms":45.35,"stall_ms":64.54,"io_percent":23.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":6.38,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.85,"run_ms":7.55,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.33,"run_ms":13.22,"idle_ms":1.99,"stall_ms":0.16,"io_percent":13.0,"method":"GET","action":"users#show"} | |
{"gc_ms":2.9,"run_ms":128.15,"idle_ms":34.84,"stall_ms":0.02,"io_percent":24.7,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.63,"run_ms":27.72,"idle_ms":272.72,"stall_ms":0.01,"io_percent":90.8,"method":"PATCH","action":"comments#update"} | |
{"gc_ms":0.88,"run_ms":9.42,"idle_ms":1.52,"stall_ms":0.0,"io_percent":13.9,"method":"GET","action":"users#show"} | |
{"gc_ms":1.13,"run_ms":28.78,"idle_ms":3.58,"stall_ms":0.01,"io_percent":12.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.86,"idle_ms":2.6,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.87,"idle_ms":10.08,"stall_ms":0.01,"io_percent":32.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.83,"run_ms":86.67,"idle_ms":30.23,"stall_ms":0.02,"io_percent":27.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.63,"run_ms":37.14,"idle_ms":15.4,"stall_ms":0.03,"io_percent":29.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.85,"run_ms":42.48,"idle_ms":17.1,"stall_ms":0.02,"io_percent":28.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":22.97,"idle_ms":2.56,"stall_ms":0.01,"io_percent":7.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.91,"idle_ms":2.12,"stall_ms":0.0,"io_percent":17.7,"method":"HEAD","action":"users#show"} | |
{"gc_ms":9.64,"run_ms":67.22,"idle_ms":27.54,"stall_ms":0.02,"io_percent":29.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":13.84,"idle_ms":3.67,"stall_ms":0.01,"io_percent":21.1,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":2.1,"run_ms":33.01,"idle_ms":4.51,"stall_ms":0.01,"io_percent":12.1,"method":"GET","action":"settings#index"} | |
{"gc_ms":0.0,"run_ms":15.23,"idle_ms":2.67,"stall_ms":0.01,"io_percent":15.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.67,"run_ms":16.3,"idle_ms":2.73,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.39,"run_ms":39.89,"idle_ms":16.89,"stall_ms":0.01,"io_percent":30.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.01,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":13.3,"idle_ms":1.53,"stall_ms":0.0,"io_percent":10.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":29.85,"idle_ms":8.08,"stall_ms":0.02,"io_percent":21.7,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":38.32,"idle_ms":13.57,"stall_ms":0.02,"io_percent":26.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.65,"run_ms":16.48,"idle_ms":4.99,"stall_ms":0.01,"io_percent":19.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.63,"idle_ms":19.17,"stall_ms":0.01,"io_percent":46.9,"method":"GET","action":"comments#edit"} | |
{"gc_ms":0.0,"run_ms":36.68,"idle_ms":13.25,"stall_ms":0.01,"io_percent":26.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.72,"run_ms":16.35,"idle_ms":2.77,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":3.84,"run_ms":37.54,"idle_ms":3.09,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.99,"run_ms":26.14,"idle_ms":9.71,"stall_ms":0.01,"io_percent":27.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.72,"idle_ms":0.05,"stall_ms":0.09,"io_percent":0.6,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.63,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.54,"idle_ms":1.8,"stall_ms":0.0,"io_percent":14.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":8.78,"idle_ms":1.74,"stall_ms":0.0,"io_percent":16.6,"method":"GET","action":"users#show"} | |
{"gc_ms":1.06,"run_ms":33.1,"idle_ms":3.44,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":2.32,"run_ms":45.91,"idle_ms":17.03,"stall_ms":0.01,"io_percent":27.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":22.04,"idle_ms":3.85,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.72,"idle_ms":1.97,"stall_ms":0.0,"io_percent":11.1,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.67,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":20.37,"run_ms":285.3,"idle_ms":361.24,"stall_ms":0.03,"io_percent":55.9,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":12.3,"idle_ms":5.7,"stall_ms":0.0,"io_percent":31.9,"method":"GET","action":"users#show"} | |
{"gc_ms":1.43,"run_ms":7.03,"idle_ms":0.17,"stall_ms":106.93,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":2.89,"run_ms":33.21,"idle_ms":3.53,"stall_ms":0.01,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.27,"run_ms":10.47,"idle_ms":3.19,"stall_ms":0.0,"io_percent":23.4,"method":"GET","action":"users#show"} | |
{"gc_ms":2.93,"run_ms":95.63,"idle_ms":70.7,"stall_ms":0.02,"io_percent":48.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.3,"run_ms":66.73,"idle_ms":19.12,"stall_ms":0.01,"io_percent":21.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.63,"run_ms":27.79,"idle_ms":2.96,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":33.08,"idle_ms":16.32,"stall_ms":0.01,"io_percent":33.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.06,"idle_ms":2.78,"stall_ms":0.01,"io_percent":18.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.49,"idle_ms":2.86,"stall_ms":0.01,"io_percent":19.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.41,"idle_ms":2.79,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":99.05,"idle_ms":87.77,"stall_ms":1.28,"io_percent":46.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.28,"run_ms":45.9,"idle_ms":420.91,"stall_ms":0.01,"io_percent":90.2,"method":"GET","action":"comments#index"} | |
{"gc_ms":8.21,"run_ms":115.87,"idle_ms":91.98,"stall_ms":0.02,"io_percent":47.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.97,"run_ms":34.95,"idle_ms":5.64,"stall_ms":0.01,"io_percent":14.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":95.27,"idle_ms":393.17,"stall_ms":0.08,"io_percent":80.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":11.99,"run_ms":74.79,"idle_ms":182.05,"stall_ms":0.02,"io_percent":70.8,"method":"POST","action":"comments#upvote"} | |
{"gc_ms":1.51,"run_ms":43.35,"idle_ms":4.69,"stall_ms":0.01,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":15.17,"run_ms":137.44,"idle_ms":69.05,"stall_ms":0.02,"io_percent":38.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":20.52,"run_ms":125.25,"idle_ms":47.65,"stall_ms":0.03,"io_percent":27.7,"method":"POST","action":"comments#upvote"} | |
{"gc_ms":0.0,"run_ms":75.1,"idle_ms":29.49,"stall_ms":0.02,"io_percent":27.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":39.91,"idle_ms":4.83,"stall_ms":0.01,"io_percent":12.0,"method":"GET","action":"home#index"} | |
{"gc_ms":4.46,"run_ms":103.1,"idle_ms":22.32,"stall_ms":0.03,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.73,"run_ms":20.88,"idle_ms":3.18,"stall_ms":0.01,"io_percent":15.2,"method":"GET","action":"home#index"} | |
{"gc_ms":3.12,"run_ms":54.75,"idle_ms":4.17,"stall_ms":0.01,"io_percent":7.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.45,"run_ms":67.9,"idle_ms":42.68,"stall_ms":0.03,"io_percent":38.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.77,"run_ms":50.95,"idle_ms":18.1,"stall_ms":0.02,"io_percent":26.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.53,"run_ms":19.68,"idle_ms":3.11,"stall_ms":0.01,"io_percent":12.3,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":78.59,"idle_ms":75.34,"stall_ms":0.02,"io_percent":46.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.56,"idle_ms":1.48,"stall_ms":0.0,"io_percent":7.5,"method":"GET","action":"stories#new"} | |
{"gc_ms":1.41,"run_ms":22.17,"idle_ms":3.09,"stall_ms":0.01,"io_percent":13.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.42,"run_ms":41.3,"idle_ms":4.55,"stall_ms":0.01,"io_percent":10.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":8.73,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":36.06,"idle_ms":3.6,"stall_ms":0.77,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.27,"run_ms":12.14,"idle_ms":3.93,"stall_ms":0.08,"io_percent":23.3,"method":"GET","action":"users#show"} | |
{"gc_ms":1.87,"run_ms":40.0,"idle_ms":8.16,"stall_ms":0.09,"io_percent":17.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.8,"idle_ms":4.65,"stall_ms":125.56,"io_percent":3.3,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":9.85,"run_ms":138.66,"idle_ms":53.41,"stall_ms":0.04,"io_percent":26.2,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.98,"run_ms":38.77,"idle_ms":21.45,"stall_ms":0.01,"io_percent":35.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.64,"run_ms":19.36,"idle_ms":2.97,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.69,"run_ms":41.61,"idle_ms":19.67,"stall_ms":0.02,"io_percent":32.3,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":1.19,"run_ms":26.69,"idle_ms":4.16,"stall_ms":0.01,"io_percent":14.2,"method":"GET","action":"home#index"} | |
{"gc_ms":3.93,"run_ms":48.72,"idle_ms":6.43,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":42.21,"idle_ms":3.95,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":34.97,"idle_ms":3.8,"stall_ms":0.01,"io_percent":10.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":32.85,"idle_ms":3.79,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.19,"run_ms":39.87,"idle_ms":16.54,"stall_ms":0.02,"io_percent":29.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.97,"run_ms":47.8,"idle_ms":18.06,"stall_ms":0.02,"io_percent":27.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":12.11,"run_ms":103.15,"idle_ms":109.4,"stall_ms":0.03,"io_percent":51.4,"method":"POST","action":"comments#upvote"} | |
{"gc_ms":1.24,"run_ms":48.01,"idle_ms":19.41,"stall_ms":0.02,"io_percent":27.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.66,"run_ms":48.41,"idle_ms":14.6,"stall_ms":116.09,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":46.94,"idle_ms":4.67,"stall_ms":0.01,"io_percent":7.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.17,"run_ms":27.62,"idle_ms":4.35,"stall_ms":0.01,"io_percent":12.1,"method":"GET","action":"home#index"} | |
{"gc_ms":5.73,"run_ms":30.86,"idle_ms":2.93,"stall_ms":0.01,"io_percent":4.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":39.13,"idle_ms":19.49,"stall_ms":0.01,"io_percent":32.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.47,"run_ms":17.1,"idle_ms":4.84,"stall_ms":0.01,"io_percent":25.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.64,"idle_ms":3.38,"stall_ms":0.24,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.0,"idle_ms":3.01,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":44.9,"idle_ms":15.92,"stall_ms":0.02,"io_percent":26.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":16.74,"run_ms":172.96,"idle_ms":28.51,"stall_ms":0.07,"io_percent":13.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.41,"run_ms":23.27,"idle_ms":3.46,"stall_ms":0.01,"io_percent":12.4,"method":"GET","action":"home#index"} | |
{"gc_ms":9.47,"run_ms":93.38,"idle_ms":43.4,"stall_ms":0.03,"io_percent":29.1,"method":"POST","action":"comments#upvote"} | |
{"gc_ms":0.0,"run_ms":15.49,"idle_ms":2.67,"stall_ms":83.04,"io_percent":2.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.44,"run_ms":106.97,"idle_ms":116.71,"stall_ms":0.02,"io_percent":56.8,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":15.19,"idle_ms":2.79,"stall_ms":0.01,"io_percent":18.3,"method":"GET","action":"home#index"} | |
{"gc_ms":7.17,"run_ms":69.73,"idle_ms":21.19,"stall_ms":0.01,"io_percent":23.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.52,"run_ms":12.69,"idle_ms":1.47,"stall_ms":0.0,"io_percent":8.4,"method":"GET"} | |
{"gc_ms":11.11,"run_ms":62.32,"idle_ms":14.63,"stall_ms":109.37,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":3.6,"run_ms":51.65,"idle_ms":4.0,"stall_ms":0.01,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":3.09,"run_ms":49.93,"idle_ms":5.37,"stall_ms":83.56,"io_percent":4.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.02,"idle_ms":1.17,"stall_ms":0.0,"io_percent":11.5,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":20.92,"idle_ms":13.09,"stall_ms":0.01,"io_percent":38.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.71,"run_ms":114.75,"idle_ms":2739.17,"stall_ms":0.03,"io_percent":96.6,"method":"GET","action":"home#active"} | |
{"gc_ms":1.15,"run_ms":17.24,"idle_ms":3.8,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":33.33,"idle_ms":14.34,"stall_ms":0.01,"io_percent":30.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":8.16,"run_ms":56.08,"idle_ms":300.41,"stall_ms":75.43,"io_percent":70.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.89,"idle_ms":0.04,"stall_ms":0.05,"io_percent":0.6,"method":"GET"} | |
{"gc_ms":1.77,"run_ms":11.59,"idle_ms":3.16,"stall_ms":0.0,"io_percent":21.5,"method":"GET","action":"users#show"} | |
{"gc_ms":2.29,"run_ms":31.02,"idle_ms":17.16,"stall_ms":0.01,"io_percent":35.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.0,"run_ms":100.16,"idle_ms":25.13,"stall_ms":0.02,"io_percent":23.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.35,"run_ms":9.01,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":3.06,"run_ms":39.01,"idle_ms":22.54,"stall_ms":0.01,"io_percent":34.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.24,"run_ms":48.83,"idle_ms":17.56,"stall_ms":0.01,"io_percent":23.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":56.52,"idle_ms":2772.32,"stall_ms":0.02,"io_percent":98.0,"method":"GET","action":"home#active"} | |
{"gc_ms":0.26,"run_ms":10.83,"idle_ms":2.18,"stall_ms":0.0,"io_percent":15.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.87,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":6.85,"run_ms":154.97,"idle_ms":72.46,"stall_ms":0.03,"io_percent":34.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.84,"run_ms":9.67,"idle_ms":1.89,"stall_ms":0.0,"io_percent":16.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.4,"run_ms":14.57,"idle_ms":2.79,"stall_ms":0.01,"io_percent":19.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.32,"run_ms":40.35,"idle_ms":9.84,"stall_ms":0.01,"io_percent":14.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.05,"run_ms":108.79,"idle_ms":33.74,"stall_ms":66.93,"io_percent":18.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.17,"idle_ms":3.55,"stall_ms":0.01,"io_percent":11.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":29.52,"idle_ms":148.96,"stall_ms":0.01,"io_percent":83.5,"method":"POST","action":"comments#upvote"} | |
{"gc_ms":12.18,"run_ms":109.65,"idle_ms":29.48,"stall_ms":0.02,"io_percent":23.7,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":13.78,"idle_ms":6.36,"stall_ms":0.01,"io_percent":32.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.06,"run_ms":32.81,"idle_ms":3.36,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":13.52,"run_ms":55.84,"idle_ms":4.28,"stall_ms":0.01,"io_percent":7.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.85,"run_ms":22.6,"idle_ms":3.0,"stall_ms":0.01,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":4.35,"run_ms":62.01,"idle_ms":59.17,"stall_ms":0.02,"io_percent":49.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.04,"run_ms":17.04,"idle_ms":2.79,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.49,"idle_ms":3.66,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.52,"run_ms":16.75,"idle_ms":3.47,"stall_ms":0.08,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":3.48,"run_ms":35.51,"idle_ms":3.64,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":33.21,"idle_ms":3.65,"stall_ms":0.02,"io_percent":10.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.52,"run_ms":32.4,"idle_ms":14.34,"stall_ms":0.01,"io_percent":30.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.86,"run_ms":37.24,"idle_ms":13.74,"stall_ms":0.01,"io_percent":27.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.82,"run_ms":35.62,"idle_ms":4.36,"stall_ms":0.06,"io_percent":12.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.28,"run_ms":5.57,"idle_ms":0.05,"stall_ms":69.7,"io_percent":0.1,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":102.04,"idle_ms":24.97,"stall_ms":0.02,"io_percent":22.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.43,"run_ms":10.44,"idle_ms":1.12,"stall_ms":0.0,"io_percent":7.8,"method":"GET","action":"search#index"} | |
{"gc_ms":0.66,"run_ms":8.73,"idle_ms":0.1,"stall_ms":0.0,"io_percent":1.1,"method":"GET"} | |
{"gc_ms":2.11,"run_ms":47.85,"idle_ms":4.56,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.31,"run_ms":15.6,"idle_ms":2.03,"stall_ms":0.0,"io_percent":10.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.69,"run_ms":20.31,"idle_ms":3.58,"stall_ms":82.22,"io_percent":3.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.38,"run_ms":8.71,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.1,"run_ms":45.96,"idle_ms":4.15,"stall_ms":0.01,"io_percent":8.9,"method":"GET","action":"home#index"} | |
{"gc_ms":8.72,"run_ms":148.96,"idle_ms":47.79,"stall_ms":0.03,"io_percent":27.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.07,"run_ms":36.44,"idle_ms":3.84,"stall_ms":0.01,"io_percent":10.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":26.92,"idle_ms":45.76,"stall_ms":0.02,"io_percent":63.3,"method":"POST","action":"comments#unvote"} | |
{"gc_ms":0.0,"run_ms":16.04,"idle_ms":2.8,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.43,"run_ms":9.74,"idle_ms":2.7,"stall_ms":0.0,"io_percent":21.5,"method":"GET","action":"users#show"} | |
{"gc_ms":1.62,"run_ms":31.49,"idle_ms":19.16,"stall_ms":0.01,"io_percent":38.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.28,"run_ms":14.84,"idle_ms":2.58,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":7.77,"run_ms":31.39,"idle_ms":11.3,"stall_ms":0.01,"io_percent":26.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.14,"run_ms":10.03,"idle_ms":1.99,"stall_ms":0.0,"io_percent":16.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.39,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.92,"run_ms":14.86,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.95,"idle_ms":1.88,"stall_ms":0.0,"io_percent":16.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":10.86,"idle_ms":2.2,"stall_ms":0.0,"io_percent":17.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":28.94,"idle_ms":3.49,"stall_ms":0.01,"io_percent":11.6,"method":"GET","action":"home#index"} | |
{"gc_ms":2.11,"run_ms":46.51,"idle_ms":37.37,"stall_ms":0.01,"io_percent":44.7,"method":"GET","action":"search#index"} | |
{"gc_ms":0.79,"run_ms":14.87,"idle_ms":2.79,"stall_ms":0.04,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.72,"idle_ms":2.85,"stall_ms":0.01,"io_percent":19.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":37.72,"idle_ms":16.83,"stall_ms":0.01,"io_percent":26.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.37,"run_ms":64.08,"idle_ms":19.65,"stall_ms":0.01,"io_percent":21.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.1,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.47,"run_ms":9.16,"idle_ms":1.93,"stall_ms":0.0,"io_percent":17.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.89,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":1.71,"run_ms":32.19,"idle_ms":3.78,"stall_ms":0.07,"io_percent":11.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.86,"run_ms":10.31,"idle_ms":1.9,"stall_ms":0.0,"io_percent":15.6,"method":"HEAD","action":"users#show"} | |
{"gc_ms":2.61,"run_ms":37.39,"idle_ms":14.72,"stall_ms":0.01,"io_percent":28.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.39,"run_ms":17.27,"idle_ms":2.92,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.2,"run_ms":16.04,"idle_ms":2.86,"stall_ms":0.01,"io_percent":17.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":24.77,"idle_ms":3.61,"stall_ms":0.01,"io_percent":13.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.18,"run_ms":14.34,"idle_ms":2.84,"stall_ms":0.01,"io_percent":19.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.77,"run_ms":48.96,"idle_ms":126.56,"stall_ms":0.01,"io_percent":72.2,"method":"GET","action":"home#index"} | |
{"gc_ms":5.77,"run_ms":35.81,"idle_ms":9.49,"stall_ms":0.01,"io_percent":21.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.52,"run_ms":16.6,"idle_ms":2.74,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.39,"run_ms":15.73,"idle_ms":2.83,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.64,"idle_ms":2.06,"stall_ms":0.0,"io_percent":12.4,"method":"HEAD","action":"users#show"} | |
{"gc_ms":4.89,"run_ms":43.98,"idle_ms":3.18,"stall_ms":0.01,"io_percent":7.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.1,"run_ms":39.31,"idle_ms":16.46,"stall_ms":0.01,"io_percent":29.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.66,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":2.35,"run_ms":62.68,"idle_ms":299.06,"stall_ms":0.03,"io_percent":82.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.83,"run_ms":29.81,"idle_ms":3.47,"stall_ms":0.01,"io_percent":11.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.23,"run_ms":16.87,"idle_ms":2.86,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.51,"run_ms":43.33,"idle_ms":4.35,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.51,"run_ms":104.64,"idle_ms":56.39,"stall_ms":0.02,"io_percent":39.9,"method":"HEAD","action":"home#single_tag"} | |
{"gc_ms":0.33,"run_ms":26.41,"idle_ms":3.7,"stall_ms":0.01,"io_percent":12.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":12.99,"run_ms":132.54,"idle_ms":149.14,"stall_ms":0.2,"io_percent":57.5,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":1.68,"run_ms":69.32,"idle_ms":44.56,"stall_ms":0.01,"io_percent":39.3,"method":"HEAD","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":23.11,"idle_ms":1.32,"stall_ms":0.88,"io_percent":5.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.19,"run_ms":17.52,"idle_ms":2.87,"stall_ms":125.5,"io_percent":2.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":115.49,"idle_ms":437.58,"stall_ms":0.02,"io_percent":82.3,"method":"GET","action":"home#category"} | |
{"gc_ms":0.0,"run_ms":17.63,"idle_ms":3.9,"stall_ms":0.01,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.45,"run_ms":18.19,"idle_ms":4.11,"stall_ms":4.77,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.61,"idle_ms":6.6,"stall_ms":2.65,"io_percent":11.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.18,"run_ms":17.96,"idle_ms":2.86,"stall_ms":0.01,"io_percent":10.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.03,"run_ms":17.29,"idle_ms":2.76,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.22,"run_ms":6.8,"idle_ms":0.74,"stall_ms":150.22,"io_percent":0.5,"method":"GET","action":"stories#new"} | |
{"gc_ms":4.4,"run_ms":124.91,"idle_ms":64.65,"stall_ms":0.03,"io_percent":37.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.27,"run_ms":11.12,"idle_ms":4.33,"stall_ms":0.0,"io_percent":21.5,"method":"GET","action":"users#show"} | |
{"gc_ms":1.24,"run_ms":65.2,"idle_ms":93.25,"stall_ms":0.03,"io_percent":58.3,"method":"GET","action":"search#index"} | |
{"gc_ms":0.26,"run_ms":9.58,"idle_ms":2.04,"stall_ms":0.0,"io_percent":17.6,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":15.24,"idle_ms":2.79,"stall_ms":0.01,"io_percent":18.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":32.16,"idle_ms":3.68,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":49.04,"idle_ms":4.8,"stall_ms":0.02,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.66,"run_ms":30.46,"idle_ms":3.8,"stall_ms":0.01,"io_percent":12.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.3,"run_ms":8.12,"idle_ms":0.05,"stall_ms":75.45,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.48,"idle_ms":2.88,"stall_ms":0.01,"io_percent":18.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.1,"idle_ms":3.45,"stall_ms":0.25,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.36,"idle_ms":3.91,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.52,"run_ms":33.67,"idle_ms":3.56,"stall_ms":75.29,"io_percent":3.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.0,"run_ms":27.43,"idle_ms":13.48,"stall_ms":0.01,"io_percent":24.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":23.87,"idle_ms":13.47,"stall_ms":0.01,"io_percent":33.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":12.26,"run_ms":43.27,"idle_ms":3.68,"stall_ms":0.01,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.97,"run_ms":23.31,"idle_ms":9.36,"stall_ms":0.01,"io_percent":28.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.07,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.32,"idle_ms":1.95,"stall_ms":0.0,"io_percent":17.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.87,"run_ms":6.71,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.01,"idle_ms":1.97,"stall_ms":0.0,"io_percent":15.2,"method":"GET","action":"users#show"} | |
{"gc_ms":1.79,"run_ms":11.24,"idle_ms":1.92,"stall_ms":73.43,"io_percent":2.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":25.81,"idle_ms":3.11,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":15.41,"idle_ms":3.22,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.62,"run_ms":13.96,"idle_ms":3.18,"stall_ms":0.1,"io_percent":18.5,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":11.71,"run_ms":51.45,"idle_ms":4.68,"stall_ms":0.01,"io_percent":8.8,"method":"GET","action":"home#index"} | |
{"gc_ms":3.56,"run_ms":29.18,"idle_ms":3.32,"stall_ms":0.01,"io_percent":10.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":87.78,"idle_ms":67.5,"stall_ms":5.37,"io_percent":42.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":16.23,"idle_ms":3.01,"stall_ms":0.01,"io_percent":12.6,"method":"GET","action":"home#index"} | |
{"gc_ms":5.82,"run_ms":126.69,"idle_ms":54.93,"stall_ms":0.02,"io_percent":35.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":4.53,"run_ms":97.72,"idle_ms":40.04,"stall_ms":0.01,"io_percent":31.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":5.42,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":32.95,"idle_ms":9.38,"stall_ms":0.01,"io_percent":22.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.24,"run_ms":10.92,"idle_ms":2.25,"stall_ms":0.0,"io_percent":17.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":47.98,"idle_ms":3.84,"stall_ms":0.01,"io_percent":8.0,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":20.15,"idle_ms":8.89,"stall_ms":0.01,"io_percent":30.9,"method":"GET","action":"comments#edit"} | |
{"gc_ms":0.0,"run_ms":31.83,"idle_ms":4.31,"stall_ms":0.01,"io_percent":12.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.37,"run_ms":20.34,"idle_ms":2.89,"stall_ms":0.01,"io_percent":13.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.24,"idle_ms":2.7,"stall_ms":0.01,"io_percent":19.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":26.1,"idle_ms":9.72,"stall_ms":0.01,"io_percent":27.4,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":25.65,"idle_ms":10.94,"stall_ms":0.01,"io_percent":30.2,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":9.38,"run_ms":54.94,"idle_ms":16.79,"stall_ms":0.02,"io_percent":23.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.37,"run_ms":11.09,"idle_ms":0.77,"stall_ms":0.0,"io_percent":5.5,"method":"GET"} | |
{"gc_ms":0.25,"run_ms":15.81,"idle_ms":2.78,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.15,"run_ms":99.45,"idle_ms":37.3,"stall_ms":0.2,"io_percent":26.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":12.69,"run_ms":112.54,"idle_ms":51.39,"stall_ms":0.02,"io_percent":32.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.99,"run_ms":100.36,"idle_ms":113.43,"stall_ms":126.57,"io_percent":34.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":14.32,"idle_ms":2.7,"stall_ms":0.11,"io_percent":18.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":63.42,"idle_ms":102.11,"stall_ms":0.08,"io_percent":61.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":27.12,"idle_ms":8.32,"stall_ms":0.01,"io_percent":23.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":11.27,"idle_ms":0.7,"stall_ms":0.0,"io_percent":5.9,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":19.27,"idle_ms":3.57,"stall_ms":0.01,"io_percent":18.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":27.82,"idle_ms":2.31,"stall_ms":0.01,"io_percent":8.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.24,"run_ms":102.21,"idle_ms":117.71,"stall_ms":0.01,"io_percent":54.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":14.71,"run_ms":111.45,"idle_ms":55.53,"stall_ms":0.02,"io_percent":34.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":15.18,"run_ms":114.83,"idle_ms":139.92,"stall_ms":0.02,"io_percent":59.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.22,"run_ms":21.67,"idle_ms":3.66,"stall_ms":0.04,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.75,"run_ms":18.12,"idle_ms":5.49,"stall_ms":0.01,"io_percent":25.3,"method":"GET","action":"home#index"} | |
{"gc_ms":2.18,"run_ms":50.0,"idle_ms":15.86,"stall_ms":0.01,"io_percent":24.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.57,"run_ms":42.64,"idle_ms":5.73,"stall_ms":3.06,"io_percent":7.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.39,"run_ms":119.77,"idle_ms":45.05,"stall_ms":0.11,"io_percent":27.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":30.85,"idle_ms":8.29,"stall_ms":0.01,"io_percent":12.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.25,"run_ms":2.42,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.93,"run_ms":4.3,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":2.46,"run_ms":104.56,"idle_ms":59.55,"stall_ms":0.03,"io_percent":34.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":5.0,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":130.57,"idle_ms":94.42,"stall_ms":112.02,"io_percent":27.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.3,"run_ms":19.42,"idle_ms":2.94,"stall_ms":0.01,"io_percent":12.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.34,"run_ms":7.98,"idle_ms":0.64,"stall_ms":0.0,"io_percent":7.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":36.2,"idle_ms":16.65,"stall_ms":0.01,"io_percent":31.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":28.65,"idle_ms":3.38,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.63,"run_ms":32.71,"idle_ms":12.47,"stall_ms":0.01,"io_percent":27.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":22.9,"idle_ms":2.72,"stall_ms":0.01,"io_percent":6.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.24,"run_ms":19.27,"idle_ms":8.03,"stall_ms":0.01,"io_percent":29.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.52,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.21,"run_ms":9.74,"idle_ms":2.0,"stall_ms":0.0,"io_percent":17.1,"method":"GET","action":"users#show"} | |
{"gc_ms":1.01,"run_ms":31.12,"idle_ms":3.9,"stall_ms":0.01,"io_percent":12.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.6,"idle_ms":0.74,"stall_ms":71.1,"io_percent":1.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":17.39,"idle_ms":2.95,"stall_ms":0.32,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":8.72,"run_ms":27.49,"idle_ms":139.71,"stall_ms":0.01,"io_percent":83.7,"method":"GET","action":"comments#reply"} | |
{"gc_ms":0.21,"run_ms":10.0,"idle_ms":171.16,"stall_ms":0.0,"io_percent":94.6,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":14.41,"idle_ms":2.69,"stall_ms":0.04,"io_percent":18.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.48,"run_ms":36.6,"idle_ms":13.34,"stall_ms":0.01,"io_percent":27.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.6,"run_ms":17.67,"idle_ms":2.97,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.09,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":54.65,"idle_ms":25.35,"stall_ms":0.02,"io_percent":31.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.11,"idle_ms":1.62,"stall_ms":0.0,"io_percent":15.2,"method":"GET","action":"users#show"} | |
{"gc_ms":2.66,"run_ms":44.06,"idle_ms":4.13,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.34,"run_ms":30.88,"idle_ms":3.31,"stall_ms":0.01,"io_percent":10.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.4,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.28,"run_ms":8.72,"idle_ms":1.42,"stall_ms":0.0,"io_percent":13.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":31.46,"idle_ms":4.03,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":29.38,"idle_ms":3.44,"stall_ms":0.01,"io_percent":11.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.76,"run_ms":16.4,"idle_ms":2.85,"stall_ms":0.04,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.94,"idle_ms":0.06,"stall_ms":75.21,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.0,"idle_ms":1.45,"stall_ms":0.0,"io_percent":11.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.41,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.34,"idle_ms":1.31,"stall_ms":0.0,"io_percent":11.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":50.59,"idle_ms":16.88,"stall_ms":0.02,"io_percent":25.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":8.43,"run_ms":37.56,"idle_ms":3.29,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":8.0,"run_ms":44.56,"idle_ms":13.18,"stall_ms":0.22,"io_percent":23.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.07,"run_ms":71.2,"idle_ms":8.53,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":96.93,"idle_ms":32.66,"stall_ms":0.02,"io_percent":28.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":19.16,"run_ms":155.7,"idle_ms":159.73,"stall_ms":0.02,"io_percent":53.8,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":16.35,"idle_ms":7.35,"stall_ms":0.01,"io_percent":31.2,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.0,"run_ms":19.79,"idle_ms":3.69,"stall_ms":0.09,"io_percent":18.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.71,"run_ms":15.17,"idle_ms":2.76,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":109.39,"idle_ms":270.71,"stall_ms":0.03,"io_percent":71.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":56.17,"idle_ms":413.92,"stall_ms":0.02,"io_percent":87.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":19.77,"idle_ms":3.78,"stall_ms":0.01,"io_percent":19.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":33.73,"idle_ms":3.7,"stall_ms":0.06,"io_percent":10.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":30.14,"idle_ms":3.5,"stall_ms":0.01,"io_percent":11.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.99,"idle_ms":12.6,"stall_ms":0.01,"io_percent":30.6,"method":"GET","action":"comments#index"} | |
{"gc_ms":6.79,"run_ms":47.53,"idle_ms":14.89,"stall_ms":0.03,"io_percent":20.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.1,"run_ms":46.58,"idle_ms":15.2,"stall_ms":0.01,"io_percent":20.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.58,"run_ms":41.29,"idle_ms":15.77,"stall_ms":0.01,"io_percent":27.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.23,"run_ms":15.42,"idle_ms":2.6,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.57,"run_ms":16.64,"idle_ms":2.83,"stall_ms":0.16,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.64,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.79,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.84,"run_ms":11.25,"idle_ms":1.66,"stall_ms":0.0,"io_percent":12.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.29,"run_ms":12.28,"idle_ms":1.87,"stall_ms":0.0,"io_percent":13.3,"method":"GET","action":"users#show"} | |
{"gc_ms":3.71,"run_ms":56.29,"idle_ms":34.41,"stall_ms":0.12,"io_percent":38.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.91,"run_ms":30.01,"idle_ms":3.52,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.21,"run_ms":5.23,"idle_ms":0.05,"stall_ms":65.66,"io_percent":0.1,"method":"HEAD"} | |
{"gc_ms":0.86,"run_ms":7.15,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.28,"run_ms":9.32,"idle_ms":4.23,"stall_ms":0.0,"io_percent":31.4,"method":"GET","action":"users#show"} | |
{"gc_ms":4.91,"run_ms":97.24,"idle_ms":66.72,"stall_ms":0.02,"io_percent":44.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.59,"run_ms":9.41,"idle_ms":1.9,"stall_ms":0.0,"io_percent":16.8,"method":"HEAD","action":"users#show"} | |
{"gc_ms":1.56,"run_ms":87.39,"idle_ms":95.92,"stall_ms":0.04,"io_percent":52.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":43.0,"idle_ms":18.82,"stall_ms":0.02,"io_percent":30.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.23,"run_ms":16.47,"idle_ms":2.85,"stall_ms":0.01,"io_percent":17.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.57,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.63,"idle_ms":1.88,"stall_ms":0.0,"io_percent":12.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.82,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":51.57,"idle_ms":4.04,"stall_ms":0.01,"io_percent":7.7,"method":"GET","action":"home#index"} | |
{"gc_ms":8.19,"run_ms":16.37,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.44,"run_ms":12.17,"idle_ms":2.09,"stall_ms":0.0,"io_percent":14.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.99,"run_ms":6.78,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.42,"idle_ms":1.9,"stall_ms":0.0,"io_percent":11.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.63,"run_ms":37.86,"idle_ms":15.4,"stall_ms":0.01,"io_percent":29.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.72,"run_ms":11.48,"idle_ms":2.75,"stall_ms":0.0,"io_percent":19.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.01,"run_ms":19.19,"idle_ms":3.15,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.09,"run_ms":21.93,"idle_ms":2.79,"stall_ms":0.01,"io_percent":12.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.35,"run_ms":22.96,"idle_ms":3.48,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.55,"run_ms":71.08,"idle_ms":26.7,"stall_ms":0.02,"io_percent":26.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.18,"run_ms":82.33,"idle_ms":37.08,"stall_ms":96.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.2,"run_ms":9.17,"idle_ms":0.8,"stall_ms":0.0,"io_percent":8.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.11,"idle_ms":0.65,"stall_ms":0.0,"io_percent":5.6,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":31.33,"idle_ms":3.71,"stall_ms":0.01,"io_percent":11.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":33.94,"idle_ms":3.33,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.46,"run_ms":18.96,"idle_ms":3.0,"stall_ms":0.01,"io_percent":15.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.76,"idle_ms":3.47,"stall_ms":0.0,"io_percent":15.5,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":16.95,"idle_ms":2.82,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":6.79,"run_ms":21.56,"idle_ms":2.62,"stall_ms":0.01,"io_percent":12.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":76.52,"idle_ms":525.91,"stall_ms":0.02,"io_percent":87.3,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.4,"run_ms":23.68,"idle_ms":7.36,"stall_ms":0.01,"io_percent":24.1,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.0,"run_ms":13.86,"idle_ms":1.98,"stall_ms":0.0,"io_percent":12.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.96,"run_ms":15.51,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.23,"run_ms":9.89,"idle_ms":1.92,"stall_ms":0.0,"io_percent":16.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":18.98,"idle_ms":2.88,"stall_ms":0.01,"io_percent":14.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.79,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":0.39,"run_ms":12.17,"idle_ms":2.33,"stall_ms":0.0,"io_percent":16.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":127.85,"idle_ms":77.58,"stall_ms":0.03,"io_percent":43.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.49,"run_ms":15.57,"idle_ms":2.58,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":34.13,"idle_ms":9.08,"stall_ms":0.01,"io_percent":21.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.5,"run_ms":88.99,"idle_ms":70.95,"stall_ms":0.01,"io_percent":45.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.41,"run_ms":115.25,"idle_ms":632.93,"stall_ms":0.3,"io_percent":84.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.97,"run_ms":41.68,"idle_ms":15.63,"stall_ms":102.99,"io_percent":10.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.18,"run_ms":38.29,"idle_ms":10.88,"stall_ms":0.01,"io_percent":22.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.67,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":13.52,"run_ms":132.02,"idle_ms":31.2,"stall_ms":0.02,"io_percent":21.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":14.9,"idle_ms":2.78,"stall_ms":0.01,"io_percent":18.6,"method":"GET","action":"home#index"} | |
{"gc_ms":3.63,"run_ms":79.69,"idle_ms":18.03,"stall_ms":0.15,"io_percent":18.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":29.03,"idle_ms":14.51,"stall_ms":0.01,"io_percent":31.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.21,"run_ms":15.57,"idle_ms":2.76,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":141.06,"idle_ms":36.47,"stall_ms":0.15,"io_percent":24.0,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.26,"run_ms":8.28,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.26,"run_ms":11.63,"idle_ms":1.87,"stall_ms":0.0,"io_percent":13.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.32,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.44,"run_ms":29.77,"idle_ms":3.42,"stall_ms":0.01,"io_percent":11.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.29,"idle_ms":2.7,"stall_ms":0.01,"io_percent":18.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.09,"idle_ms":1.68,"stall_ms":0.0,"io_percent":15.7,"method":"GET","action":"users#show"} | |
{"gc_ms":2.68,"run_ms":129.15,"idle_ms":26.95,"stall_ms":0.08,"io_percent":17.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.72,"run_ms":17.02,"idle_ms":2.79,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.12,"run_ms":11.93,"idle_ms":2.97,"stall_ms":0.0,"io_percent":20.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.77,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":2.17,"run_ms":32.44,"idle_ms":3.92,"stall_ms":0.01,"io_percent":11.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.29,"idle_ms":2.75,"stall_ms":0.01,"io_percent":19.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.28,"idle_ms":2.76,"stall_ms":0.01,"io_percent":19.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.17,"idle_ms":0.04,"stall_ms":103.73,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.62,"idle_ms":1.87,"stall_ms":0.0,"io_percent":17.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.96,"run_ms":38.12,"idle_ms":14.64,"stall_ms":0.01,"io_percent":27.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":102.31,"idle_ms":116.75,"stall_ms":0.02,"io_percent":58.1,"method":"GET","action":"home#category"} | |
{"gc_ms":0.0,"run_ms":7.61,"idle_ms":0.89,"stall_ms":0.0,"io_percent":10.5,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":5.95,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":2.19,"run_ms":99.47,"idle_ms":54.23,"stall_ms":0.02,"io_percent":40.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":6.06,"idle_ms":0.67,"stall_ms":0.0,"io_percent":10.0,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":17.25,"idle_ms":3.17,"stall_ms":77.97,"io_percent":3.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.7,"run_ms":10.57,"idle_ms":2.07,"stall_ms":0.0,"io_percent":16.3,"method":"GET","action":"users#show"} | |
{"gc_ms":2.27,"run_ms":18.31,"idle_ms":2.85,"stall_ms":0.01,"io_percent":15.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.34,"idle_ms":0.78,"stall_ms":0.0,"io_percent":7.7,"method":"GET","action":"login#index"} | |
{"gc_ms":9.59,"run_ms":42.53,"idle_ms":3.57,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":4.04,"run_ms":28.53,"idle_ms":3.06,"stall_ms":120.05,"io_percent":2.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":92.77,"idle_ms":58.4,"stall_ms":0.02,"io_percent":42.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":7.12,"run_ms":108.63,"idle_ms":94.07,"stall_ms":71.57,"io_percent":37.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.15,"run_ms":23.23,"idle_ms":11.38,"stall_ms":67.18,"io_percent":11.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.66,"run_ms":100.8,"idle_ms":33.3,"stall_ms":0.02,"io_percent":30.9,"method":"GET","action":"home#index"} | |
{"gc_ms":7.54,"run_ms":15.25,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.83,"run_ms":11.29,"idle_ms":1.68,"stall_ms":0.0,"io_percent":13.0,"method":"GET","action":"users#show"} | |
{"gc_ms":2.16,"run_ms":115.7,"idle_ms":151.5,"stall_ms":92.76,"io_percent":45.7,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":54.23,"idle_ms":436.36,"stall_ms":0.02,"io_percent":89.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.79,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.38,"idle_ms":1.64,"stall_ms":0.0,"io_percent":14.9,"method":"GET","action":"users#show"} | |
{"gc_ms":7.73,"run_ms":30.72,"idle_ms":11.09,"stall_ms":0.01,"io_percent":26.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.02,"idle_ms":2.8,"stall_ms":0.01,"io_percent":18.5,"method":"GET","action":"home#index"} | |
{"gc_ms":3.48,"run_ms":35.58,"idle_ms":3.44,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.62,"run_ms":87.09,"idle_ms":36.93,"stall_ms":0.02,"io_percent":32.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.88,"run_ms":10.16,"idle_ms":0.69,"stall_ms":0.0,"io_percent":6.4,"method":"GET","action":"login#index"} | |
{"gc_ms":21.98,"run_ms":38.89,"idle_ms":3.95,"stall_ms":0.07,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.61,"run_ms":53.46,"idle_ms":143.89,"stall_ms":0.01,"io_percent":72.9,"method":"GET","action":"home#index"} | |
{"gc_ms":21.4,"run_ms":39.61,"idle_ms":2.73,"stall_ms":0.01,"io_percent":6.9,"method":"GET","action":"home#index"} | |
{"gc_ms":5.26,"run_ms":13.18,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.21,"run_ms":9.93,"idle_ms":1.77,"stall_ms":0.0,"io_percent":15.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.15,"run_ms":8.39,"idle_ms":2.66,"stall_ms":0.0,"io_percent":24.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":40.03,"idle_ms":15.63,"stall_ms":0.01,"io_percent":27.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.91,"run_ms":31.33,"idle_ms":3.67,"stall_ms":0.01,"io_percent":11.4,"method":"GET","action":"home#index"} | |
{"gc_ms":16.95,"run_ms":37.32,"idle_ms":3.61,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#index"} | |
{"gc_ms":7.69,"run_ms":18.37,"idle_ms":0.81,"stall_ms":0.0,"io_percent":4.3,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":53.47,"idle_ms":19.79,"stall_ms":0.02,"io_percent":27.3,"method":"GET","action":"comments#index"} | |
{"gc_ms":5.31,"run_ms":12.32,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":4.38,"run_ms":11.67,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":24.6,"idle_ms":5.29,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":43.22,"idle_ms":5.01,"stall_ms":0.21,"io_percent":11.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":138.93,"idle_ms":90.33,"stall_ms":0.06,"io_percent":40.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":14.18,"run_ms":136.74,"idle_ms":78.42,"stall_ms":0.03,"io_percent":39.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":9.0,"run_ms":30.75,"idle_ms":3.57,"stall_ms":0.01,"io_percent":10.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.58,"run_ms":136.81,"idle_ms":144.53,"stall_ms":0.02,"io_percent":50.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":22.37,"run_ms":203.93,"idle_ms":140.88,"stall_ms":0.04,"io_percent":43.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":12.65,"idle_ms":2.81,"stall_ms":0.0,"io_percent":18.3,"method":"GET","action":"users#show"} | |
{"gc_ms":6.79,"run_ms":17.85,"idle_ms":1.57,"stall_ms":0.0,"io_percent":8.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.18,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":7.98,"run_ms":33.18,"idle_ms":17.44,"stall_ms":0.01,"io_percent":34.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.1,"run_ms":67.1,"idle_ms":221.45,"stall_ms":0.03,"io_percent":77.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.44,"run_ms":10.62,"idle_ms":2.24,"stall_ms":0.0,"io_percent":17.4,"method":"GET","action":"users#show"} | |
{"gc_ms":6.79,"run_ms":24.43,"idle_ms":2.91,"stall_ms":0.01,"io_percent":11.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.7,"run_ms":17.45,"idle_ms":2.84,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.85,"run_ms":19.97,"idle_ms":2.95,"stall_ms":0.01,"io_percent":14.5,"method":"GET","action":"home#index"} | |
{"gc_ms":4.11,"run_ms":39.9,"idle_ms":3.64,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.52,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.44,"idle_ms":2.05,"stall_ms":0.0,"io_percent":15.3,"method":"GET","action":"users#show"} | |
{"gc_ms":5.96,"run_ms":130.42,"idle_ms":31.3,"stall_ms":0.36,"io_percent":20.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":27.18,"idle_ms":8.02,"stall_ms":95.75,"io_percent":6.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.64,"run_ms":42.87,"idle_ms":5.06,"stall_ms":0.01,"io_percent":10.9,"method":"GET","action":"home#index"} | |
{"gc_ms":6.24,"run_ms":130.8,"idle_ms":94.16,"stall_ms":0.03,"io_percent":43.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.32,"run_ms":17.0,"idle_ms":2.88,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":8.49,"run_ms":144.62,"idle_ms":142.44,"stall_ms":0.03,"io_percent":54.0,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":1.94,"run_ms":36.94,"idle_ms":4.86,"stall_ms":0.01,"io_percent":12.4,"method":"GET","action":"home#newest"} | |
{"gc_ms":1.48,"run_ms":44.98,"idle_ms":8.46,"stall_ms":0.02,"io_percent":15.9,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.97,"run_ms":21.79,"idle_ms":3.34,"stall_ms":0.01,"io_percent":10.6,"method":"GET","action":"home#index"} | |
{"gc_ms":2.13,"run_ms":21.74,"idle_ms":3.4,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":3.99,"run_ms":74.28,"idle_ms":14.47,"stall_ms":0.02,"io_percent":16.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.08,"run_ms":6.14,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":5.53,"run_ms":162.4,"idle_ms":61.49,"stall_ms":0.03,"io_percent":29.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.14,"run_ms":13.5,"idle_ms":4.16,"stall_ms":0.0,"io_percent":23.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":40.71,"idle_ms":59.53,"stall_ms":0.08,"io_percent":59.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.4,"run_ms":36.94,"idle_ms":3.89,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":31.45,"idle_ms":411.15,"stall_ms":102.87,"io_percent":75.9,"method":"PATCH","action":"comments#update"} | |
{"gc_ms":1.38,"run_ms":47.09,"idle_ms":4.11,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":29.42,"idle_ms":9.7,"stall_ms":0.01,"io_percent":24.2,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.95,"run_ms":39.31,"idle_ms":6.38,"stall_ms":0.01,"io_percent":13.9,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.67,"run_ms":27.04,"idle_ms":13.24,"stall_ms":0.01,"io_percent":25.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.01,"run_ms":153.0,"idle_ms":896.85,"stall_ms":0.03,"io_percent":87.0,"method":"GET","action":"home#recent"} | |
{"gc_ms":1.49,"run_ms":18.65,"idle_ms":4.17,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":40.8,"idle_ms":14.57,"stall_ms":0.01,"io_percent":26.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.33,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":11.19,"idle_ms":5.08,"stall_ms":0.0,"io_percent":31.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.84,"idle_ms":1.74,"stall_ms":0.0,"io_percent":15.1,"method":"HEAD","action":"users#show"} | |
{"gc_ms":1.02,"run_ms":29.33,"idle_ms":3.82,"stall_ms":0.01,"io_percent":12.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.39,"idle_ms":3.5,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":133.34,"idle_ms":137.02,"stall_ms":0.03,"io_percent":55.4,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":20.45,"idle_ms":9.78,"stall_ms":0.01,"io_percent":32.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":30.55,"idle_ms":21.41,"stall_ms":0.01,"io_percent":41.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.2,"run_ms":30.39,"idle_ms":8.8,"stall_ms":0.01,"io_percent":22.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.8,"run_ms":26.34,"idle_ms":3.46,"stall_ms":0.01,"io_percent":13.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":64.63,"idle_ms":13.14,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.14,"run_ms":19.35,"idle_ms":4.03,"stall_ms":0.01,"io_percent":20.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":48.78,"idle_ms":36.24,"stall_ms":0.02,"io_percent":42.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.92,"idle_ms":2.87,"stall_ms":0.01,"io_percent":19.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.15,"run_ms":28.73,"idle_ms":3.91,"stall_ms":0.01,"io_percent":13.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":5.08,"run_ms":102.98,"idle_ms":96.98,"stall_ms":0.02,"io_percent":54.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":5.79,"run_ms":108.62,"idle_ms":152.71,"stall_ms":0.11,"io_percent":62.9,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":1.14,"run_ms":22.35,"idle_ms":9.82,"stall_ms":0.01,"io_percent":28.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.46,"run_ms":106.01,"idle_ms":70.63,"stall_ms":0.02,"io_percent":38.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.92,"run_ms":29.54,"idle_ms":4.01,"stall_ms":0.01,"io_percent":12.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":2.1,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":1.95,"run_ms":88.65,"idle_ms":39.75,"stall_ms":0.01,"io_percent":33.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.43,"run_ms":14.31,"idle_ms":2.79,"stall_ms":0.03,"io_percent":19.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":1.9,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":41.53,"run_ms":203.07,"idle_ms":121.2,"stall_ms":0.04,"io_percent":47.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":2.14,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":12.33,"run_ms":124.01,"idle_ms":30.97,"stall_ms":0.15,"io_percent":22.7,"method":"GET","action":"home#top"} | |
{"gc_ms":0.25,"run_ms":2.34,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":8.81,"run_ms":101.99,"idle_ms":18.84,"stall_ms":0.01,"io_percent":15.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":11.79,"idle_ms":8.85,"stall_ms":0.0,"io_percent":43.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":9.14,"run_ms":105.67,"idle_ms":84.79,"stall_ms":0.02,"io_percent":49.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":10.08,"run_ms":46.6,"idle_ms":109.67,"stall_ms":0.01,"io_percent":70.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":39.14,"run_ms":74.12,"idle_ms":3.23,"stall_ms":0.01,"io_percent":4.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.66,"idle_ms":3.21,"stall_ms":0.0,"io_percent":21.8,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":1.01,"run_ms":12.85,"idle_ms":5.81,"stall_ms":0.0,"io_percent":31.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.3,"run_ms":39.82,"idle_ms":45.17,"stall_ms":0.01,"io_percent":53.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.99,"run_ms":22.1,"idle_ms":9.54,"stall_ms":0.01,"io_percent":30.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.66,"run_ms":30.65,"idle_ms":1.93,"stall_ms":0.0,"io_percent":6.3,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":6.23,"idle_ms":0.63,"stall_ms":0.0,"io_percent":9.0,"method":"GET","action":"stories#new"} | |
{"gc_ms":6.8,"run_ms":16.33,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":2.85,"run_ms":45.03,"idle_ms":17.77,"stall_ms":0.01,"io_percent":27.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.85,"run_ms":10.73,"idle_ms":3.13,"stall_ms":0.0,"io_percent":15.2,"method":"GET","action":"login#index"} | |
{"gc_ms":0.46,"run_ms":11.52,"idle_ms":1.7,"stall_ms":0.0,"io_percent":9.4,"method":"GET","action":"users#show"} | |
{"gc_ms":22.13,"run_ms":124.07,"idle_ms":55.51,"stall_ms":0.07,"io_percent":32.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.36,"run_ms":27.47,"idle_ms":6.0,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.33,"run_ms":39.3,"idle_ms":13.42,"stall_ms":0.01,"io_percent":25.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.85,"run_ms":15.65,"idle_ms":2.7,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.22,"run_ms":10.88,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.16,"idle_ms":1.65,"stall_ms":0.0,"io_percent":9.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.55,"run_ms":18.34,"idle_ms":2.91,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.82,"run_ms":18.92,"idle_ms":3.27,"stall_ms":0.01,"io_percent":12.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.66,"run_ms":17.99,"idle_ms":3.83,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.35,"run_ms":20.8,"idle_ms":3.22,"stall_ms":71.11,"io_percent":3.7,"method":"GET","action":"home#index"} | |
{"gc_ms":3.51,"run_ms":38.16,"idle_ms":3.82,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"home#index"} | |
{"gc_ms":2.9,"run_ms":66.29,"idle_ms":15.82,"stall_ms":0.01,"io_percent":19.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.42,"run_ms":26.66,"idle_ms":14.97,"stall_ms":0.01,"io_percent":36.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.25,"run_ms":15.64,"idle_ms":2.77,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":40.8,"idle_ms":10.06,"stall_ms":0.01,"io_percent":20.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.55,"run_ms":42.59,"idle_ms":12.87,"stall_ms":0.09,"io_percent":23.6,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":43.66,"idle_ms":4.14,"stall_ms":0.09,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.16,"run_ms":23.78,"idle_ms":10.59,"stall_ms":0.01,"io_percent":29.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.4,"run_ms":6.55,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":1.09,"run_ms":13.97,"idle_ms":2.5,"stall_ms":0.0,"io_percent":14.8,"method":"GET","action":"users#show"} | |
{"gc_ms":4.07,"run_ms":71.0,"idle_ms":232.85,"stall_ms":0.02,"io_percent":76.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.82,"run_ms":25.27,"idle_ms":12.35,"stall_ms":0.01,"io_percent":33.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.25,"run_ms":8.6,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.8,"run_ms":10.54,"idle_ms":1.9,"stall_ms":0.0,"io_percent":15.3,"method":"GET","action":"users#show"} | |
{"gc_ms":1.35,"run_ms":38.29,"idle_ms":11.04,"stall_ms":0.01,"io_percent":22.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.41,"run_ms":7.28,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.3,"run_ms":21.93,"idle_ms":6.58,"stall_ms":0.0,"io_percent":15.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.74,"run_ms":93.92,"idle_ms":646.13,"stall_ms":0.03,"io_percent":87.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.29,"run_ms":16.32,"idle_ms":4.88,"stall_ms":0.01,"io_percent":26.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.4,"run_ms":27.74,"idle_ms":7.06,"stall_ms":79.34,"io_percent":6.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.51,"idle_ms":4.21,"stall_ms":0.01,"io_percent":25.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.08,"idle_ms":2.34,"stall_ms":0.0,"io_percent":20.7,"method":"GET","action":"users#show"} | |
{"gc_ms":1.79,"run_ms":17.04,"idle_ms":2.66,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.13,"idle_ms":6.13,"stall_ms":0.01,"io_percent":24.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":60.39,"idle_ms":7.97,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":8.4,"run_ms":47.15,"idle_ms":15.24,"stall_ms":0.02,"io_percent":23.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.55,"run_ms":29.19,"idle_ms":7.57,"stall_ms":0.01,"io_percent":20.6,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":1.59,"run_ms":26.3,"idle_ms":9.19,"stall_ms":0.01,"io_percent":24.6,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.56,"run_ms":30.66,"idle_ms":9.2,"stall_ms":0.02,"io_percent":23.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.54,"run_ms":30.27,"idle_ms":9.87,"stall_ms":0.01,"io_percent":24.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.99,"run_ms":30.45,"idle_ms":3.41,"stall_ms":0.01,"io_percent":10.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.51,"run_ms":13.1,"idle_ms":4.12,"stall_ms":0.0,"io_percent":24.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.37,"run_ms":5.72,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.26,"run_ms":16.48,"idle_ms":2.96,"stall_ms":0.01,"io_percent":17.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":102.32,"idle_ms":56.6,"stall_ms":0.02,"io_percent":40.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.28,"run_ms":15.95,"idle_ms":3.88,"stall_ms":0.01,"io_percent":18.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":34.44,"idle_ms":16.12,"stall_ms":0.01,"io_percent":29.9,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":0.0,"run_ms":11.62,"idle_ms":5.52,"stall_ms":0.0,"io_percent":32.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":55.87,"idle_ms":93.54,"stall_ms":0.01,"io_percent":62.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.48,"run_ms":34.02,"idle_ms":3.39,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.64,"run_ms":16.98,"idle_ms":2.81,"stall_ms":0.04,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.27,"run_ms":10.49,"idle_ms":1.83,"stall_ms":0.0,"io_percent":14.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.5,"run_ms":29.07,"idle_ms":17.39,"stall_ms":0.01,"io_percent":37.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":21.44,"idle_ms":12.99,"stall_ms":0.01,"io_percent":38.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":35.2,"idle_ms":3.73,"stall_ms":0.01,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.5,"run_ms":51.63,"idle_ms":259.67,"stall_ms":0.01,"io_percent":83.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":29.78,"idle_ms":14.15,"stall_ms":0.01,"io_percent":32.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":58.14,"run_ms":169.61,"idle_ms":91.43,"stall_ms":0.11,"io_percent":39.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":12.43,"idle_ms":5.65,"stall_ms":0.0,"io_percent":31.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":30.63,"idle_ms":3.55,"stall_ms":0.01,"io_percent":11.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.6,"run_ms":16.23,"idle_ms":3.17,"stall_ms":0.01,"io_percent":19.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":25.23,"idle_ms":11.64,"stall_ms":76.77,"io_percent":10.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":32.59,"idle_ms":14.77,"stall_ms":0.01,"io_percent":30.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.69,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.73,"run_ms":24.44,"idle_ms":4.72,"stall_ms":0.08,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.22,"run_ms":12.18,"idle_ms":2.5,"stall_ms":0.0,"io_percent":13.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":19.43,"idle_ms":11.72,"stall_ms":72.34,"io_percent":11.7,"method":"GET","action":"comments#edit"} | |
{"gc_ms":0.0,"run_ms":58.98,"idle_ms":263.43,"stall_ms":0.04,"io_percent":81.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.61,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.22,"run_ms":10.86,"idle_ms":2.16,"stall_ms":0.0,"io_percent":15.9,"method":"GET","action":"users#show"} | |
{"gc_ms":1.43,"run_ms":37.3,"idle_ms":3.75,"stall_ms":0.07,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":30.38,"idle_ms":10.05,"stall_ms":0.02,"io_percent":25.3,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":4.77,"run_ms":25.35,"idle_ms":11.69,"stall_ms":0.01,"io_percent":31.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":38.11,"idle_ms":7.77,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.49,"run_ms":82.01,"idle_ms":34.53,"stall_ms":0.02,"io_percent":33.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":67.99,"idle_ms":216.05,"stall_ms":0.03,"io_percent":76.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.21,"run_ms":66.37,"idle_ms":59.77,"stall_ms":0.02,"io_percent":47.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.96,"idle_ms":2.58,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":29.17,"idle_ms":3.32,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":6.42,"run_ms":34.86,"idle_ms":11.44,"stall_ms":0.01,"io_percent":24.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.04,"run_ms":37.61,"idle_ms":3.39,"stall_ms":0.01,"io_percent":8.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.55,"run_ms":9.98,"idle_ms":1.94,"stall_ms":0.0,"io_percent":16.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.61,"run_ms":15.93,"idle_ms":2.84,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.26,"run_ms":33.82,"idle_ms":14.67,"stall_ms":0.01,"io_percent":30.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":4.76,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":1.52,"run_ms":17.43,"idle_ms":2.82,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.98,"run_ms":26.19,"idle_ms":13.08,"stall_ms":69.86,"io_percent":12.4,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.75,"run_ms":10.0,"idle_ms":1.75,"stall_ms":0.0,"io_percent":14.9,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.71,"run_ms":23.79,"idle_ms":3.59,"stall_ms":0.14,"io_percent":14.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.66,"run_ms":17.61,"idle_ms":5.83,"stall_ms":79.55,"io_percent":6.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":25.62,"idle_ms":7.68,"stall_ms":0.01,"io_percent":23.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.48,"run_ms":39.28,"idle_ms":16.65,"stall_ms":0.01,"io_percent":29.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.84,"run_ms":17.49,"idle_ms":2.97,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.65,"idle_ms":4.46,"stall_ms":0.0,"io_percent":28.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.32,"idle_ms":2.77,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":15.78,"idle_ms":3.13,"stall_ms":0.01,"io_percent":19.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.9,"idle_ms":3.28,"stall_ms":0.01,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":5.28,"run_ms":12.98,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":94.17,"idle_ms":30.51,"stall_ms":0.08,"io_percent":24.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":16.04,"idle_ms":2.87,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.24,"run_ms":9.1,"idle_ms":2.03,"stall_ms":0.0,"io_percent":18.3,"method":"GET","action":"users#show"} | |
{"gc_ms":1.88,"run_ms":15.51,"idle_ms":6.32,"stall_ms":0.0,"io_percent":29.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.81,"run_ms":27.44,"idle_ms":10.21,"stall_ms":0.01,"io_percent":26.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.92,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.81,"run_ms":12.11,"idle_ms":1.79,"stall_ms":0.0,"io_percent":12.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":106.08,"idle_ms":34.6,"stall_ms":0.02,"io_percent":26.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.73,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.2,"run_ms":6.64,"idle_ms":0.71,"stall_ms":0.0,"io_percent":9.3,"method":"GET","action":"stories#new"} | |
{"gc_ms":1.36,"run_ms":20.06,"idle_ms":8.8,"stall_ms":0.01,"io_percent":30.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.27,"run_ms":6.28,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.48,"run_ms":11.07,"idle_ms":1.62,"stall_ms":0.0,"io_percent":12.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.16,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":1.36,"run_ms":10.45,"idle_ms":1.43,"stall_ms":0.0,"io_percent":12.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.62,"run_ms":15.04,"idle_ms":2.79,"stall_ms":0.01,"io_percent":18.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.27,"run_ms":16.38,"idle_ms":3.47,"stall_ms":0.01,"io_percent":17.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.83,"run_ms":30.0,"idle_ms":14.27,"stall_ms":0.01,"io_percent":31.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.23,"run_ms":28.82,"idle_ms":8.4,"stall_ms":0.01,"io_percent":21.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.35,"run_ms":35.28,"idle_ms":3.54,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.45,"run_ms":34.96,"idle_ms":12.91,"stall_ms":0.01,"io_percent":26.2,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":2.26,"run_ms":61.13,"idle_ms":14.98,"stall_ms":0.01,"io_percent":19.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.38,"idle_ms":2.06,"stall_ms":0.0,"io_percent":19.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":9.4,"idle_ms":0.8,"stall_ms":0.0,"io_percent":7.8,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":6.01,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.4,"idle_ms":1.86,"stall_ms":0.0,"io_percent":18.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":14.16,"idle_ms":2.66,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.79,"run_ms":6.65,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.57,"run_ms":8.83,"idle_ms":1.84,"stall_ms":0.0,"io_percent":17.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.64,"run_ms":15.08,"idle_ms":3.02,"stall_ms":0.01,"io_percent":20.0,"method":"GET","action":"home#index"} | |
{"gc_ms":4.27,"run_ms":94.49,"idle_ms":54.35,"stall_ms":0.02,"io_percent":38.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":6.37,"idle_ms":0.05,"stall_ms":68.05,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.14,"idle_ms":1.46,"stall_ms":0.0,"io_percent":12.7,"method":"GET","action":"users#show"} | |
{"gc_ms":2.39,"run_ms":108.18,"idle_ms":36.82,"stall_ms":0.02,"io_percent":30.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":97.49,"idle_ms":105.76,"stall_ms":0.03,"io_percent":51.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":30.99,"idle_ms":3.13,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.44,"run_ms":5.55,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":50.16,"run_ms":88.4,"idle_ms":2.49,"stall_ms":0.11,"io_percent":2.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":15.54,"idle_ms":2.84,"stall_ms":2.31,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.8,"idle_ms":7.65,"stall_ms":0.1,"io_percent":26.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.69,"run_ms":6.93,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.29,"run_ms":10.71,"idle_ms":1.71,"stall_ms":79.13,"io_percent":1.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":53.05,"idle_ms":182.99,"stall_ms":0.02,"io_percent":77.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.71,"run_ms":10.96,"idle_ms":1.78,"stall_ms":0.0,"io_percent":14.1,"method":"GET","action":"users#show"} | |
{"gc_ms":7.78,"run_ms":38.43,"idle_ms":3.52,"stall_ms":0.11,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":4.98,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":4.39,"run_ms":62.15,"idle_ms":147.36,"stall_ms":0.01,"io_percent":70.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.53,"run_ms":10.65,"idle_ms":1.85,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"users#show"} | |
{"gc_ms":9.64,"run_ms":35.42,"idle_ms":4.91,"stall_ms":0.01,"io_percent":12.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":6.37,"run_ms":112.53,"idle_ms":40.31,"stall_ms":0.02,"io_percent":29.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":42.18,"idle_ms":4.12,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.07,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.15,"run_ms":11.17,"idle_ms":1.59,"stall_ms":0.0,"io_percent":12.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.71,"run_ms":5.7,"idle_ms":0.04,"stall_ms":95.43,"io_percent":0.0,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":5.59,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.69,"run_ms":18.12,"idle_ms":2.8,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.77,"run_ms":10.35,"idle_ms":2.71,"stall_ms":0.0,"io_percent":20.9,"method":"HEAD","action":"users#show"} | |
{"gc_ms":2.71,"run_ms":119.58,"idle_ms":30.5,"stall_ms":0.03,"io_percent":22.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.83,"run_ms":37.66,"idle_ms":10.62,"stall_ms":0.01,"io_percent":22.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":39.79,"idle_ms":4.11,"stall_ms":0.01,"io_percent":10.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.67,"run_ms":20.38,"idle_ms":3.13,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.4,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.66,"run_ms":11.13,"idle_ms":1.57,"stall_ms":0.0,"io_percent":12.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.91,"run_ms":20.64,"idle_ms":2.92,"stall_ms":0.01,"io_percent":14.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":53.96,"idle_ms":377.7,"stall_ms":0.02,"io_percent":87.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.22,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.02,"run_ms":29.59,"idle_ms":3.31,"stall_ms":0.01,"io_percent":10.9,"method":"GET","action":"home#index"} | |
{"gc_ms":5.67,"run_ms":126.73,"idle_ms":28.45,"stall_ms":0.02,"io_percent":19.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":9.62,"idle_ms":1.69,"stall_ms":0.0,"io_percent":15.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.7,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.07,"run_ms":104.74,"idle_ms":95.53,"stall_ms":0.03,"io_percent":53.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":8.35,"idle_ms":1.65,"stall_ms":0.0,"io_percent":16.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.19,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.7,"run_ms":10.49,"idle_ms":1.73,"stall_ms":0.0,"io_percent":14.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":12.12,"idle_ms":0.33,"stall_ms":93.25,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.49,"idle_ms":0.03,"stall_ms":0.05,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.26,"idle_ms":4.29,"stall_ms":0.0,"io_percent":38.2,"method":"GET"} | |
{"gc_ms":0.48,"run_ms":9.31,"idle_ms":2.15,"stall_ms":64.94,"io_percent":2.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.4,"run_ms":17.9,"idle_ms":8.85,"stall_ms":143.42,"io_percent":5.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.24,"run_ms":9.09,"idle_ms":1.84,"stall_ms":0.0,"io_percent":16.9,"method":"GET","action":"users#show"} | |
{"gc_ms":1.64,"run_ms":92.97,"idle_ms":67.89,"stall_ms":0.02,"io_percent":47.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":29.22,"idle_ms":13.63,"stall_ms":0.01,"io_percent":31.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.55,"run_ms":28.74,"idle_ms":14.17,"stall_ms":0.01,"io_percent":33.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.85,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.22,"idle_ms":1.9,"stall_ms":0.0,"io_percent":17.2,"method":"GET","action":"users#show"} | |
{"gc_ms":7.13,"run_ms":65.14,"idle_ms":170.43,"stall_ms":0.02,"io_percent":72.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.7,"run_ms":37.97,"idle_ms":11.14,"stall_ms":0.01,"io_percent":22.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.82,"run_ms":6.87,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.82,"run_ms":10.22,"idle_ms":1.42,"stall_ms":0.0,"io_percent":12.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.23,"run_ms":5.46,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.33,"run_ms":11.07,"idle_ms":1.98,"stall_ms":0.0,"io_percent":15.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.45,"run_ms":6.0,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":1.44,"run_ms":10.43,"idle_ms":1.74,"stall_ms":0.0,"io_percent":14.3,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.19,"run_ms":5.22,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.3,"run_ms":9.06,"idle_ms":1.99,"stall_ms":0.0,"io_percent":18.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.51,"run_ms":14.86,"idle_ms":2.6,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.32,"run_ms":35.79,"idle_ms":3.55,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.77,"idle_ms":1.74,"stall_ms":0.0,"io_percent":15.2,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.52,"run_ms":6.63,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.38,"run_ms":9.75,"idle_ms":1.94,"stall_ms":0.0,"io_percent":16.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.09,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":3.25,"run_ms":52.4,"idle_ms":5.12,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.52,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.55,"idle_ms":1.58,"stall_ms":0.0,"io_percent":14.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.32,"run_ms":9.84,"idle_ms":1.99,"stall_ms":0.0,"io_percent":16.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.38,"run_ms":17.01,"idle_ms":3.02,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.24,"run_ms":11.25,"idle_ms":3.14,"stall_ms":0.11,"io_percent":21.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":22.86,"idle_ms":12.66,"stall_ms":0.01,"io_percent":36.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.15,"run_ms":59.08,"idle_ms":204.94,"stall_ms":0.02,"io_percent":77.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":19.79,"idle_ms":6.46,"stall_ms":0.01,"io_percent":24.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.15,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":5.86,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.69,"idle_ms":2.25,"stall_ms":0.0,"io_percent":16.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":9.32,"idle_ms":1.92,"stall_ms":0.0,"io_percent":17.2,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.74,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.85,"idle_ms":1.87,"stall_ms":0.0,"io_percent":17.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":30.96,"idle_ms":3.33,"stall_ms":0.01,"io_percent":10.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":34.26,"idle_ms":10.07,"stall_ms":0.01,"io_percent":23.3,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":5.39,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.63,"idle_ms":1.55,"stall_ms":0.0,"io_percent":15.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.72,"run_ms":21.92,"idle_ms":9.41,"stall_ms":0.01,"io_percent":30.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.66,"run_ms":36.64,"idle_ms":4.24,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":2.47,"idle_ms":7.38,"stall_ms":0.0,"io_percent":75.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.22,"idle_ms":9.57,"stall_ms":0.01,"io_percent":41.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.71,"run_ms":13.94,"idle_ms":15.34,"stall_ms":0.01,"io_percent":50.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.22,"run_ms":28.32,"idle_ms":16.38,"stall_ms":0.01,"io_percent":33.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":2.4,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.2,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.24,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":23.14,"idle_ms":25.57,"stall_ms":3.34,"io_percent":48.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":1.96,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.08,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.32,"idle_ms":3.96,"stall_ms":0.0,"io_percent":60.9,"method":"GET"} | |
{"gc_ms":0.65,"run_ms":32.03,"idle_ms":16.36,"stall_ms":1.39,"io_percent":29.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":2.71,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":20.73,"idle_ms":219.67,"stall_ms":0.01,"io_percent":91.2,"method":"POST","action":"comments#create"} | |
{"gc_ms":0.0,"run_ms":2.1,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.56,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.13,"idle_ms":1.64,"stall_ms":0.0,"io_percent":35.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.32,"idle_ms":4.06,"stall_ms":0.0,"io_percent":63.8,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.28,"idle_ms":4.51,"stall_ms":0.0,"io_percent":65.6,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.56,"idle_ms":3.42,"stall_ms":0.0,"io_percent":57.6,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.26,"idle_ms":8.84,"stall_ms":0.0,"io_percent":56.7,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.21,"idle_ms":1.4,"stall_ms":0.0,"io_percent":38.6,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.41,"idle_ms":5.23,"stall_ms":0.96,"io_percent":49.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":1.95,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":4.35,"idle_ms":1.3,"stall_ms":0.0,"io_percent":9.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.15,"idle_ms":3.31,"stall_ms":0.0,"io_percent":60.9,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.5,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":1.87,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.52,"idle_ms":5.02,"stall_ms":0.0,"io_percent":39.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.6,"idle_ms":6.98,"stall_ms":2.84,"io_percent":52.6,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.21,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":1.82,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.29,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.33,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":1.79,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.2,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.46,"idle_ms":9.95,"stall_ms":8.92,"io_percent":43.6,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":5.5,"idle_ms":1.15,"stall_ms":0.38,"io_percent":13.2,"method":"GET"} | |
{"gc_ms":0.6,"run_ms":4.3,"idle_ms":2.57,"stall_ms":2.88,"io_percent":16.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":5.94,"idle_ms":4.4,"stall_ms":0.0,"io_percent":28.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":4.47,"idle_ms":7.79,"stall_ms":1.84,"io_percent":35.5,"method":"GET"} | |
{"gc_ms":0.6,"run_ms":2.56,"idle_ms":11.77,"stall_ms":12.67,"io_percent":39.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.37,"idle_ms":13.12,"stall_ms":0.03,"io_percent":64.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.79,"idle_ms":7.91,"stall_ms":9.23,"io_percent":29.7,"method":"GET"} | |
{"gc_ms":0.6,"run_ms":3.2,"idle_ms":14.53,"stall_ms":14.69,"io_percent":42.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":4.0,"idle_ms":20.25,"stall_ms":14.2,"io_percent":51.8,"method":"GET"} | |
{"gc_ms":0.52,"run_ms":3.75,"idle_ms":24.56,"stall_ms":8.48,"io_percent":62.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.1,"idle_ms":19.66,"stall_ms":5.3,"io_percent":67.8,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.91,"idle_ms":21.44,"stall_ms":0.01,"io_percent":75.7,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":4.6,"idle_ms":24.36,"stall_ms":10.65,"io_percent":54.7,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.33,"idle_ms":32.09,"stall_ms":13.42,"io_percent":61.5,"method":"GET"} | |
{"gc_ms":0.56,"run_ms":9.87,"idle_ms":1.68,"stall_ms":0.0,"io_percent":14.5,"method":"GET","action":"users#show"} | |
{"gc_ms":6.01,"run_ms":38.09,"idle_ms":14.01,"stall_ms":0.01,"io_percent":26.9,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.53,"run_ms":9.54,"idle_ms":0.64,"stall_ms":0.0,"io_percent":6.3,"method":"GET"} | |
{"gc_ms":0.48,"run_ms":16.41,"idle_ms":2.79,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.47,"idle_ms":1.89,"stall_ms":0.0,"io_percent":14.0,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.58,"run_ms":28.12,"idle_ms":12.48,"stall_ms":0.01,"io_percent":29.8,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":0.0,"run_ms":6.0,"idle_ms":1.14,"stall_ms":68.4,"io_percent":1.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.1,"idle_ms":1.68,"stall_ms":0.0,"io_percent":14.3,"method":"GET","action":"users#show"} | |
{"gc_ms":11.13,"run_ms":129.99,"idle_ms":157.56,"stall_ms":0.02,"io_percent":58.7,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.56,"run_ms":16.89,"idle_ms":2.86,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":4.62,"run_ms":39.37,"idle_ms":3.74,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":93.69,"idle_ms":110.31,"stall_ms":0.02,"io_percent":59.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.43,"run_ms":16.86,"idle_ms":2.85,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.43,"run_ms":6.95,"idle_ms":0.03,"stall_ms":66.94,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.64,"run_ms":11.07,"idle_ms":1.27,"stall_ms":0.0,"io_percent":10.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.91,"run_ms":26.82,"idle_ms":13.99,"stall_ms":0.01,"io_percent":34.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.53,"run_ms":6.5,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":128.56,"idle_ms":39.92,"stall_ms":0.03,"io_percent":29.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.07,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.49,"run_ms":9.5,"idle_ms":1.81,"stall_ms":0.0,"io_percent":16.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.35,"run_ms":8.91,"idle_ms":1.67,"stall_ms":0.0,"io_percent":15.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":14.66,"idle_ms":2.76,"stall_ms":0.01,"io_percent":18.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.05,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.04,"run_ms":9.89,"idle_ms":1.67,"stall_ms":0.0,"io_percent":14.4,"method":"GET","action":"users#show"} | |
{"gc_ms":8.32,"run_ms":39.05,"idle_ms":3.28,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":39.93,"idle_ms":23.17,"stall_ms":0.01,"io_percent":36.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.25,"run_ms":32.96,"idle_ms":4.71,"stall_ms":72.12,"io_percent":4.5,"method":"GET","action":"home#index"} | |
{"gc_ms":8.75,"run_ms":39.34,"idle_ms":3.2,"stall_ms":0.01,"io_percent":8.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.98,"run_ms":33.61,"idle_ms":3.45,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.25,"run_ms":12.32,"idle_ms":3.06,"stall_ms":0.0,"io_percent":20.0,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":2.31,"run_ms":32.41,"idle_ms":3.59,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.74,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":62.52,"idle_ms":34.85,"stall_ms":0.03,"io_percent":35.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.32,"run_ms":9.26,"idle_ms":1.46,"stall_ms":69.24,"io_percent":1.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":27.28,"idle_ms":3.26,"stall_ms":0.01,"io_percent":11.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.7,"idle_ms":3.21,"stall_ms":0.32,"io_percent":21.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.18,"run_ms":16.63,"idle_ms":3.66,"stall_ms":0.01,"io_percent":18.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":45.53,"idle_ms":18.18,"stall_ms":0.02,"io_percent":28.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":116.92,"idle_ms":40.72,"stall_ms":0.02,"io_percent":28.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.64,"run_ms":25.14,"idle_ms":8.08,"stall_ms":0.01,"io_percent":23.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.77,"run_ms":11.0,"idle_ms":2.11,"stall_ms":0.16,"io_percent":15.3,"method":"GET","action":"users#show"} | |
{"gc_ms":3.11,"run_ms":52.31,"idle_ms":4.42,"stall_ms":0.01,"io_percent":8.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.5,"run_ms":8.06,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.83,"run_ms":12.72,"idle_ms":1.36,"stall_ms":0.0,"io_percent":9.7,"method":"GET","action":"users#show"} | |
{"gc_ms":39.89,"run_ms":353.88,"idle_ms":37.45,"stall_ms":0.02,"io_percent":9.5,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.61,"run_ms":12.25,"idle_ms":0.77,"stall_ms":0.0,"io_percent":5.9,"method":"GET"} | |
{"gc_ms":1.04,"run_ms":19.92,"idle_ms":0.69,"stall_ms":0.0,"io_percent":2.2,"method":"GET"} | |
{"gc_ms":0.4,"run_ms":18.94,"idle_ms":3.54,"stall_ms":0.01,"io_percent":18.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.23,"run_ms":30.22,"idle_ms":58.96,"stall_ms":0.02,"io_percent":65.5,"method":"POST","action":"stories#upvote"} | |
{"gc_ms":1.31,"run_ms":38.09,"idle_ms":16.7,"stall_ms":0.07,"io_percent":30.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.08,"run_ms":39.12,"idle_ms":15.99,"stall_ms":0.01,"io_percent":29.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.62,"run_ms":48.63,"idle_ms":17.38,"stall_ms":0.02,"io_percent":26.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.43,"run_ms":7.58,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.46,"run_ms":29.49,"idle_ms":14.0,"stall_ms":0.01,"io_percent":32.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.64,"run_ms":65.45,"idle_ms":19.93,"stall_ms":0.01,"io_percent":23.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.4,"run_ms":10.05,"idle_ms":1.66,"stall_ms":0.0,"io_percent":14.2,"method":"GET","action":"users#show"} | |
{"gc_ms":1.99,"run_ms":26.14,"idle_ms":2.11,"stall_ms":0.14,"io_percent":7.9,"method":"GET","action":"home#top"} | |
{"gc_ms":0.16,"run_ms":6.96,"idle_ms":0.09,"stall_ms":0.0,"io_percent":1.0,"method":"GET"} | |
{"gc_ms":0.25,"run_ms":10.32,"idle_ms":1.64,"stall_ms":0.0,"io_percent":13.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.24,"run_ms":17.38,"idle_ms":3.09,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.72,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.8,"run_ms":21.71,"idle_ms":8.81,"stall_ms":0.01,"io_percent":26.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.47,"run_ms":4.9,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":29.93,"idle_ms":4.25,"stall_ms":0.01,"io_percent":12.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.54,"idle_ms":4.4,"stall_ms":0.01,"io_percent":12.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":143.77,"idle_ms":112.49,"stall_ms":0.03,"io_percent":48.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":18.78,"idle_ms":6.07,"stall_ms":0.01,"io_percent":24.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.32,"run_ms":18.17,"idle_ms":4.0,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.85,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.8,"run_ms":13.65,"idle_ms":1.43,"stall_ms":0.0,"io_percent":9.5,"method":"GET","action":"users#show"} | |
{"gc_ms":6.14,"run_ms":5.91,"idle_ms":0.04,"stall_ms":124.06,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":22.15,"idle_ms":10.53,"stall_ms":0.01,"io_percent":29.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.96,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.88,"idle_ms":1.45,"stall_ms":0.0,"io_percent":12.9,"method":"GET","action":"users#show"} | |
{"gc_ms":2.79,"run_ms":28.29,"idle_ms":9.35,"stall_ms":71.82,"io_percent":8.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.27,"run_ms":5.01,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":22.93,"idle_ms":3.9,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.5,"run_ms":21.12,"idle_ms":10.33,"stall_ms":0.01,"io_percent":33.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.0,"idle_ms":0.05,"stall_ms":71.83,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.69,"run_ms":36.55,"idle_ms":13.04,"stall_ms":69.83,"io_percent":11.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.98,"run_ms":53.41,"idle_ms":4.73,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.24,"run_ms":9.25,"idle_ms":2.09,"stall_ms":0.0,"io_percent":18.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.36,"run_ms":23.93,"idle_ms":3.94,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.18,"run_ms":6.94,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":36.28,"idle_ms":15.74,"stall_ms":0.01,"io_percent":29.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.23,"run_ms":9.46,"idle_ms":1.85,"stall_ms":0.0,"io_percent":15.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.07,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.49,"run_ms":22.29,"idle_ms":8.66,"stall_ms":0.09,"io_percent":25.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":9.02,"idle_ms":2.19,"stall_ms":0.0,"io_percent":19.6,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.57,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.54,"run_ms":16.68,"idle_ms":2.88,"stall_ms":0.0,"io_percent":10.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.6,"run_ms":110.94,"idle_ms":45.54,"stall_ms":0.03,"io_percent":34.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":30.92,"idle_ms":10.94,"stall_ms":0.01,"io_percent":26.7,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":12.76,"run_ms":74.64,"idle_ms":21.67,"stall_ms":0.02,"io_percent":22.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.43,"run_ms":36.63,"idle_ms":15.38,"stall_ms":0.01,"io_percent":29.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.25,"run_ms":22.38,"idle_ms":9.41,"stall_ms":0.01,"io_percent":28.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.61,"run_ms":16.21,"idle_ms":2.72,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.63,"run_ms":32.45,"idle_ms":14.45,"stall_ms":0.01,"io_percent":31.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":97.9,"idle_ms":59.65,"stall_ms":0.02,"io_percent":42.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.77,"run_ms":37.25,"idle_ms":9.64,"stall_ms":0.01,"io_percent":20.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.49,"idle_ms":2.78,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":30.72,"idle_ms":10.29,"stall_ms":0.01,"io_percent":24.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.52,"idle_ms":9.74,"stall_ms":0.01,"io_percent":34.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.53,"run_ms":22.28,"idle_ms":8.46,"stall_ms":0.01,"io_percent":27.9,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":8.42,"idle_ms":0.69,"stall_ms":0.0,"io_percent":6.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":18.82,"idle_ms":3.07,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.11,"run_ms":8.82,"idle_ms":0.73,"stall_ms":0.0,"io_percent":7.7,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":4.85,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.55,"run_ms":24.57,"idle_ms":6.63,"stall_ms":0.01,"io_percent":20.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.85,"run_ms":11.54,"idle_ms":1.9,"stall_ms":0.05,"io_percent":14.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.49,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.12,"run_ms":34.39,"idle_ms":11.49,"stall_ms":0.01,"io_percent":24.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.47,"run_ms":28.68,"idle_ms":9.1,"stall_ms":0.01,"io_percent":24.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.82,"run_ms":14.94,"idle_ms":1.76,"stall_ms":0.0,"io_percent":10.6,"method":"GET","action":"users#show"} | |
{"gc_ms":1.1,"run_ms":16.91,"idle_ms":2.96,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.59,"run_ms":25.69,"idle_ms":12.47,"stall_ms":0.01,"io_percent":32.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.89,"run_ms":41.81,"idle_ms":233.16,"stall_ms":0.03,"io_percent":85.1,"method":"POST","action":"comments#create"} | |
{"gc_ms":3.32,"run_ms":32.03,"idle_ms":4.2,"stall_ms":0.01,"io_percent":11.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.44,"run_ms":15.71,"idle_ms":2.84,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.66,"run_ms":21.85,"idle_ms":3.55,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.04,"run_ms":32.02,"idle_ms":3.87,"stall_ms":0.01,"io_percent":11.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.24,"run_ms":34.25,"idle_ms":3.57,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.92,"idle_ms":2.64,"stall_ms":76.97,"io_percent":2.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":18.96,"idle_ms":3.14,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.33,"idle_ms":9.98,"stall_ms":0.01,"io_percent":30.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":31.22,"idle_ms":13.31,"stall_ms":0.01,"io_percent":30.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.95,"run_ms":29.11,"idle_ms":10.2,"stall_ms":0.01,"io_percent":26.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.75,"idle_ms":2.74,"stall_ms":0.01,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.22,"run_ms":7.78,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":6.39,"run_ms":100.51,"idle_ms":57.78,"stall_ms":0.02,"io_percent":41.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":4.87,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.73,"run_ms":6.97,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.26,"run_ms":19.07,"idle_ms":9.27,"stall_ms":0.01,"io_percent":32.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":26.6,"idle_ms":2.77,"stall_ms":0.01,"io_percent":10.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":10.68,"idle_ms":2.14,"stall_ms":0.0,"io_percent":16.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":10.86,"idle_ms":1.04,"stall_ms":0.0,"io_percent":8.6,"method":"GET","action":"login#index"} | |
{"gc_ms":1.99,"run_ms":33.67,"idle_ms":3.38,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.33,"run_ms":35.98,"idle_ms":3.6,"stall_ms":0.04,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":6.45,"run_ms":23.43,"idle_ms":2.86,"stall_ms":0.01,"io_percent":12.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.12,"run_ms":19.19,"idle_ms":2.83,"stall_ms":0.01,"io_percent":14.6,"method":"GET","action":"home#index"} | |
{"gc_ms":4.42,"run_ms":53.66,"idle_ms":29.34,"stall_ms":0.02,"io_percent":35.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.95,"run_ms":21.71,"idle_ms":3.42,"stall_ms":141.28,"io_percent":2.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.16,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.31,"run_ms":11.65,"idle_ms":2.41,"stall_ms":0.0,"io_percent":17.2,"method":"GET","action":"users#show"} | |
{"gc_ms":2.27,"run_ms":40.53,"idle_ms":4.02,"stall_ms":0.43,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":3.86,"run_ms":40.92,"idle_ms":3.67,"stall_ms":0.01,"io_percent":8.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.61,"run_ms":37.43,"idle_ms":3.02,"stall_ms":0.71,"io_percent":7.7,"method":"HEAD","action":"home#single_tag"} | |
{"gc_ms":0.47,"run_ms":14.27,"idle_ms":4.16,"stall_ms":0.0,"io_percent":21.5,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.98,"run_ms":46.41,"idle_ms":3.36,"stall_ms":0.08,"io_percent":7.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.67,"run_ms":162.56,"idle_ms":73.35,"stall_ms":0.04,"io_percent":35.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.7,"run_ms":43.94,"idle_ms":19.9,"stall_ms":102.64,"io_percent":12.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":197.0,"idle_ms":38.69,"stall_ms":0.03,"io_percent":17.7,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":7.2,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":9.5,"run_ms":30.09,"idle_ms":4.09,"stall_ms":0.01,"io_percent":13.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.16,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":22.52,"run_ms":48.37,"idle_ms":5.18,"stall_ms":0.2,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.25,"idle_ms":3.02,"stall_ms":0.0,"io_percent":19.9,"method":"GET","action":"users#show"} | |
{"gc_ms":6.68,"run_ms":138.83,"idle_ms":36.46,"stall_ms":0.76,"io_percent":21.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":5.38,"run_ms":62.23,"idle_ms":4.79,"stall_ms":0.04,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":39.32,"idle_ms":12.49,"stall_ms":0.01,"io_percent":24.3,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":12.56,"idle_ms":2.18,"stall_ms":0.0,"io_percent":12.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":48.02,"idle_ms":6.56,"stall_ms":0.01,"io_percent":12.9,"method":"GET","action":"home#index"} | |
{"gc_ms":17.78,"run_ms":36.04,"idle_ms":2.86,"stall_ms":0.01,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.38,"run_ms":29.79,"idle_ms":213.65,"stall_ms":0.02,"io_percent":87.9,"method":"PATCH","action":"comments#update"} | |
{"gc_ms":0.0,"run_ms":6.01,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.42,"run_ms":10.46,"idle_ms":2.44,"stall_ms":0.0,"io_percent":19.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.77,"run_ms":31.77,"idle_ms":3.44,"stall_ms":0.01,"io_percent":10.6,"method":"GET","action":"home#index"} | |
{"gc_ms":5.42,"run_ms":93.01,"idle_ms":33.69,"stall_ms":0.04,"io_percent":26.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":45.97,"idle_ms":16.82,"stall_ms":0.01,"io_percent":27.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":31.65,"idle_ms":13.2,"stall_ms":0.01,"io_percent":29.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":35.53,"idle_ms":12.94,"stall_ms":0.01,"io_percent":26.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.38,"run_ms":32.58,"idle_ms":3.48,"stall_ms":94.89,"io_percent":2.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":19.84,"idle_ms":4.09,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.92,"run_ms":26.4,"idle_ms":13.75,"stall_ms":0.01,"io_percent":33.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":30.04,"idle_ms":3.36,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":13.28,"run_ms":138.41,"idle_ms":90.57,"stall_ms":0.08,"io_percent":41.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.13,"run_ms":22.17,"idle_ms":13.24,"stall_ms":0.01,"io_percent":36.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.73,"run_ms":31.0,"idle_ms":9.96,"stall_ms":0.01,"io_percent":24.0,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.0,"run_ms":127.01,"idle_ms":42.12,"stall_ms":0.09,"io_percent":28.6,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":40.77,"idle_ms":17.56,"stall_ms":0.01,"io_percent":30.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.97,"run_ms":41.96,"idle_ms":4.19,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":23.42,"idle_ms":11.48,"stall_ms":0.01,"io_percent":33.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":21.08,"idle_ms":4.81,"stall_ms":0.01,"io_percent":21.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.06,"run_ms":21.29,"idle_ms":6.75,"stall_ms":0.01,"io_percent":27.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":39.93,"idle_ms":29.78,"stall_ms":90.44,"io_percent":19.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.82,"run_ms":37.75,"idle_ms":3.97,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":3.93,"run_ms":64.07,"idle_ms":20.35,"stall_ms":0.02,"io_percent":23.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.4,"run_ms":10.99,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":43.66,"idle_ms":11.84,"stall_ms":0.01,"io_percent":21.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.44,"run_ms":16.77,"idle_ms":2.96,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.2,"run_ms":9.21,"idle_ms":2.42,"stall_ms":0.0,"io_percent":20.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.68,"run_ms":20.76,"idle_ms":3.57,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.57,"run_ms":7.8,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.46,"run_ms":17.02,"idle_ms":2.8,"stall_ms":1.24,"io_percent":13.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.26,"run_ms":21.11,"idle_ms":3.6,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.93,"run_ms":8.92,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":1.0,"run_ms":38.4,"idle_ms":16.46,"stall_ms":0.02,"io_percent":30.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.47,"run_ms":117.14,"idle_ms":2521.78,"stall_ms":0.02,"io_percent":96.2,"method":"GET","action":"home#active"} | |
{"gc_ms":0.47,"run_ms":9.84,"idle_ms":1.79,"stall_ms":0.0,"io_percent":15.4,"method":"GET","action":"users#show"} | |
{"gc_ms":8.81,"run_ms":67.49,"idle_ms":609.61,"stall_ms":0.02,"io_percent":89.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.24,"run_ms":41.01,"idle_ms":16.19,"stall_ms":0.01,"io_percent":28.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.77,"run_ms":21.48,"idle_ms":3.37,"stall_ms":0.06,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":111.14,"idle_ms":91.33,"stall_ms":0.04,"io_percent":49.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.94,"run_ms":61.91,"idle_ms":205.05,"stall_ms":71.54,"io_percent":59.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.25,"run_ms":36.61,"idle_ms":16.28,"stall_ms":0.02,"io_percent":30.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.06,"run_ms":18.61,"idle_ms":2.79,"stall_ms":0.01,"io_percent":13.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.0,"run_ms":19.07,"idle_ms":2.71,"stall_ms":77.54,"io_percent":2.9,"method":"GET","action":"home#index"} | |
{"gc_ms":9.71,"run_ms":66.28,"idle_ms":30.93,"stall_ms":0.02,"io_percent":32.0,"method":"GET","action":"home#index"} | |
{"gc_ms":3.68,"run_ms":10.31,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":13.58,"idle_ms":3.34,"stall_ms":0.0,"io_percent":19.9,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.49,"run_ms":10.25,"idle_ms":1.95,"stall_ms":0.0,"io_percent":16.1,"method":"GET","action":"users#show"} | |
{"gc_ms":3.01,"run_ms":33.7,"idle_ms":3.39,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.47,"run_ms":15.05,"idle_ms":2.7,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.28,"run_ms":40.82,"idle_ms":4.24,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.11,"run_ms":31.87,"idle_ms":3.98,"stall_ms":0.03,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.6,"run_ms":21.55,"idle_ms":4.08,"stall_ms":0.01,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.3,"run_ms":32.07,"idle_ms":3.59,"stall_ms":0.01,"io_percent":10.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.54,"run_ms":16.01,"idle_ms":2.93,"stall_ms":0.01,"io_percent":18.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.39,"run_ms":6.63,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.49,"run_ms":34.2,"idle_ms":3.64,"stall_ms":0.01,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":16.14,"run_ms":41.41,"idle_ms":6.69,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.7,"run_ms":64.26,"idle_ms":34.75,"stall_ms":0.01,"io_percent":29.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":11.25,"run_ms":87.47,"idle_ms":23.6,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.61,"run_ms":140.12,"idle_ms":44.22,"stall_ms":1.22,"io_percent":18.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.15,"run_ms":114.28,"idle_ms":96.14,"stall_ms":0.64,"io_percent":39.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.63,"run_ms":5.79,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":4.2,"run_ms":34.48,"idle_ms":3.38,"stall_ms":0.58,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.59,"run_ms":15.4,"idle_ms":2.67,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.73,"run_ms":9.19,"idle_ms":1.9,"stall_ms":0.0,"io_percent":17.2,"method":"HEAD","action":"users#show"} | |
{"gc_ms":2.66,"run_ms":34.03,"idle_ms":3.56,"stall_ms":0.01,"io_percent":10.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.47,"run_ms":48.89,"idle_ms":16.18,"stall_ms":0.02,"io_percent":24.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.84,"idle_ms":0.05,"stall_ms":77.89,"io_percent":0.1,"method":"HEAD"} | |
{"gc_ms":0.82,"run_ms":35.17,"idle_ms":38.65,"stall_ms":0.02,"io_percent":52.8,"method":"POST","action":"comments#create"} | |
{"gc_ms":0.45,"run_ms":9.03,"idle_ms":2.29,"stall_ms":0.0,"io_percent":20.3,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.0,"run_ms":33.01,"idle_ms":17.33,"stall_ms":74.81,"io_percent":14.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.82,"idle_ms":2.81,"stall_ms":0.01,"io_percent":18.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.38,"idle_ms":2.02,"stall_ms":0.0,"io_percent":16.1,"method":"HEAD","action":"users#show"} | |
{"gc_ms":2.69,"run_ms":48.64,"idle_ms":18.51,"stall_ms":0.01,"io_percent":27.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":11.72,"idle_ms":3.08,"stall_ms":0.0,"io_percent":20.7,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.58,"run_ms":16.38,"idle_ms":3.65,"stall_ms":0.01,"io_percent":18.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.24,"run_ms":28.27,"idle_ms":15.13,"stall_ms":0.01,"io_percent":35.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.22,"idle_ms":4.99,"stall_ms":0.01,"io_percent":27.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.96,"idle_ms":9.22,"stall_ms":0.01,"io_percent":27.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.31,"run_ms":21.21,"idle_ms":9.71,"stall_ms":0.01,"io_percent":31.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.46,"idle_ms":2.75,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.46,"run_ms":5.88,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":29.99,"idle_ms":3.89,"stall_ms":0.07,"io_percent":12.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.7,"run_ms":32.11,"idle_ms":3.41,"stall_ms":0.01,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.0,"idle_ms":2.31,"stall_ms":0.0,"io_percent":20.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":29.46,"idle_ms":3.44,"stall_ms":0.01,"io_percent":11.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":13.73,"idle_ms":2.71,"stall_ms":0.01,"io_percent":19.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.93,"idle_ms":9.83,"stall_ms":0.01,"io_percent":31.3,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":5.63,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":32.05,"idle_ms":3.33,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":6.36,"run_ms":40.61,"idle_ms":15.54,"stall_ms":0.01,"io_percent":27.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.86,"run_ms":24.68,"idle_ms":3.88,"stall_ms":0.01,"io_percent":14.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.79,"run_ms":30.64,"idle_ms":3.23,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.17,"run_ms":41.52,"idle_ms":392.93,"stall_ms":0.01,"io_percent":90.5,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.58,"run_ms":7.14,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.32,"run_ms":11.11,"idle_ms":2.75,"stall_ms":0.0,"io_percent":19.8,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":94.15,"idle_ms":47.96,"stall_ms":0.02,"io_percent":36.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":94.59,"idle_ms":52.34,"stall_ms":0.02,"io_percent":38.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":63.89,"run_ms":190.17,"idle_ms":59.83,"stall_ms":0.17,"io_percent":24.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.99,"run_ms":17.54,"idle_ms":3.13,"stall_ms":0.01,"io_percent":17.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.28,"idle_ms":1.99,"stall_ms":0.0,"io_percent":17.7,"method":"GET","action":"users#show"} | |
{"gc_ms":7.45,"run_ms":107.46,"idle_ms":26.09,"stall_ms":0.02,"io_percent":22.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.23,"run_ms":22.51,"idle_ms":10.09,"stall_ms":0.01,"io_percent":31.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.54,"run_ms":117.96,"idle_ms":30.19,"stall_ms":0.02,"io_percent":22.9,"method":"GET","action":"home#index"} | |
{"gc_ms":3.04,"run_ms":101.53,"idle_ms":89.62,"stall_ms":0.02,"io_percent":55.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":10.96,"run_ms":61.58,"idle_ms":389.75,"stall_ms":77.35,"io_percent":74.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.42,"run_ms":21.74,"idle_ms":8.23,"stall_ms":0.01,"io_percent":27.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.18,"run_ms":12.38,"idle_ms":4.01,"stall_ms":0.0,"io_percent":24.6,"method":"GET"} | |
{"gc_ms":0.91,"run_ms":19.67,"idle_ms":4.79,"stall_ms":0.0,"io_percent":19.8,"method":"GET"} | |
{"gc_ms":0.29,"run_ms":6.43,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.26,"run_ms":9.46,"idle_ms":2.93,"stall_ms":0.0,"io_percent":23.5,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.87,"run_ms":24.89,"idle_ms":219.06,"stall_ms":0.02,"io_percent":89.9,"method":"PATCH","action":"comments#update"} | |
{"gc_ms":0.42,"run_ms":6.02,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":4.29,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.68,"run_ms":9.85,"idle_ms":1.86,"stall_ms":0.0,"io_percent":16.0,"method":"GET","action":"users#show"} | |
{"gc_ms":6.25,"run_ms":22.62,"idle_ms":2.93,"stall_ms":0.25,"io_percent":12.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":100.81,"idle_ms":54.95,"stall_ms":0.02,"io_percent":40.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.73,"run_ms":36.69,"idle_ms":423.47,"stall_ms":0.01,"io_percent":92.1,"method":"GET","action":"messages#index"} | |
{"gc_ms":0.0,"run_ms":7.31,"idle_ms":0.87,"stall_ms":0.0,"io_percent":10.7,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.75,"run_ms":7.38,"idle_ms":0.05,"stall_ms":71.52,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":1.6,"run_ms":12.51,"idle_ms":1.48,"stall_ms":0.0,"io_percent":10.6,"method":"GET","action":"users#show"} | |
{"gc_ms":1.23,"run_ms":9.36,"idle_ms":0.06,"stall_ms":120.23,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":1.44,"run_ms":91.27,"idle_ms":19.39,"stall_ms":0.02,"io_percent":17.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":43.1,"idle_ms":4.22,"stall_ms":0.01,"io_percent":9.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.39,"run_ms":13.69,"idle_ms":2.89,"stall_ms":0.0,"io_percent":17.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.83,"run_ms":17.05,"idle_ms":2.82,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.34,"run_ms":29.25,"idle_ms":6.26,"stall_ms":0.01,"io_percent":19.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.68,"run_ms":37.68,"idle_ms":16.01,"stall_ms":0.01,"io_percent":31.4,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":14.99,"idle_ms":2.79,"stall_ms":0.01,"io_percent":18.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.69,"run_ms":51.21,"idle_ms":19.11,"stall_ms":0.01,"io_percent":26.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":10.67,"run_ms":115.95,"idle_ms":43.95,"stall_ms":0.02,"io_percent":30.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":15.11,"idle_ms":2.72,"stall_ms":0.01,"io_percent":18.0,"method":"HEAD","action":"home#index"} | |
{"gc_ms":18.72,"run_ms":202.0,"idle_ms":465.62,"stall_ms":0.02,"io_percent":69.7,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":14.37,"idle_ms":2.66,"stall_ms":0.01,"io_percent":18.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.63,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":74.61,"idle_ms":162.86,"stall_ms":0.02,"io_percent":68.6,"method":"GET","action":"home#index"} | |
{"gc_ms":7.41,"run_ms":11.77,"idle_ms":2.44,"stall_ms":85.42,"io_percent":2.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":35.07,"idle_ms":13.18,"stall_ms":0.01,"io_percent":27.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":99.42,"idle_ms":33.89,"stall_ms":0.02,"io_percent":31.3,"method":"GET","action":"home#index"} | |
{"gc_ms":4.4,"run_ms":18.29,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":39.98,"idle_ms":16.83,"stall_ms":0.02,"io_percent":29.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.69,"run_ms":10.5,"idle_ms":2.16,"stall_ms":0.0,"io_percent":17.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":16.02,"idle_ms":2.93,"stall_ms":0.01,"io_percent":18.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.05,"run_ms":39.67,"idle_ms":3.56,"stall_ms":0.01,"io_percent":8.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":62.45,"idle_ms":27.39,"stall_ms":0.02,"io_percent":30.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.9,"run_ms":110.28,"idle_ms":354.31,"stall_ms":0.03,"io_percent":76.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":48.65,"idle_ms":16.48,"stall_ms":0.01,"io_percent":25.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.68,"run_ms":15.6,"idle_ms":2.75,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.35,"run_ms":26.84,"idle_ms":10.42,"stall_ms":0.04,"io_percent":28.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":42.94,"idle_ms":4.43,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.19,"run_ms":31.97,"idle_ms":3.56,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.74,"idle_ms":7.39,"stall_ms":70.66,"io_percent":7.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.35,"run_ms":13.74,"idle_ms":0.81,"stall_ms":0.0,"io_percent":4.8,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":30.63,"idle_ms":12.16,"stall_ms":0.01,"io_percent":28.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":33.67,"idle_ms":3.61,"stall_ms":0.01,"io_percent":10.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":110.9,"idle_ms":132.78,"stall_ms":0.02,"io_percent":59.0,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":43.33,"idle_ms":18.85,"stall_ms":0.02,"io_percent":30.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":23.67,"idle_ms":9.76,"stall_ms":0.01,"io_percent":29.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":35.43,"idle_ms":14.93,"stall_ms":0.02,"io_percent":29.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":21.8,"idle_ms":14.06,"stall_ms":0.01,"io_percent":39.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":36.63,"idle_ms":19.3,"stall_ms":72.29,"io_percent":15.8,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":5.58,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":30.38,"idle_ms":3.49,"stall_ms":0.01,"io_percent":11.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.77,"idle_ms":2.11,"stall_ms":0.0,"io_percent":19.5,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":27.99,"idle_ms":16.0,"stall_ms":0.01,"io_percent":36.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":9.97,"run_ms":46.12,"idle_ms":10.55,"stall_ms":0.01,"io_percent":17.3,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":9.45,"idle_ms":0.71,"stall_ms":0.0,"io_percent":6.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":5.28,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":15.52,"idle_ms":2.82,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.4,"idle_ms":2.2,"stall_ms":0.0,"io_percent":5.3,"method":"HEAD","action":"users#show"} | |
{"gc_ms":8.6,"run_ms":41.13,"idle_ms":3.53,"stall_ms":0.01,"io_percent":8.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.92,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":3.22,"run_ms":36.89,"idle_ms":3.5,"stall_ms":77.96,"io_percent":3.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.84,"run_ms":28.95,"idle_ms":10.33,"stall_ms":0.01,"io_percent":26.3,"method":"POST","action":"stories#check_url_dupe"} | |
{"gc_ms":0.91,"run_ms":17.78,"idle_ms":6.2,"stall_ms":0.01,"io_percent":28.7,"method":"GET","action":"home#index"} | |
{"gc_ms":6.44,"run_ms":30.79,"idle_ms":41.01,"stall_ms":0.78,"io_percent":56.0,"method":"POST","action":"stories#fetch_url_attributes"} | |
{"gc_ms":0.0,"run_ms":34.27,"idle_ms":3.3,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.56,"idle_ms":3.62,"stall_ms":0.0,"io_percent":26.0,"method":"GET","action":"users#show"} | |
{"gc_ms":1.06,"run_ms":11.89,"idle_ms":1.99,"stall_ms":0.0,"io_percent":13.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":33.15,"idle_ms":12.12,"stall_ms":0.01,"io_percent":26.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":55.89,"idle_ms":32.6,"stall_ms":0.02,"io_percent":36.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.54,"run_ms":12.03,"idle_ms":2.39,"stall_ms":69.14,"io_percent":3.0,"method":"GET","action":"users#show"} | |
{"gc_ms":3.25,"run_ms":33.38,"idle_ms":3.45,"stall_ms":0.07,"io_percent":10.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.62,"run_ms":21.35,"idle_ms":3.36,"stall_ms":0.01,"io_percent":15.3,"method":"HEAD","action":"home#index"} | |
{"gc_ms":0.71,"run_ms":16.46,"idle_ms":2.9,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":25.44,"idle_ms":14.71,"stall_ms":0.01,"io_percent":36.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.18,"run_ms":45.38,"idle_ms":17.67,"stall_ms":0.01,"io_percent":27.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.29,"run_ms":34.46,"idle_ms":5.31,"stall_ms":0.01,"io_percent":14.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.48,"run_ms":36.97,"idle_ms":10.74,"stall_ms":0.01,"io_percent":22.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.46,"run_ms":24.46,"idle_ms":8.18,"stall_ms":0.01,"io_percent":25.3,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":25.91,"idle_ms":4.02,"stall_ms":0.01,"io_percent":14.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":16.19,"idle_ms":3.47,"stall_ms":0.01,"io_percent":15.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.85,"run_ms":96.33,"idle_ms":26.46,"stall_ms":0.02,"io_percent":24.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.22,"run_ms":13.95,"idle_ms":2.67,"stall_ms":0.01,"io_percent":18.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.8,"run_ms":10.37,"idle_ms":205.49,"stall_ms":0.0,"io_percent":92.9,"method":"GET","action":"home#newest"} | |
{"gc_ms":3.55,"run_ms":34.62,"idle_ms":3.83,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.0,"run_ms":37.52,"idle_ms":12.2,"stall_ms":82.66,"io_percent":9.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.68,"run_ms":97.09,"idle_ms":37.52,"stall_ms":0.02,"io_percent":31.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.75,"run_ms":9.4,"idle_ms":2.92,"stall_ms":88.18,"io_percent":2.9,"method":"GET"} | |
{"gc_ms":3.44,"run_ms":86.46,"idle_ms":196.53,"stall_ms":0.02,"io_percent":67.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.47,"run_ms":11.76,"idle_ms":1.87,"stall_ms":0.0,"io_percent":13.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.65,"run_ms":6.98,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.53,"run_ms":10.05,"idle_ms":2.04,"stall_ms":0.0,"io_percent":16.9,"method":"GET","action":"users#show"} | |
{"gc_ms":12.65,"run_ms":44.76,"idle_ms":3.58,"stall_ms":0.08,"io_percent":7.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.06,"run_ms":29.34,"idle_ms":2.61,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.57,"run_ms":11.57,"idle_ms":1.24,"stall_ms":0.0,"io_percent":9.8,"method":"GET","action":"login#index"} | |
{"gc_ms":0.76,"run_ms":6.53,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.58,"run_ms":11.89,"idle_ms":1.47,"stall_ms":0.0,"io_percent":11.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.89,"run_ms":22.52,"idle_ms":3.62,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.1,"run_ms":36.05,"idle_ms":6.88,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.3,"run_ms":6.93,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.34,"run_ms":17.34,"idle_ms":2.85,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":62.14,"idle_ms":324.6,"stall_ms":73.52,"io_percent":70.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.78,"run_ms":7.52,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.72,"run_ms":11.1,"idle_ms":1.91,"stall_ms":0.0,"io_percent":14.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.83,"run_ms":10.15,"idle_ms":1.95,"stall_ms":109.08,"io_percent":1.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":42.38,"idle_ms":3.18,"stall_ms":0.01,"io_percent":7.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.39,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.67,"run_ms":22.45,"idle_ms":2.93,"stall_ms":0.01,"io_percent":12.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.36,"run_ms":53.93,"idle_ms":16.72,"stall_ms":0.02,"io_percent":23.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.24,"run_ms":16.92,"idle_ms":2.83,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.38,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.82,"idle_ms":2.6,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.84,"idle_ms":1.74,"stall_ms":0.0,"io_percent":16.5,"method":"GET","action":"users#show"} | |
{"gc_ms":1.26,"run_ms":31.77,"idle_ms":11.85,"stall_ms":0.11,"io_percent":27.7,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":13.72,"idle_ms":2.49,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.64,"run_ms":141.84,"idle_ms":41.8,"stall_ms":85.8,"io_percent":17.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.46,"idle_ms":2.89,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.74,"run_ms":16.05,"idle_ms":7.68,"stall_ms":0.0,"io_percent":32.6,"method":"GET","action":"comments#edit"} | |
{"gc_ms":0.0,"run_ms":46.2,"idle_ms":19.43,"stall_ms":0.01,"io_percent":29.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.54,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.82,"idle_ms":1.64,"stall_ms":0.0,"io_percent":15.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.68,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":2.76,"run_ms":39.3,"idle_ms":15.11,"stall_ms":0.01,"io_percent":27.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":10.24,"run_ms":46.91,"idle_ms":3.51,"stall_ms":0.01,"io_percent":7.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.24,"run_ms":44.74,"idle_ms":3.9,"stall_ms":0.16,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":10.59,"run_ms":44.14,"idle_ms":3.53,"stall_ms":0.01,"io_percent":7.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.44,"run_ms":10.92,"idle_ms":1.8,"stall_ms":0.0,"io_percent":14.2,"method":"HEAD","action":"users#show"} | |
{"gc_ms":2.17,"run_ms":107.31,"idle_ms":33.24,"stall_ms":0.02,"io_percent":27.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.72,"run_ms":39.85,"idle_ms":7.39,"stall_ms":0.01,"io_percent":15.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.31,"run_ms":6.7,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":4.89,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":1.26,"run_ms":23.29,"idle_ms":10.99,"stall_ms":0.01,"io_percent":32.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.91,"run_ms":50.21,"idle_ms":22.33,"stall_ms":83.1,"io_percent":13.7,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":12.11,"idle_ms":2.35,"stall_ms":141.65,"io_percent":1.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.13,"run_ms":17.61,"idle_ms":2.87,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.29,"run_ms":167.08,"idle_ms":116.24,"stall_ms":0.05,"io_percent":54.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.91,"run_ms":43.1,"idle_ms":10.83,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":9.36,"run_ms":33.83,"idle_ms":2.37,"stall_ms":0.01,"io_percent":6.9,"method":"GET","action":"home#newest"} | |
{"gc_ms":4.29,"run_ms":58.21,"idle_ms":179.43,"stall_ms":0.02,"io_percent":75.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.7,"run_ms":31.2,"idle_ms":3.41,"stall_ms":0.01,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.36,"run_ms":30.54,"idle_ms":5.0,"stall_ms":0.01,"io_percent":15.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.67,"idle_ms":2.86,"stall_ms":0.01,"io_percent":19.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.17,"run_ms":7.17,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.56,"idle_ms":2.0,"stall_ms":0.0,"io_percent":19.0,"method":"GET","action":"users#show"} | |
{"gc_ms":1.34,"run_ms":33.89,"idle_ms":14.41,"stall_ms":0.01,"io_percent":29.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.38,"run_ms":28.51,"idle_ms":151.82,"stall_ms":0.01,"io_percent":84.3,"method":"PATCH","action":"comments#update"} | |
{"gc_ms":0.87,"run_ms":6.88,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.6,"method":"GET"} | |
{"gc_ms":2.73,"run_ms":67.88,"idle_ms":12.26,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":26.18,"idle_ms":3.2,"stall_ms":0.01,"io_percent":7.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.39,"run_ms":40.6,"idle_ms":17.11,"stall_ms":0.01,"io_percent":29.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":9.47,"idle_ms":2.43,"stall_ms":0.0,"io_percent":20.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":23.77,"idle_ms":12.18,"stall_ms":0.01,"io_percent":33.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":32.73,"idle_ms":3.39,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.39,"idle_ms":9.41,"stall_ms":0.01,"io_percent":31.5,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":1.49,"run_ms":6.39,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.73,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.24,"run_ms":10.4,"idle_ms":2.52,"stall_ms":0.0,"io_percent":19.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.86,"idle_ms":2.44,"stall_ms":0.0,"io_percent":24.4,"method":"GET"} | |
{"gc_ms":2.0,"run_ms":24.74,"idle_ms":10.57,"stall_ms":0.01,"io_percent":30.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.74,"run_ms":100.19,"idle_ms":82.41,"stall_ms":0.02,"io_percent":50.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":6.76,"run_ms":38.67,"idle_ms":3.36,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.86,"run_ms":11.64,"idle_ms":2.61,"stall_ms":0.0,"io_percent":18.3,"method":"GET","action":"users#show"} | |
{"gc_ms":4.1,"run_ms":48.93,"idle_ms":3.43,"stall_ms":0.01,"io_percent":6.8,"method":"GET","action":"home#active"} | |
{"gc_ms":0.27,"run_ms":21.61,"idle_ms":3.33,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":2.35,"run_ms":30.35,"idle_ms":2.83,"stall_ms":0.01,"io_percent":8.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.54,"run_ms":17.25,"idle_ms":2.85,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.52,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.48,"idle_ms":1.84,"stall_ms":0.0,"io_percent":12.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":16.56,"idle_ms":2.92,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":71.12,"idle_ms":10.87,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.16,"run_ms":101.42,"idle_ms":30.28,"stall_ms":0.02,"io_percent":26.3,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":4.97,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":39.67,"idle_ms":16.78,"stall_ms":0.01,"io_percent":29.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.16,"run_ms":10.73,"idle_ms":2.09,"stall_ms":0.0,"io_percent":15.4,"method":"GET","action":"users#show"} | |
{"gc_ms":10.53,"run_ms":72.11,"idle_ms":72.8,"stall_ms":0.02,"io_percent":50.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.58,"run_ms":24.86,"idle_ms":3.54,"stall_ms":0.01,"io_percent":14.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.35,"idle_ms":2.6,"stall_ms":0.01,"io_percent":17.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":35.01,"idle_ms":3.88,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.54,"idle_ms":0.7,"stall_ms":0.0,"io_percent":8.4,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":20.56,"idle_ms":3.58,"stall_ms":0.02,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.03,"run_ms":10.87,"idle_ms":1.46,"stall_ms":0.0,"io_percent":11.8,"method":"HEAD","action":"users#show"} | |
{"gc_ms":3.54,"run_ms":62.46,"idle_ms":8.25,"stall_ms":0.01,"io_percent":11.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.23,"run_ms":14.86,"idle_ms":2.87,"stall_ms":0.01,"io_percent":18.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.35,"run_ms":18.65,"idle_ms":3.16,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.46,"run_ms":21.05,"idle_ms":10.79,"stall_ms":63.17,"io_percent":11.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":8.13,"run_ms":39.52,"idle_ms":3.38,"stall_ms":0.01,"io_percent":8.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.69,"idle_ms":3.16,"stall_ms":80.18,"io_percent":3.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.81,"run_ms":6.79,"idle_ms":0.04,"stall_ms":81.14,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":1.56,"run_ms":40.26,"idle_ms":14.3,"stall_ms":0.01,"io_percent":26.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.46,"run_ms":41.53,"idle_ms":3.12,"stall_ms":0.01,"io_percent":7.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.13,"idle_ms":1.98,"stall_ms":0.0,"io_percent":11.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.58,"run_ms":7.16,"idle_ms":1.11,"stall_ms":0.0,"io_percent":11.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":105.67,"idle_ms":25.83,"stall_ms":0.18,"io_percent":19.7,"method":"HEAD","action":"home#single_tag"} | |
{"gc_ms":6.78,"run_ms":40.43,"idle_ms":6.17,"stall_ms":0.01,"io_percent":12.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.24,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":25.71,"idle_ms":2.88,"stall_ms":0.05,"io_percent":10.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":10.6,"idle_ms":1.99,"stall_ms":0.0,"io_percent":15.9,"method":"GET","action":"users#show"} | |
{"gc_ms":7.7,"run_ms":47.75,"idle_ms":13.19,"stall_ms":0.01,"io_percent":21.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":4.77,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.78,"run_ms":37.27,"idle_ms":7.91,"stall_ms":0.02,"io_percent":16.7,"method":"GET","action":"users#tree"} | |
{"gc_ms":0.0,"run_ms":8.36,"idle_ms":0.03,"stall_ms":0.07,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":5.95,"run_ms":22.06,"idle_ms":2.68,"stall_ms":0.01,"io_percent":12.1,"method":"GET","action":"home#index"} | |
{"gc_ms":5.93,"run_ms":111.41,"idle_ms":31.86,"stall_ms":0.02,"io_percent":23.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.35,"run_ms":17.54,"idle_ms":2.79,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.52,"run_ms":30.24,"idle_ms":3.5,"stall_ms":0.06,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.13,"run_ms":35.69,"idle_ms":11.91,"stall_ms":0.01,"io_percent":25.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.41,"run_ms":10.83,"idle_ms":1.89,"stall_ms":0.0,"io_percent":14.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":31.46,"idle_ms":3.42,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.85,"run_ms":15.63,"idle_ms":3.02,"stall_ms":72.1,"io_percent":3.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.56,"run_ms":26.4,"idle_ms":8.16,"stall_ms":0.01,"io_percent":23.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.48,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.06,"idle_ms":3.24,"stall_ms":0.0,"io_percent":21.2,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":1.47,"run_ms":19.89,"idle_ms":2.48,"stall_ms":0.01,"io_percent":12.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.5,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":16.99,"idle_ms":2.91,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.21,"run_ms":11.75,"idle_ms":2.09,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":25.19,"idle_ms":7.91,"stall_ms":0.01,"io_percent":24.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.77,"idle_ms":1.87,"stall_ms":0.0,"io_percent":17.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.72,"run_ms":19.67,"idle_ms":3.45,"stall_ms":0.01,"io_percent":17.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.47,"run_ms":22.6,"idle_ms":7.22,"stall_ms":0.01,"io_percent":24.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.86,"run_ms":10.02,"idle_ms":0.97,"stall_ms":0.0,"io_percent":8.8,"method":"POST"} | |
{"gc_ms":3.73,"run_ms":96.56,"idle_ms":51.97,"stall_ms":0.02,"io_percent":39.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":32.75,"idle_ms":9.95,"stall_ms":0.89,"io_percent":22.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":113.98,"idle_ms":66.36,"stall_ms":0.13,"io_percent":41.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":5.94,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":1.4,"run_ms":98.69,"idle_ms":71.56,"stall_ms":64.23,"io_percent":33.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":15.22,"idle_ms":2.66,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":37.75,"idle_ms":82.11,"stall_ms":67.14,"io_percent":44.9,"method":"GET","action":"moderations#index"} | |
{"gc_ms":0.0,"run_ms":15.34,"idle_ms":2.95,"stall_ms":0.01,"io_percent":19.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":13.12,"idle_ms":2.42,"stall_ms":0.0,"io_percent":15.7,"method":"GET","action":"users#show"} | |
{"gc_ms":7.57,"run_ms":91.56,"idle_ms":28.61,"stall_ms":0.02,"io_percent":12.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.51,"run_ms":99.12,"idle_ms":3.42,"stall_ms":277.89,"io_percent":0.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":191.75,"idle_ms":233.11,"stall_ms":0.06,"io_percent":58.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.14,"run_ms":73.17,"idle_ms":5.27,"stall_ms":0.05,"io_percent":6.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":80.63,"idle_ms":13.11,"stall_ms":0.02,"io_percent":11.9,"method":"GET","action":"home#index"} | |
{"gc_ms":5.15,"run_ms":276.42,"idle_ms":325.17,"stall_ms":0.05,"io_percent":51.8,"method":"POST","action":"stories#create"} | |
{"gc_ms":0.0,"run_ms":51.49,"idle_ms":14.73,"stall_ms":0.01,"io_percent":27.2,"method":"GET","action":"home#index"} | |
{"gc_ms":8.18,"run_ms":369.01,"idle_ms":83.1,"stall_ms":2.07,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":54.23,"idle_ms":47.94,"stall_ms":0.02,"io_percent":47.4,"method":"GET","action":"home#index"} | |
{"gc_ms":3.89,"run_ms":136.1,"idle_ms":13.49,"stall_ms":0.09,"io_percent":7.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":168.49,"idle_ms":12.42,"stall_ms":0.01,"io_percent":4.5,"method":"GET","action":"home#index"} | |
{"gc_ms":18.79,"run_ms":182.95,"idle_ms":299.08,"stall_ms":0.06,"io_percent":53.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":39.28,"idle_ms":5.4,"stall_ms":3.94,"io_percent":8.1,"method":"GET","action":"users#show"} | |
{"gc_ms":2.53,"run_ms":78.19,"idle_ms":74.76,"stall_ms":0.01,"io_percent":40.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":88.6,"idle_ms":8.01,"stall_ms":0.01,"io_percent":5.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.84,"run_ms":38.36,"idle_ms":11.3,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":27.9,"idle_ms":6.06,"stall_ms":0.01,"io_percent":13.3,"method":"GET","action":"home#index"} | |
{"gc_ms":2.09,"run_ms":32.2,"idle_ms":5.05,"stall_ms":0.01,"io_percent":13.5,"method":"GET","action":"home#index"} | |
{"gc_ms":18.13,"run_ms":116.58,"idle_ms":65.05,"stall_ms":0.03,"io_percent":29.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":56.81,"idle_ms":6.24,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":4.47,"run_ms":65.34,"idle_ms":5.75,"stall_ms":0.01,"io_percent":6.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":51.11,"idle_ms":24.2,"stall_ms":0.01,"io_percent":25.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.61,"run_ms":27.17,"idle_ms":3.76,"stall_ms":0.01,"io_percent":10.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":57.66,"idle_ms":32.93,"stall_ms":0.02,"io_percent":34.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.31,"run_ms":26.02,"idle_ms":11.29,"stall_ms":0.01,"io_percent":28.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":26.33,"idle_ms":3.73,"stall_ms":0.01,"io_percent":10.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.5,"run_ms":19.74,"idle_ms":13.12,"stall_ms":0.0,"io_percent":26.5,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":4.63,"run_ms":72.4,"idle_ms":25.41,"stall_ms":0.01,"io_percent":24.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":12.14,"run_ms":124.29,"idle_ms":315.01,"stall_ms":0.03,"io_percent":63.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.14,"run_ms":55.38,"idle_ms":20.82,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.0,"run_ms":187.11,"idle_ms":62.58,"stall_ms":0.03,"io_percent":22.6,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":12.06,"idle_ms":1.83,"stall_ms":0.0,"io_percent":11.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":16.48,"idle_ms":4.84,"stall_ms":0.01,"io_percent":20.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.06,"run_ms":37.3,"idle_ms":27.06,"stall_ms":0.01,"io_percent":39.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":12.23,"run_ms":164.39,"idle_ms":47.33,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.3,"run_ms":19.38,"idle_ms":5.22,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.11,"run_ms":41.88,"idle_ms":10.98,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.75,"run_ms":27.8,"idle_ms":4.92,"stall_ms":0.01,"io_percent":12.2,"method":"GET","action":"home#index"} | |
{"gc_ms":5.06,"run_ms":53.18,"idle_ms":9.01,"stall_ms":0.01,"io_percent":10.3,"method":"GET","action":"home#index"} | |
{"gc_ms":13.67,"run_ms":106.94,"idle_ms":16.44,"stall_ms":0.02,"io_percent":11.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.7,"run_ms":36.17,"idle_ms":14.78,"stall_ms":0.01,"io_percent":26.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.63,"run_ms":19.24,"idle_ms":3.0,"stall_ms":0.01,"io_percent":12.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.38,"idle_ms":7.99,"stall_ms":0.01,"io_percent":28.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":51.39,"idle_ms":5.21,"stall_ms":0.01,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.04,"idle_ms":3.26,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.25,"run_ms":19.67,"idle_ms":2.86,"stall_ms":0.01,"io_percent":9.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.41,"idle_ms":11.93,"stall_ms":3.26,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":2.31,"run_ms":49.5,"idle_ms":7.55,"stall_ms":130.27,"io_percent":3.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":45.25,"idle_ms":55.25,"stall_ms":0.02,"io_percent":37.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":60.12,"idle_ms":38.38,"stall_ms":0.02,"io_percent":31.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.42,"run_ms":33.18,"idle_ms":21.44,"stall_ms":0.01,"io_percent":37.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.81,"run_ms":29.18,"idle_ms":3.82,"stall_ms":0.01,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.82,"run_ms":140.24,"idle_ms":155.56,"stall_ms":0.02,"io_percent":46.7,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":20.92,"idle_ms":5.94,"stall_ms":0.01,"io_percent":13.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.27,"run_ms":8.09,"idle_ms":2.18,"stall_ms":0.0,"io_percent":15.9,"method":"GET"} | |
{"gc_ms":14.38,"run_ms":182.35,"idle_ms":193.58,"stall_ms":0.03,"io_percent":49.2,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":1.16,"run_ms":22.5,"idle_ms":23.68,"stall_ms":0.01,"io_percent":43.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.32,"run_ms":27.21,"idle_ms":16.71,"stall_ms":0.91,"io_percent":19.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.47,"idle_ms":2.18,"stall_ms":0.0,"io_percent":5.6,"method":"GET","action":"users#show"} | |
{"gc_ms":1.02,"run_ms":94.54,"idle_ms":40.73,"stall_ms":0.03,"io_percent":25.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":8.75,"run_ms":60.36,"idle_ms":55.9,"stall_ms":18.8,"io_percent":26.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.26,"run_ms":17.9,"idle_ms":4.88,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.19,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.69,"idle_ms":2.81,"stall_ms":0.0,"io_percent":10.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.41,"run_ms":19.3,"idle_ms":2.84,"stall_ms":112.12,"io_percent":2.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.01,"run_ms":64.0,"idle_ms":142.37,"stall_ms":0.01,"io_percent":64.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.25,"idle_ms":6.28,"stall_ms":0.0,"io_percent":29.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.19,"run_ms":12.92,"idle_ms":0.74,"stall_ms":0.0,"io_percent":4.9,"method":"HEAD"} | |
{"gc_ms":0.7,"run_ms":24.72,"idle_ms":14.23,"stall_ms":0.01,"io_percent":36.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.46,"run_ms":24.7,"idle_ms":12.74,"stall_ms":0.01,"io_percent":31.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.43,"run_ms":25.42,"idle_ms":16.48,"stall_ms":0.01,"io_percent":37.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.53,"run_ms":23.42,"idle_ms":12.91,"stall_ms":0.01,"io_percent":32.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.39,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":10.01,"idle_ms":0.71,"stall_ms":0.0,"io_percent":5.6,"method":"HEAD"} | |
{"gc_ms":2.81,"run_ms":45.26,"idle_ms":18.02,"stall_ms":0.01,"io_percent":26.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.42,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.21,"run_ms":10.47,"idle_ms":2.39,"stall_ms":0.0,"io_percent":16.2,"method":"GET","action":"users#show"} | |
{"gc_ms":7.79,"run_ms":26.33,"idle_ms":3.09,"stall_ms":0.01,"io_percent":11.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.75,"run_ms":33.85,"idle_ms":34.74,"stall_ms":0.01,"io_percent":40.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.85,"run_ms":30.03,"idle_ms":10.01,"stall_ms":0.34,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.92,"run_ms":24.15,"idle_ms":12.09,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.67,"run_ms":17.65,"idle_ms":6.23,"stall_ms":0.0,"io_percent":13.2,"method":"GET","action":"about#about"} | |
{"gc_ms":1.54,"run_ms":156.32,"idle_ms":119.64,"stall_ms":2.04,"io_percent":29.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":6.58,"run_ms":56.13,"idle_ms":29.93,"stall_ms":235.47,"io_percent":8.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.11,"run_ms":96.29,"idle_ms":213.69,"stall_ms":0.03,"io_percent":55.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.92,"run_ms":39.6,"idle_ms":4.74,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":33.18,"idle_ms":20.8,"stall_ms":0.01,"io_percent":35.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.36,"run_ms":23.5,"idle_ms":3.4,"stall_ms":0.01,"io_percent":13.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":26.83,"idle_ms":13.12,"stall_ms":0.01,"io_percent":30.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":17.97,"idle_ms":2.5,"stall_ms":0.0,"io_percent":8.9,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":22.46,"idle_ms":4.95,"stall_ms":0.01,"io_percent":14.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.19,"run_ms":25.66,"idle_ms":3.52,"stall_ms":0.01,"io_percent":12.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.96,"run_ms":25.46,"idle_ms":3.9,"stall_ms":0.01,"io_percent":12.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.57,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":17.9,"idle_ms":2.75,"stall_ms":0.01,"io_percent":12.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.92,"run_ms":12.16,"idle_ms":2.54,"stall_ms":0.0,"io_percent":14.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.48,"run_ms":7.34,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":1.72,"run_ms":27.53,"idle_ms":19.26,"stall_ms":0.01,"io_percent":37.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.15,"run_ms":9.18,"idle_ms":2.72,"stall_ms":0.0,"io_percent":20.3,"method":"GET","action":"users#show"} | |
{"gc_ms":1.51,"run_ms":22.04,"idle_ms":3.75,"stall_ms":0.01,"io_percent":12.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.26,"idle_ms":11.75,"stall_ms":0.01,"io_percent":41.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.95,"run_ms":22.23,"idle_ms":3.46,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.22,"run_ms":15.69,"idle_ms":1.56,"stall_ms":0.0,"io_percent":8.8,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.76,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":43.85,"idle_ms":16.57,"stall_ms":0.02,"io_percent":27.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.1,"run_ms":21.83,"idle_ms":6.56,"stall_ms":0.01,"io_percent":23.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":12.15,"idle_ms":2.25,"stall_ms":0.0,"io_percent":13.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.64,"run_ms":16.99,"idle_ms":1.73,"stall_ms":0.0,"io_percent":9.3,"method":"HEAD","action":"users#show"} | |
{"gc_ms":3.85,"run_ms":119.59,"idle_ms":34.22,"stall_ms":0.94,"io_percent":25.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":44.86,"idle_ms":4.5,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.7,"run_ms":41.11,"idle_ms":14.8,"stall_ms":0.02,"io_percent":28.0,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":1.04,"run_ms":28.03,"idle_ms":4.31,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":13.37,"run_ms":68.3,"idle_ms":8.95,"stall_ms":0.01,"io_percent":11.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.46,"run_ms":18.83,"idle_ms":3.05,"stall_ms":0.01,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.92,"run_ms":15.14,"idle_ms":3.88,"stall_ms":0.01,"io_percent":20.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.72,"run_ms":18.81,"idle_ms":2.91,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":4.02,"run_ms":60.5,"idle_ms":9.95,"stall_ms":0.01,"io_percent":14.2,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":99.53,"idle_ms":67.99,"stall_ms":0.02,"io_percent":37.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.76,"run_ms":18.29,"idle_ms":7.4,"stall_ms":0.01,"io_percent":25.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.81,"idle_ms":11.9,"stall_ms":0.01,"io_percent":36.7,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":2.8,"run_ms":59.31,"idle_ms":14.17,"stall_ms":0.02,"io_percent":19.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.72,"run_ms":21.46,"idle_ms":5.65,"stall_ms":0.01,"io_percent":18.9,"method":"HEAD","action":"users#show"} | |
{"gc_ms":4.44,"run_ms":79.85,"idle_ms":42.06,"stall_ms":0.83,"io_percent":28.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.13,"run_ms":164.72,"idle_ms":20.49,"stall_ms":0.12,"io_percent":8.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":66.81,"idle_ms":21.24,"stall_ms":0.03,"io_percent":22.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.83,"run_ms":52.91,"idle_ms":18.2,"stall_ms":1.61,"io_percent":20.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":30.84,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.0,"method":"HEAD"} | |
{"gc_ms":5.73,"run_ms":146.83,"idle_ms":12.17,"stall_ms":0.01,"io_percent":6.3,"method":"GET","action":"home#index"} | |
{"gc_ms":20.31,"run_ms":101.66,"idle_ms":33.98,"stall_ms":1.63,"io_percent":19.9,"method":"GET","action":"home#index"} | |
{"gc_ms":3.19,"run_ms":222.3,"idle_ms":22.64,"stall_ms":0.03,"io_percent":6.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.72,"run_ms":67.04,"idle_ms":16.67,"stall_ms":0.02,"io_percent":15.1,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.59,"run_ms":124.79,"idle_ms":18.25,"stall_ms":1.81,"io_percent":8.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":42.39,"idle_ms":0.13,"stall_ms":333.11,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":11.25,"run_ms":240.91,"idle_ms":7.6,"stall_ms":1.61,"io_percent":2.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.22,"run_ms":116.28,"idle_ms":50.83,"stall_ms":0.09,"io_percent":17.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":183.23,"idle_ms":38.11,"stall_ms":0.11,"io_percent":10.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.55,"run_ms":141.46,"idle_ms":56.88,"stall_ms":8.82,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":20.1,"run_ms":284.81,"idle_ms":30.47,"stall_ms":0.09,"io_percent":4.7,"method":"GET","action":"stories#new"} | |
{"gc_ms":2.48,"run_ms":140.95,"idle_ms":13.95,"stall_ms":0.03,"io_percent":6.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":125.1,"idle_ms":69.7,"stall_ms":2.33,"io_percent":19.8,"method":"GET","action":"home#index"} | |
{"gc_ms":14.6,"run_ms":565.29,"idle_ms":92.14,"stall_ms":11.13,"io_percent":4.4,"method":"GET","action":"home#newest"} | |
{"gc_ms":54.87,"run_ms":715.9,"idle_ms":188.15,"stall_ms":205.19,"io_percent":6.9,"method":"GET","action":"home#index"} | |
{"gc_ms":5.75,"run_ms":314.03,"idle_ms":236.09,"stall_ms":1.33,"io_percent":22.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.5,"run_ms":95.66,"idle_ms":9.58,"stall_ms":15.56,"io_percent":2.2,"method":"GET"} | |
{"gc_ms":71.86,"run_ms":246.76,"idle_ms":121.22,"stall_ms":8.62,"io_percent":7.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.66,"run_ms":51.08,"idle_ms":36.1,"stall_ms":593.52,"io_percent":4.5,"method":"GET"} | |
{"gc_ms":17.22,"run_ms":84.86,"idle_ms":10.99,"stall_ms":9.38,"io_percent":1.9,"method":"GET","action":"users#show"} | |
{"gc_ms":24.42,"run_ms":249.75,"idle_ms":207.16,"stall_ms":1011.35,"io_percent":8.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":15.01,"run_ms":396.11,"idle_ms":154.97,"stall_ms":913.62,"io_percent":4.8,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":25.23,"run_ms":121.97,"idle_ms":72.14,"stall_ms":1787.82,"io_percent":3.1,"method":"GET","action":"home#index"} | |
{"gc_ms":51.2,"run_ms":702.87,"idle_ms":302.36,"stall_ms":767.61,"io_percent":6.9,"method":"GET","action":"home#index"} | |
{"gc_ms":5.94,"run_ms":191.78,"idle_ms":236.43,"stall_ms":1092.03,"io_percent":10.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.13,"run_ms":988.36,"idle_ms":382.84,"stall_ms":1307.95,"io_percent":6.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":140.12,"idle_ms":95.53,"stall_ms":750.57,"io_percent":6.0,"method":"GET","action":"users#show"} | |
{"gc_ms":20.95,"run_ms":106.74,"idle_ms":86.86,"stall_ms":1822.78,"io_percent":3.5,"method":"GET","action":"users#show"} | |
{"gc_ms":14.8,"run_ms":821.84,"idle_ms":603.54,"stall_ms":1872.77,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":117.13,"idle_ms":25.76,"stall_ms":578.8,"io_percent":2.1,"method":"GET"} | |
{"gc_ms":1.61,"run_ms":84.79,"idle_ms":21.62,"stall_ms":30.2,"io_percent":9.7,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":185.63,"idle_ms":202.35,"stall_ms":4845.47,"io_percent":3.5,"method":"GET","action":"home#index"} | |
{"gc_ms":5.39,"run_ms":166.38,"idle_ms":59.74,"stall_ms":2647.38,"io_percent":1.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":91.98,"idle_ms":15.82,"stall_ms":66.24,"io_percent":4.2,"method":"GET","action":"users#show"} | |
{"gc_ms":101.4,"run_ms":487.54,"idle_ms":50.75,"stall_ms":2978.06,"io_percent":0.9,"method":"GET","action":"home#index"} | |
{"gc_ms":108.9,"run_ms":888.93,"idle_ms":733.77,"stall_ms":1035.34,"io_percent":12.5,"method":"GET","action":"home#index"} | |
{"gc_ms":4.93,"run_ms":159.51,"idle_ms":98.64,"stall_ms":2917.07,"io_percent":2.6,"method":"GET","action":"home#index"} | |
{"gc_ms":39.86,"run_ms":710.23,"idle_ms":320.99,"stall_ms":1043.46,"io_percent":8.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":39.86,"run_ms":165.57,"idle_ms":345.18,"stall_ms":2920.83,"io_percent":9.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":39.86,"run_ms":99.32,"idle_ms":330.41,"stall_ms":3016.27,"io_percent":9.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":34.44,"run_ms":186.53,"idle_ms":218.47,"stall_ms":2157.49,"io_percent":7.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":44.79,"idle_ms":30.96,"stall_ms":283.98,"io_percent":4.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":47.12,"idle_ms":1.92,"stall_ms":45.09,"io_percent":1.2,"method":"GET"} | |
{"gc_ms":39.31,"run_ms":132.38,"idle_ms":61.9,"stall_ms":2488.84,"io_percent":2.0,"method":"GET","action":"home#index"} | |
{"gc_ms":3.18,"run_ms":38.31,"idle_ms":12.88,"stall_ms":477.67,"io_percent":1.9,"method":"GET"} | |
{"gc_ms":15.57,"run_ms":266.36,"idle_ms":41.74,"stall_ms":471.21,"io_percent":3.5,"method":"GET","action":"home#index"} | |
{"gc_ms":7.52,"run_ms":275.74,"idle_ms":128.44,"stall_ms":248.34,"io_percent":7.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":14.97,"run_ms":706.9,"idle_ms":3349.04,"stall_ms":1391.46,"io_percent":44.3,"method":"GET","action":"home#active"} | |
{"gc_ms":0.0,"run_ms":126.72,"idle_ms":30.64,"stall_ms":1065.91,"io_percent":2.2,"method":"GET","action":"home#index"} | |
{"gc_ms":8.38,"run_ms":218.1,"idle_ms":42.56,"stall_ms":21.89,"io_percent":5.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":95.85,"idle_ms":28.73,"stall_ms":123.76,"io_percent":6.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.96,"run_ms":128.73,"idle_ms":116.87,"stall_ms":14.02,"io_percent":23.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.73,"run_ms":114.54,"idle_ms":126.48,"stall_ms":8.9,"io_percent":20.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":35.43,"idle_ms":0.08,"stall_ms":24.86,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":18.07,"run_ms":166.11,"idle_ms":121.47,"stall_ms":3131.13,"io_percent":2.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":93.24,"idle_ms":115.02,"stall_ms":17.36,"io_percent":18.9,"method":"GET","action":"home#index"} | |
{"gc_ms":2.28,"run_ms":81.46,"idle_ms":28.29,"stall_ms":0.02,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":4.93,"run_ms":611.7,"idle_ms":410.71,"stall_ms":3509.93,"io_percent":6.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":70.3,"idle_ms":18.81,"stall_ms":654.36,"io_percent":2.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.35,"run_ms":76.44,"idle_ms":52.71,"stall_ms":0.01,"io_percent":22.9,"method":"GET","action":"comments#reply"} | |
{"gc_ms":0.0,"run_ms":26.06,"idle_ms":40.18,"stall_ms":752.03,"io_percent":4.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.36,"run_ms":13.73,"idle_ms":4.08,"stall_ms":0.0,"io_percent":11.4,"method":"GET","action":"users#show"} | |
{"gc_ms":39.12,"run_ms":311.64,"idle_ms":124.2,"stall_ms":1418.47,"io_percent":6.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":147.8,"run_ms":243.89,"idle_ms":571.87,"stall_ms":2686.54,"io_percent":14.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":500.75,"idle_ms":334.18,"stall_ms":1160.01,"io_percent":8.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":23.11,"run_ms":571.0,"idle_ms":522.02,"stall_ms":1756.52,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":56.56,"run_ms":702.47,"idle_ms":201.69,"stall_ms":3024.68,"io_percent":3.0,"method":"GET","action":"home#index"} | |
{"gc_ms":18.4,"run_ms":55.29,"idle_ms":60.48,"stall_ms":683.29,"io_percent":7.4,"method":"GET","action":"home#index"} | |
{"gc_ms":70.72,"run_ms":642.34,"idle_ms":3110.86,"stall_ms":4439.28,"io_percent":33.5,"method":"GET","action":"home#active"} | |
{"gc_ms":1.36,"run_ms":154.73,"idle_ms":66.34,"stall_ms":0.12,"io_percent":18.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":16.75,"idle_ms":13.29,"stall_ms":0.01,"io_percent":34.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":26.13,"idle_ms":5.18,"stall_ms":0.01,"io_percent":12.3,"method":"GET","action":"home#index"} | |
{"gc_ms":736.08,"run_ms":480.72,"idle_ms":3077.51,"stall_ms":3700.04,"io_percent":35.0,"method":"GET","action":"home#active"} | |
{"gc_ms":480.2,"run_ms":205.36,"idle_ms":78.67,"stall_ms":5204.59,"io_percent":1.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":646.15,"run_ms":998.6,"idle_ms":179.28,"stall_ms":1949.72,"io_percent":2.3,"method":"GET","action":"home#index"} | |
{"gc_ms":29.27,"run_ms":168.21,"idle_ms":43.77,"stall_ms":345.46,"io_percent":7.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":54.87,"run_ms":330.32,"idle_ms":362.86,"stall_ms":4958.25,"io_percent":5.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.69,"idle_ms":2.95,"stall_ms":0.01,"io_percent":15.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.39,"run_ms":8.38,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":52.2,"idle_ms":15.21,"stall_ms":0.02,"io_percent":22.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.28,"run_ms":14.44,"idle_ms":2.37,"stall_ms":101.44,"io_percent":2.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.53,"run_ms":15.94,"idle_ms":2.88,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":16.2,"run_ms":45.7,"idle_ms":10.16,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.94,"run_ms":43.29,"idle_ms":3.78,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.15,"run_ms":8.9,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":3.49,"run_ms":47.85,"idle_ms":14.53,"stall_ms":0.02,"io_percent":23.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":49.72,"idle_ms":6.34,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":33.35,"idle_ms":8.69,"stall_ms":0.01,"io_percent":15.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.63,"run_ms":41.96,"idle_ms":12.32,"stall_ms":0.01,"io_percent":22.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":15.4,"run_ms":166.83,"idle_ms":97.57,"stall_ms":0.03,"io_percent":40.7,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.71,"run_ms":13.4,"idle_ms":1.59,"stall_ms":0.0,"io_percent":8.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":33.51,"idle_ms":33.64,"stall_ms":0.02,"io_percent":48.5,"method":"POST","action":"stories#upvote"} | |
{"gc_ms":0.0,"run_ms":6.93,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":46.96,"idle_ms":4.42,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":13.36,"idle_ms":2.2,"stall_ms":0.0,"io_percent":11.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":41.65,"idle_ms":3.19,"stall_ms":0.15,"io_percent":7.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":14.24,"run_ms":63.19,"idle_ms":19.72,"stall_ms":0.02,"io_percent":24.7,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":23.6,"idle_ms":3.83,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.62,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.98,"run_ms":15.6,"idle_ms":1.97,"stall_ms":0.0,"io_percent":11.2,"method":"GET","action":"users#show"} | |
{"gc_ms":2.41,"run_ms":36.77,"idle_ms":33.87,"stall_ms":0.02,"io_percent":48.4,"method":"POST","action":"stories#upvote"} | |
{"gc_ms":0.0,"run_ms":11.12,"idle_ms":0.91,"stall_ms":0.0,"io_percent":7.6,"method":"GET","action":"login#index"} | |
{"gc_ms":5.43,"run_ms":43.76,"idle_ms":4.09,"stall_ms":0.01,"io_percent":8.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.7,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":3.12,"run_ms":43.58,"idle_ms":4.33,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.5,"run_ms":65.75,"idle_ms":37.99,"stall_ms":0.02,"io_percent":36.1,"method":"GET","action":"home#index"} | |
{"gc_ms":11.56,"run_ms":136.38,"idle_ms":29.93,"stall_ms":0.02,"io_percent":20.2,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":2.27,"run_ms":27.19,"idle_ms":3.8,"stall_ms":0.01,"io_percent":13.6,"method":"GET","action":"home#index"} | |
{"gc_ms":3.45,"run_ms":32.87,"idle_ms":2.95,"stall_ms":0.07,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.82,"run_ms":20.44,"idle_ms":5.56,"stall_ms":0.89,"io_percent":25.1,"method":"GET","action":"home#index"} | |
{"gc_ms":5.02,"run_ms":109.48,"idle_ms":62.12,"stall_ms":0.05,"io_percent":38.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.43,"run_ms":32.74,"idle_ms":10.25,"stall_ms":0.01,"io_percent":20.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.22,"run_ms":44.78,"idle_ms":4.09,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.02,"idle_ms":3.72,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":47.23,"idle_ms":14.87,"stall_ms":0.01,"io_percent":24.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.04,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.91,"run_ms":14.03,"idle_ms":5.08,"stall_ms":0.07,"io_percent":23.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":40.18,"idle_ms":14.76,"stall_ms":0.01,"io_percent":27.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.46,"run_ms":70.4,"idle_ms":150.9,"stall_ms":0.02,"io_percent":68.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.4,"idle_ms":3.25,"stall_ms":0.14,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.55,"run_ms":33.52,"idle_ms":173.74,"stall_ms":0.01,"io_percent":84.0,"method":"POST","action":"stories#upvote"} | |
{"gc_ms":1.2,"run_ms":20.96,"idle_ms":3.87,"stall_ms":74.36,"io_percent":4.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":17.49,"idle_ms":2.87,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":5.74,"run_ms":55.86,"idle_ms":4.45,"stall_ms":0.01,"io_percent":7.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.54,"run_ms":7.39,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.83,"run_ms":43.3,"idle_ms":4.14,"stall_ms":0.09,"io_percent":9.3,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":10.88,"idle_ms":2.15,"stall_ms":0.0,"io_percent":16.6,"method":"GET","action":"users#show"} | |
{"gc_ms":11.64,"run_ms":55.48,"idle_ms":3.54,"stall_ms":0.01,"io_percent":6.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.8,"run_ms":28.7,"idle_ms":7.41,"stall_ms":0.01,"io_percent":22.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.16,"run_ms":9.26,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.28,"run_ms":12.76,"idle_ms":3.27,"stall_ms":0.0,"io_percent":20.5,"method":"GET","action":"users#show"} | |
{"gc_ms":20.45,"run_ms":155.68,"idle_ms":36.31,"stall_ms":0.02,"io_percent":20.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.52,"run_ms":43.66,"idle_ms":3.47,"stall_ms":110.37,"io_percent":2.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.34,"run_ms":11.82,"idle_ms":1.23,"stall_ms":0.0,"io_percent":9.4,"method":"GET"} | |
{"gc_ms":2.26,"run_ms":24.37,"idle_ms":2.92,"stall_ms":0.01,"io_percent":12.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.2,"run_ms":18.72,"idle_ms":3.41,"stall_ms":0.01,"io_percent":17.9,"method":"GET","action":"home#index"} | |
{"gc_ms":2.74,"run_ms":38.07,"idle_ms":9.88,"stall_ms":0.05,"io_percent":21.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.81,"run_ms":35.11,"idle_ms":22.82,"stall_ms":0.02,"io_percent":36.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":8.07,"run_ms":130.03,"idle_ms":54.95,"stall_ms":0.03,"io_percent":30.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.52,"run_ms":149.25,"idle_ms":57.44,"stall_ms":0.03,"io_percent":25.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.26,"run_ms":123.89,"idle_ms":130.45,"stall_ms":0.03,"io_percent":51.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":21.05,"idle_ms":3.68,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":3.18,"run_ms":77.37,"idle_ms":215.04,"stall_ms":0.03,"io_percent":73.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.23,"run_ms":6.37,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":45.63,"idle_ms":4.2,"stall_ms":0.01,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.82,"run_ms":13.95,"idle_ms":1.95,"stall_ms":0.0,"io_percent":12.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.33,"run_ms":17.82,"idle_ms":2.75,"stall_ms":0.01,"io_percent":15.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":24.03,"idle_ms":10.02,"stall_ms":0.01,"io_percent":29.2,"method":"GET","action":"users#show"} | |
{"gc_ms":10.97,"run_ms":89.87,"idle_ms":23.72,"stall_ms":0.02,"io_percent":20.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.81,"run_ms":15.05,"idle_ms":1.89,"stall_ms":0.0,"io_percent":11.1,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.26,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.52,"run_ms":18.93,"idle_ms":3.03,"stall_ms":0.74,"io_percent":15.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":44.63,"idle_ms":5.0,"stall_ms":0.08,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.77,"run_ms":7.77,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.18,"run_ms":12.46,"idle_ms":1.94,"stall_ms":0.0,"io_percent":13.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.35,"run_ms":20.13,"idle_ms":2.8,"stall_ms":0.01,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.45,"idle_ms":9.94,"stall_ms":79.52,"io_percent":10.3,"method":"GET","action":"users#show"} | |
{"gc_ms":1.62,"run_ms":47.23,"idle_ms":4.2,"stall_ms":0.06,"io_percent":8.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.4,"run_ms":89.05,"idle_ms":19.87,"stall_ms":0.02,"io_percent":18.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.33,"run_ms":19.95,"idle_ms":3.58,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.07,"run_ms":25.44,"idle_ms":3.73,"stall_ms":2.93,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":36.53,"idle_ms":7.77,"stall_ms":0.01,"io_percent":19.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":7.61,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.29,"run_ms":10.09,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":10.45,"run_ms":91.5,"idle_ms":27.59,"stall_ms":0.02,"io_percent":22.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.86,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.82,"run_ms":41.16,"idle_ms":3.58,"stall_ms":0.01,"io_percent":8.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.3,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.5,"run_ms":11.77,"idle_ms":2.07,"stall_ms":0.0,"io_percent":14.7,"method":"GET","action":"users#show"} | |
{"gc_ms":1.81,"run_ms":20.09,"idle_ms":3.02,"stall_ms":0.01,"io_percent":14.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.04,"idle_ms":2.2,"stall_ms":0.0,"io_percent":15.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.84,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.52,"idle_ms":0.12,"stall_ms":97.87,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":21.97,"idle_ms":3.65,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":6.66,"run_ms":20.85,"idle_ms":1.92,"stall_ms":0.0,"io_percent":8.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":74.87,"idle_ms":95.74,"stall_ms":0.02,"io_percent":56.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.35,"run_ms":13.73,"idle_ms":35.21,"stall_ms":0.0,"io_percent":72.1,"method":"GET","action":"users#show"} | |
{"gc_ms":7.33,"run_ms":47.16,"idle_ms":3.72,"stall_ms":0.01,"io_percent":7.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.61,"run_ms":45.15,"idle_ms":13.54,"stall_ms":0.12,"io_percent":17.0,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":38.14,"idle_ms":14.35,"stall_ms":0.01,"io_percent":24.7,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":0.0,"run_ms":61.81,"idle_ms":158.61,"stall_ms":0.11,"io_percent":71.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":45.4,"idle_ms":18.28,"stall_ms":103.31,"io_percent":11.1,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":1.71,"run_ms":26.32,"idle_ms":5.0,"stall_ms":0.93,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":44.87,"idle_ms":10.05,"stall_ms":0.01,"io_percent":18.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.8,"run_ms":32.67,"idle_ms":11.63,"stall_ms":0.02,"io_percent":26.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.4,"run_ms":40.64,"idle_ms":10.96,"stall_ms":0.01,"io_percent":21.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.65,"run_ms":25.42,"idle_ms":4.29,"stall_ms":0.02,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":16.99,"idle_ms":3.06,"stall_ms":0.01,"io_percent":17.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.37,"run_ms":15.68,"idle_ms":2.12,"stall_ms":0.0,"io_percent":12.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":34.57,"idle_ms":14.43,"stall_ms":0.01,"io_percent":29.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.55,"run_ms":118.44,"idle_ms":31.94,"stall_ms":0.02,"io_percent":24.1,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":67.37,"idle_ms":42.06,"stall_ms":0.02,"io_percent":38.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":7.33,"idle_ms":0.05,"stall_ms":86.04,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.31,"idle_ms":1.94,"stall_ms":0.0,"io_percent":16.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":24.58,"idle_ms":10.1,"stall_ms":0.01,"io_percent":29.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":27.71,"idle_ms":3.18,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.41,"run_ms":18.44,"idle_ms":3.84,"stall_ms":0.01,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.36,"run_ms":31.71,"idle_ms":3.37,"stall_ms":0.01,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":36.23,"idle_ms":9.5,"stall_ms":0.01,"io_percent":21.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.89,"run_ms":49.94,"idle_ms":4.41,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.25,"run_ms":43.9,"idle_ms":4.36,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.25,"run_ms":35.42,"idle_ms":3.48,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.59,"idle_ms":3.66,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.32,"idle_ms":2.95,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.17,"idle_ms":2.58,"stall_ms":0.0,"io_percent":18.7,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":16.07,"run_ms":108.91,"idle_ms":20.97,"stall_ms":0.01,"io_percent":16.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.47,"run_ms":72.58,"idle_ms":66.75,"stall_ms":102.25,"io_percent":28.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":64.9,"idle_ms":11.81,"stall_ms":0.02,"io_percent":12.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.71,"run_ms":40.68,"idle_ms":15.21,"stall_ms":0.02,"io_percent":27.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":11.85,"idle_ms":1.76,"stall_ms":0.0,"io_percent":12.8,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":21.95,"idle_ms":4.1,"stall_ms":0.01,"io_percent":18.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.99,"run_ms":123.88,"idle_ms":30.67,"stall_ms":0.02,"io_percent":21.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.8,"run_ms":38.25,"idle_ms":4.27,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.74,"idle_ms":2.82,"stall_ms":0.01,"io_percent":14.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.81,"idle_ms":3.62,"stall_ms":0.01,"io_percent":20.3,"method":"GET","action":"home#index"} | |
{"gc_ms":12.67,"run_ms":120.01,"idle_ms":22.41,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.43,"run_ms":34.9,"idle_ms":3.67,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.0,"idle_ms":3.44,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.23,"idle_ms":3.0,"stall_ms":0.01,"io_percent":18.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":28.26,"idle_ms":13.72,"stall_ms":0.01,"io_percent":32.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.51,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":1.05,"run_ms":67.17,"idle_ms":281.98,"stall_ms":0.02,"io_percent":80.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":29.46,"idle_ms":2.56,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.47,"idle_ms":1.76,"stall_ms":0.0,"io_percent":12.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.36,"run_ms":22.56,"idle_ms":3.72,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":7.42,"run_ms":46.18,"idle_ms":10.3,"stall_ms":0.01,"io_percent":18.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":43.07,"idle_ms":4.14,"stall_ms":0.01,"io_percent":9.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.73,"idle_ms":3.73,"stall_ms":0.0,"io_percent":20.6,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":6.28,"run_ms":13.48,"idle_ms":0.05,"stall_ms":0.08,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.91,"run_ms":28.47,"idle_ms":12.66,"stall_ms":0.01,"io_percent":30.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":21.07,"idle_ms":4.23,"stall_ms":0.01,"io_percent":19.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.2,"run_ms":13.46,"idle_ms":2.03,"stall_ms":0.0,"io_percent":13.2,"method":"GET","action":"users#show"} | |
{"gc_ms":3.84,"run_ms":55.32,"idle_ms":10.98,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.33,"idle_ms":0.76,"stall_ms":0.0,"io_percent":8.1,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.98,"run_ms":22.9,"idle_ms":3.71,"stall_ms":0.01,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.91,"idle_ms":1.95,"stall_ms":0.0,"io_percent":13.0,"method":"GET","action":"users#show"} | |
{"gc_ms":1.33,"run_ms":27.43,"idle_ms":9.19,"stall_ms":0.01,"io_percent":24.8,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":14.71,"idle_ms":3.79,"stall_ms":0.0,"io_percent":19.9,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":7.15,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.25,"run_ms":11.93,"idle_ms":4.38,"stall_ms":0.0,"io_percent":26.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":37.22,"idle_ms":12.31,"stall_ms":0.01,"io_percent":24.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.32,"run_ms":11.23,"idle_ms":0.85,"stall_ms":0.0,"io_percent":6.0,"method":"GET","action":"search#index"} | |
{"gc_ms":8.21,"run_ms":48.65,"idle_ms":10.39,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.39,"run_ms":15.88,"idle_ms":3.13,"stall_ms":0.0,"io_percent":16.6,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":1.6,"run_ms":7.59,"idle_ms":0.06,"stall_ms":131.91,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":1.86,"run_ms":25.95,"idle_ms":4.53,"stall_ms":0.01,"io_percent":12.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.74,"idle_ms":1.39,"stall_ms":0.0,"io_percent":12.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":8.98,"idle_ms":0.71,"stall_ms":0.0,"io_percent":7.2,"method":"GET","action":"login#index"} | |
{"gc_ms":2.95,"run_ms":43.74,"idle_ms":3.68,"stall_ms":0.08,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.8,"run_ms":9.03,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.12,"run_ms":12.77,"idle_ms":1.91,"stall_ms":111.57,"io_percent":1.5,"method":"GET","action":"users#show"} | |
{"gc_ms":11.3,"run_ms":121.37,"idle_ms":30.1,"stall_ms":0.02,"io_percent":20.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.69,"run_ms":40.41,"idle_ms":3.84,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.1,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.49,"idle_ms":1.95,"stall_ms":0.0,"io_percent":11.3,"method":"GET","action":"users#show"} | |
{"gc_ms":3.59,"run_ms":81.83,"idle_ms":61.96,"stall_ms":0.02,"io_percent":42.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.38,"idle_ms":3.72,"stall_ms":0.3,"io_percent":12.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.11,"run_ms":53.11,"idle_ms":17.83,"stall_ms":0.01,"io_percent":23.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.66,"run_ms":52.85,"idle_ms":19.08,"stall_ms":0.04,"io_percent":23.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":18.47,"run_ms":157.8,"idle_ms":45.71,"stall_ms":0.02,"io_percent":22.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":7.86,"idle_ms":0.08,"stall_ms":153.12,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.48,"run_ms":12.23,"idle_ms":1.73,"stall_ms":0.0,"io_percent":12.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.16,"run_ms":30.79,"idle_ms":5.64,"stall_ms":0.22,"io_percent":10.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":13.86,"idle_ms":1.14,"stall_ms":0.0,"io_percent":5.6,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":53.75,"idle_ms":25.06,"stall_ms":0.01,"io_percent":31.8,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":12.99,"idle_ms":0.69,"stall_ms":0.0,"io_percent":4.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":46.63,"idle_ms":19.18,"stall_ms":0.02,"io_percent":29.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.77,"run_ms":23.4,"idle_ms":3.87,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":17.8,"run_ms":188.21,"idle_ms":122.32,"stall_ms":0.03,"io_percent":43.0,"method":"GET","action":"home#category"} | |
{"gc_ms":0.38,"run_ms":27.13,"idle_ms":0.68,"stall_ms":0.0,"io_percent":2.4,"method":"GET"} | |
{"gc_ms":0.96,"run_ms":14.23,"idle_ms":0.81,"stall_ms":1.95,"io_percent":4.2,"method":"GET"} | |
{"gc_ms":14.0,"run_ms":36.54,"idle_ms":3.25,"stall_ms":0.16,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":3.21,"run_ms":190.19,"idle_ms":51.57,"stall_ms":0.03,"io_percent":24.9,"method":"GET","action":"home#index"} | |
{"gc_ms":10.03,"run_ms":36.9,"idle_ms":4.49,"stall_ms":0.02,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":2.17,"run_ms":28.81,"idle_ms":4.92,"stall_ms":260.29,"io_percent":1.7,"method":"GET","action":"home#index"} | |
{"gc_ms":5.5,"run_ms":248.36,"idle_ms":43.77,"stall_ms":0.02,"io_percent":14.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":41.61,"idle_ms":4.09,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":14.39,"run_ms":64.33,"idle_ms":3.34,"stall_ms":0.01,"io_percent":5.0,"method":"GET","action":"home#index"} | |
{"gc_ms":2.94,"run_ms":13.82,"idle_ms":1.11,"stall_ms":0.0,"io_percent":7.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":20.7,"idle_ms":18.19,"stall_ms":0.01,"io_percent":40.6,"method":"GET","action":"users#show"} | |
{"gc_ms":5.08,"run_ms":91.45,"idle_ms":30.05,"stall_ms":0.06,"io_percent":21.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":10.01,"run_ms":180.42,"idle_ms":53.01,"stall_ms":0.03,"io_percent":25.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.28,"run_ms":11.18,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":73.88,"idle_ms":42.8,"stall_ms":0.02,"io_percent":44.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.32,"run_ms":115.4,"idle_ms":371.6,"stall_ms":0.04,"io_percent":77.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":176.65,"idle_ms":94.34,"stall_ms":0.03,"io_percent":36.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":4.84,"run_ms":56.13,"idle_ms":5.75,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":13.37,"run_ms":227.26,"idle_ms":116.71,"stall_ms":0.04,"io_percent":35.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.1,"run_ms":28.66,"idle_ms":4.17,"stall_ms":0.01,"io_percent":12.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.66,"run_ms":20.43,"idle_ms":3.42,"stall_ms":0.18,"io_percent":16.0,"method":"GET","action":"home#index"} | |
{"gc_ms":3.65,"run_ms":52.67,"idle_ms":3.2,"stall_ms":0.01,"io_percent":6.0,"method":"GET","action":"home#active"} | |
{"gc_ms":3.26,"run_ms":96.3,"idle_ms":68.3,"stall_ms":0.02,"io_percent":40.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.83,"run_ms":16.37,"idle_ms":3.36,"stall_ms":105.09,"io_percent":2.8,"method":"GET","action":"users#show"} | |
{"gc_ms":1.39,"run_ms":61.03,"idle_ms":15.18,"stall_ms":0.02,"io_percent":19.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":11.1,"run_ms":66.21,"idle_ms":4.38,"stall_ms":0.01,"io_percent":5.0,"method":"GET","action":"home#index"} | |
{"gc_ms":2.24,"run_ms":39.14,"idle_ms":7.4,"stall_ms":0.01,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.28,"run_ms":10.75,"idle_ms":0.05,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":233.12,"idle_ms":194.33,"stall_ms":0.03,"io_percent":45.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.45,"run_ms":90.2,"idle_ms":134.34,"stall_ms":0.02,"io_percent":37.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.61,"run_ms":79.44,"idle_ms":6.88,"stall_ms":5.54,"io_percent":3.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.52,"run_ms":94.87,"idle_ms":19.04,"stall_ms":0.01,"io_percent":10.5,"method":"GET","action":"home#active"} | |
{"gc_ms":6.58,"run_ms":207.51,"idle_ms":154.54,"stall_ms":0.56,"io_percent":40.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.41,"run_ms":29.21,"idle_ms":4.07,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":182.11,"idle_ms":173.83,"stall_ms":2.93,"io_percent":38.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.12,"run_ms":28.52,"idle_ms":6.43,"stall_ms":0.41,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":3.27,"run_ms":74.9,"idle_ms":19.67,"stall_ms":0.02,"io_percent":17.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.51,"run_ms":108.76,"idle_ms":43.59,"stall_ms":0.04,"io_percent":23.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.79,"run_ms":10.87,"idle_ms":0.05,"stall_ms":106.8,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.41,"run_ms":16.83,"idle_ms":2.26,"stall_ms":0.0,"io_percent":11.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.35,"run_ms":28.18,"idle_ms":10.67,"stall_ms":0.01,"io_percent":28.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.47,"run_ms":23.37,"idle_ms":3.86,"stall_ms":0.01,"io_percent":12.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.48,"run_ms":48.15,"idle_ms":40.76,"stall_ms":0.05,"io_percent":37.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.8,"run_ms":202.6,"idle_ms":96.49,"stall_ms":0.05,"io_percent":32.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.92,"run_ms":91.26,"idle_ms":333.54,"stall_ms":0.02,"io_percent":75.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.62,"run_ms":25.6,"idle_ms":3.95,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":118.79,"idle_ms":45.51,"stall_ms":0.03,"io_percent":29.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":35.2,"run_ms":315.05,"idle_ms":421.12,"stall_ms":165.26,"io_percent":47.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.23,"run_ms":24.15,"idle_ms":4.03,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.34,"run_ms":37.14,"idle_ms":6.3,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":3.45,"run_ms":45.85,"idle_ms":17.79,"stall_ms":0.01,"io_percent":28.1,"method":"GET","action":"comments#index"} | |
{"gc_ms":1.69,"run_ms":26.86,"idle_ms":3.85,"stall_ms":0.01,"io_percent":11.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.41,"run_ms":37.77,"idle_ms":17.2,"stall_ms":0.03,"io_percent":29.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.14,"run_ms":232.78,"idle_ms":75.15,"stall_ms":0.16,"io_percent":27.9,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":53.66,"idle_ms":16.08,"stall_ms":0.02,"io_percent":22.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":27.19,"idle_ms":4.63,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.81,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.31,"idle_ms":2.1,"stall_ms":0.0,"io_percent":12.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":52.01,"idle_ms":17.54,"stall_ms":0.02,"io_percent":25.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":23.46,"idle_ms":4.7,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":17.37,"run_ms":214.91,"idle_ms":170.59,"stall_ms":0.04,"io_percent":44.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.39,"run_ms":90.44,"idle_ms":6.79,"stall_ms":0.02,"io_percent":7.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.66,"run_ms":11.15,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":36.33,"idle_ms":26.18,"stall_ms":0.02,"io_percent":41.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.73,"run_ms":30.46,"idle_ms":3.8,"stall_ms":0.01,"io_percent":12.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.52,"idle_ms":2.49,"stall_ms":0.0,"io_percent":14.5,"method":"GET","action":"users#show"} | |
{"gc_ms":1.21,"run_ms":33.99,"idle_ms":11.59,"stall_ms":0.01,"io_percent":25.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.03,"run_ms":77.05,"idle_ms":4.03,"stall_ms":0.01,"io_percent":5.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.35,"run_ms":24.16,"idle_ms":3.6,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":14.61,"run_ms":213.81,"idle_ms":175.86,"stall_ms":0.06,"io_percent":46.6,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":21.71,"idle_ms":3.5,"stall_ms":0.01,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.47,"run_ms":11.23,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.42,"idle_ms":3.85,"stall_ms":0.0,"io_percent":21.0,"method":"GET","action":"users#show"} | |
{"gc_ms":1.61,"run_ms":63.06,"idle_ms":4.52,"stall_ms":0.01,"io_percent":7.0,"method":"GET","action":"home#index"} | |
{"gc_ms":24.08,"run_ms":73.19,"idle_ms":4.71,"stall_ms":0.01,"io_percent":6.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.55,"run_ms":32.71,"idle_ms":12.84,"stall_ms":0.03,"io_percent":28.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.62,"run_ms":40.47,"idle_ms":2.63,"stall_ms":0.01,"io_percent":6.4,"method":"GET","action":"home#top"} | |
{"gc_ms":0.36,"run_ms":11.62,"idle_ms":0.56,"stall_ms":0.0,"io_percent":4.7,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":46.06,"idle_ms":16.68,"stall_ms":0.02,"io_percent":25.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.14,"run_ms":36.6,"idle_ms":2.51,"stall_ms":0.01,"io_percent":6.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":4.83,"run_ms":166.13,"idle_ms":27.61,"stall_ms":0.22,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.22,"run_ms":20.38,"idle_ms":3.43,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":85.64,"idle_ms":21.97,"stall_ms":0.04,"io_percent":20.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.32,"run_ms":38.66,"idle_ms":7.98,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":14.97,"run_ms":121.15,"idle_ms":21.94,"stall_ms":0.02,"io_percent":15.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.7,"run_ms":50.49,"idle_ms":4.6,"stall_ms":0.01,"io_percent":8.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":42.74,"idle_ms":4.41,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":5.14,"run_ms":196.68,"idle_ms":75.03,"stall_ms":0.03,"io_percent":29.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":58.44,"idle_ms":27.36,"stall_ms":0.02,"io_percent":34.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.53,"run_ms":55.14,"idle_ms":4.64,"stall_ms":0.01,"io_percent":8.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.8,"run_ms":44.88,"idle_ms":14.12,"stall_ms":95.7,"io_percent":9.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":39.94,"idle_ms":3.83,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.36,"run_ms":8.91,"idle_ms":4.56,"stall_ms":0.0,"io_percent":27.9,"method":"GET"} | |
{"gc_ms":1.91,"run_ms":18.1,"idle_ms":1.46,"stall_ms":128.15,"io_percent":1.0,"method":"GET"} | |
{"gc_ms":1.57,"run_ms":36.83,"idle_ms":9.89,"stall_ms":0.87,"io_percent":21.7,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":58.38,"idle_ms":15.83,"stall_ms":0.02,"io_percent":16.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":102.65,"idle_ms":43.19,"stall_ms":0.03,"io_percent":27.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.3,"idle_ms":2.96,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.16,"idle_ms":4.79,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":12.41,"run_ms":69.94,"idle_ms":20.1,"stall_ms":0.02,"io_percent":22.2,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.91,"run_ms":15.73,"idle_ms":1.85,"stall_ms":0.0,"io_percent":9.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":44.55,"idle_ms":17.59,"stall_ms":0.02,"io_percent":28.5,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":6.82,"run_ms":6.68,"idle_ms":0.04,"stall_ms":128.53,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.96,"run_ms":10.43,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":4.45,"run_ms":40.14,"idle_ms":8.67,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.0,"run_ms":10.92,"idle_ms":3.37,"stall_ms":0.0,"io_percent":23.5,"method":"GET","action":"users#show"} | |
{"gc_ms":1.19,"run_ms":14.84,"idle_ms":2.42,"stall_ms":0.0,"io_percent":14.1,"method":"GET","action":"users#show"} | |
{"gc_ms":3.6,"run_ms":64.3,"idle_ms":25.29,"stall_ms":0.02,"io_percent":28.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.29,"run_ms":24.36,"idle_ms":6.38,"stall_ms":0.01,"io_percent":22.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":26.92,"idle_ms":8.29,"stall_ms":0.01,"io_percent":24.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":40.77,"idle_ms":4.0,"stall_ms":0.01,"io_percent":9.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":39.24,"idle_ms":12.72,"stall_ms":0.01,"io_percent":22.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.21,"run_ms":136.71,"idle_ms":273.82,"stall_ms":0.02,"io_percent":67.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":48.58,"idle_ms":4.26,"stall_ms":0.01,"io_percent":7.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.64,"run_ms":26.07,"idle_ms":3.02,"stall_ms":0.01,"io_percent":10.5,"method":"GET","action":"about#about"} | |
{"gc_ms":13.76,"run_ms":108.41,"idle_ms":128.31,"stall_ms":0.03,"io_percent":54.4,"method":"GET","action":"home#index"} | |
{"gc_ms":4.54,"run_ms":50.52,"idle_ms":4.37,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.73,"idle_ms":2.98,"stall_ms":0.0,"io_percent":11.0,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":1.9,"run_ms":59.6,"idle_ms":30.61,"stall_ms":0.02,"io_percent":34.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.73,"run_ms":54.6,"idle_ms":10.32,"stall_ms":0.12,"io_percent":14.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":210.7,"idle_ms":77.2,"stall_ms":0.03,"io_percent":30.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":7.59,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":2.41,"run_ms":17.14,"idle_ms":3.17,"stall_ms":117.44,"io_percent":2.3,"method":"GET","action":"users#show"} | |
{"gc_ms":11.53,"run_ms":51.79,"idle_ms":7.62,"stall_ms":0.01,"io_percent":13.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":8.71,"idle_ms":0.04,"stall_ms":0.15,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":13.97,"idle_ms":2.68,"stall_ms":0.0,"io_percent":16.2,"method":"GET","action":"users#show"} | |
{"gc_ms":1.16,"run_ms":43.74,"idle_ms":3.84,"stall_ms":0.12,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":4.34,"run_ms":154.91,"idle_ms":39.5,"stall_ms":0.03,"io_percent":22.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.25,"run_ms":16.3,"idle_ms":0.9,"stall_ms":170.05,"io_percent":0.5,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":144.37,"idle_ms":71.11,"stall_ms":0.03,"io_percent":34.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":219.16,"idle_ms":118.18,"stall_ms":0.04,"io_percent":40.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":27.31,"idle_ms":3.67,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":159.64,"idle_ms":43.0,"stall_ms":0.07,"io_percent":22.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.6,"run_ms":14.42,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.09,"idle_ms":6.32,"stall_ms":0.0,"io_percent":27.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":27.75,"idle_ms":5.79,"stall_ms":0.02,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.59,"run_ms":90.76,"idle_ms":181.27,"stall_ms":0.03,"io_percent":66.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.75,"run_ms":45.87,"idle_ms":12.31,"stall_ms":0.02,"io_percent":21.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":21.77,"idle_ms":3.45,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.4,"run_ms":86.86,"idle_ms":199.62,"stall_ms":0.03,"io_percent":69.6,"method":"GET","action":"home#index"} | |
{"gc_ms":7.93,"run_ms":16.04,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":16.04,"idle_ms":2.98,"stall_ms":0.0,"io_percent":12.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":48.97,"idle_ms":21.14,"stall_ms":0.02,"io_percent":31.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.3,"run_ms":21.12,"idle_ms":3.48,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.78,"run_ms":22.6,"idle_ms":3.92,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.34,"run_ms":20.26,"idle_ms":2.94,"stall_ms":0.01,"io_percent":12.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":51.55,"idle_ms":8.23,"stall_ms":0.07,"io_percent":14.5,"method":"GET","action":"home#index"} | |
{"gc_ms":9.79,"run_ms":187.0,"idle_ms":76.22,"stall_ms":0.05,"io_percent":32.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.88,"run_ms":33.94,"idle_ms":9.54,"stall_ms":0.01,"io_percent":22.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.99,"run_ms":74.62,"idle_ms":342.55,"stall_ms":0.04,"io_percent":82.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":10.73,"idle_ms":0.71,"stall_ms":0.0,"io_percent":6.3,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":36.07,"idle_ms":10.14,"stall_ms":0.01,"io_percent":21.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":47.99,"idle_ms":6.21,"stall_ms":0.02,"io_percent":12.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.01,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":8.08,"run_ms":160.61,"idle_ms":66.63,"stall_ms":0.31,"io_percent":30.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.33,"run_ms":44.49,"idle_ms":5.92,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"comments#index"} | |
{"gc_ms":11.19,"run_ms":72.59,"idle_ms":9.9,"stall_ms":0.01,"io_percent":12.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.3,"run_ms":43.89,"idle_ms":3.68,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":13.26,"idle_ms":3.98,"stall_ms":0.0,"io_percent":23.2,"method":"GET","action":"users#show"} | |
{"gc_ms":1.74,"run_ms":47.94,"idle_ms":5.51,"stall_ms":0.89,"io_percent":10.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.75,"idle_ms":3.44,"stall_ms":0.0,"io_percent":16.4,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":2.99,"run_ms":34.23,"idle_ms":9.07,"stall_ms":0.01,"io_percent":21.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.28,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.56,"run_ms":44.37,"idle_ms":11.12,"stall_ms":0.02,"io_percent":20.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.34,"run_ms":13.86,"idle_ms":2.09,"stall_ms":0.0,"io_percent":13.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.39,"run_ms":13.64,"idle_ms":0.68,"stall_ms":0.0,"io_percent":4.7,"method":"GET","action":"login#index"} | |
{"gc_ms":7.82,"run_ms":30.18,"idle_ms":3.98,"stall_ms":113.31,"io_percent":2.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.62,"run_ms":21.0,"idle_ms":4.12,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.7,"run_ms":18.09,"idle_ms":3.16,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.28,"run_ms":24.44,"idle_ms":4.76,"stall_ms":0.01,"io_percent":18.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.16,"run_ms":49.91,"idle_ms":6.28,"stall_ms":0.02,"io_percent":11.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.02,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":2.44,"run_ms":24.55,"idle_ms":2.67,"stall_ms":0.05,"io_percent":8.1,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":15.46,"idle_ms":1.73,"stall_ms":118.85,"io_percent":1.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":34.95,"idle_ms":8.79,"stall_ms":0.02,"io_percent":20.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.4,"run_ms":41.55,"idle_ms":4.52,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.95,"run_ms":18.08,"idle_ms":2.79,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.17,"run_ms":26.17,"idle_ms":20.06,"stall_ms":0.01,"io_percent":43.5,"method":"GET","action":"search#index"} | |
{"gc_ms":16.64,"run_ms":183.78,"idle_ms":504.41,"stall_ms":0.03,"io_percent":72.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.34,"run_ms":48.41,"idle_ms":7.46,"stall_ms":0.12,"io_percent":14.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.09,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.76,"run_ms":11.47,"idle_ms":2.09,"stall_ms":0.0,"io_percent":15.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.11,"run_ms":17.95,"idle_ms":13.55,"stall_ms":94.89,"io_percent":11.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.87,"run_ms":25.1,"idle_ms":6.0,"stall_ms":0.01,"io_percent":22.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.72,"run_ms":28.21,"idle_ms":7.3,"stall_ms":0.01,"io_percent":25.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":33.92,"idle_ms":4.24,"stall_ms":0.01,"io_percent":10.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.06,"run_ms":26.77,"idle_ms":18.59,"stall_ms":0.02,"io_percent":45.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":27.28,"idle_ms":8.38,"stall_ms":0.01,"io_percent":24.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.01,"run_ms":54.32,"idle_ms":4.6,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":54.92,"idle_ms":21.76,"stall_ms":0.01,"io_percent":30.2,"method":"GET","action":"users#show"} | |
{"gc_ms":2.7,"run_ms":43.6,"idle_ms":17.97,"stall_ms":0.01,"io_percent":29.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":61.54,"idle_ms":18.73,"stall_ms":0.77,"io_percent":23.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":21.92,"idle_ms":3.9,"stall_ms":0.01,"io_percent":17.8,"method":"GET","action":"home#index"} | |
{"gc_ms":8.39,"run_ms":210.5,"idle_ms":73.89,"stall_ms":0.56,"io_percent":28.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.2,"run_ms":41.88,"idle_ms":9.16,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.73,"run_ms":53.35,"idle_ms":9.2,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.44,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.35,"run_ms":18.62,"idle_ms":4.44,"stall_ms":0.02,"io_percent":12.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":62.97,"idle_ms":5.59,"stall_ms":0.12,"io_percent":6.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.25,"idle_ms":2.16,"stall_ms":0.0,"io_percent":9.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":63.55,"idle_ms":21.08,"stall_ms":0.02,"io_percent":24.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.1,"run_ms":30.15,"idle_ms":12.22,"stall_ms":0.02,"io_percent":28.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.71,"run_ms":29.88,"idle_ms":6.95,"stall_ms":1.89,"io_percent":18.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.05,"run_ms":16.86,"idle_ms":0.76,"stall_ms":0.0,"io_percent":4.3,"method":"GET"} | |
{"gc_ms":0.73,"run_ms":26.54,"idle_ms":3.69,"stall_ms":0.01,"io_percent":13.7,"method":"GET","action":"home#index"} | |
{"gc_ms":11.23,"run_ms":80.26,"idle_ms":12.24,"stall_ms":124.14,"io_percent":5.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.52,"run_ms":18.61,"idle_ms":3.43,"stall_ms":0.0,"io_percent":15.6,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":24.48,"idle_ms":3.84,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":42.6,"idle_ms":3.67,"stall_ms":0.01,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":34.17,"idle_ms":13.86,"stall_ms":0.01,"io_percent":29.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":8.98,"run_ms":63.33,"idle_ms":11.41,"stall_ms":0.02,"io_percent":15.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.28,"run_ms":49.73,"idle_ms":15.11,"stall_ms":0.02,"io_percent":23.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":21.93,"idle_ms":17.73,"stall_ms":0.01,"io_percent":50.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.3,"run_ms":23.47,"idle_ms":3.49,"stall_ms":0.01,"io_percent":13.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.95,"run_ms":17.85,"idle_ms":6.57,"stall_ms":0.01,"io_percent":27.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.95,"run_ms":47.34,"idle_ms":4.89,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":177.11,"idle_ms":56.72,"stall_ms":0.03,"io_percent":27.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":8.85,"idle_ms":0.03,"stall_ms":0.02,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.33,"run_ms":25.05,"idle_ms":4.88,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.8,"run_ms":67.23,"idle_ms":19.57,"stall_ms":0.02,"io_percent":21.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":36.2,"idle_ms":25.92,"stall_ms":0.01,"io_percent":41.5,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":17.92,"idle_ms":3.92,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.73,"idle_ms":0.07,"stall_ms":109.98,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.68,"idle_ms":2.17,"stall_ms":0.0,"io_percent":12.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":30.21,"idle_ms":6.23,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.36,"run_ms":24.74,"idle_ms":3.8,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.86,"run_ms":33.72,"idle_ms":12.0,"stall_ms":0.01,"io_percent":26.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":31.11,"idle_ms":7.14,"stall_ms":0.01,"io_percent":18.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.63,"run_ms":38.32,"idle_ms":15.1,"stall_ms":0.01,"io_percent":28.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":8.91,"run_ms":81.5,"idle_ms":23.66,"stall_ms":0.03,"io_percent":22.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.02,"run_ms":63.41,"idle_ms":7.66,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.57,"run_ms":22.94,"idle_ms":3.63,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.42,"run_ms":19.09,"idle_ms":2.93,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.75,"run_ms":20.66,"idle_ms":3.89,"stall_ms":0.01,"io_percent":18.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.43,"run_ms":18.14,"idle_ms":4.07,"stall_ms":0.01,"io_percent":18.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.52,"run_ms":44.61,"idle_ms":3.94,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":5.74,"run_ms":94.98,"idle_ms":27.41,"stall_ms":0.03,"io_percent":22.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.28,"run_ms":40.87,"idle_ms":3.6,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":26.51,"idle_ms":11.44,"stall_ms":0.01,"io_percent":30.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":42.33,"idle_ms":5.47,"stall_ms":0.01,"io_percent":11.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":24.18,"idle_ms":12.35,"stall_ms":0.01,"io_percent":34.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.68,"run_ms":8.43,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":2.24,"run_ms":27.11,"idle_ms":3.32,"stall_ms":0.01,"io_percent":12.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.54,"idle_ms":0.04,"stall_ms":0.26,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":1.84,"run_ms":10.08,"idle_ms":2.2,"stall_ms":0.0,"io_percent":18.0,"method":"GET"} | |
{"gc_ms":3.24,"run_ms":41.44,"idle_ms":3.54,"stall_ms":0.01,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.97,"run_ms":15.42,"idle_ms":3.75,"stall_ms":0.0,"io_percent":19.3,"method":"GET","action":"users#show"} | |
{"gc_ms":1.25,"run_ms":38.33,"idle_ms":14.15,"stall_ms":0.01,"io_percent":26.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":9.84,"run_ms":109.63,"idle_ms":12.23,"stall_ms":0.02,"io_percent":9.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":137.78,"idle_ms":75.85,"stall_ms":0.03,"io_percent":37.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":13.07,"idle_ms":2.05,"stall_ms":0.0,"io_percent":13.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.25,"run_ms":12.69,"idle_ms":3.19,"stall_ms":0.0,"io_percent":19.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.89,"run_ms":93.4,"idle_ms":419.23,"stall_ms":0.02,"io_percent":79.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.35,"run_ms":38.33,"idle_ms":15.95,"stall_ms":0.01,"io_percent":28.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.28,"run_ms":19.77,"idle_ms":4.47,"stall_ms":0.01,"io_percent":18.6,"method":"GET"} | |
{"gc_ms":0.6,"run_ms":21.17,"idle_ms":3.1,"stall_ms":0.01,"io_percent":11.2,"method":"GET"} | |
{"gc_ms":0.63,"run_ms":17.88,"idle_ms":4.16,"stall_ms":0.01,"io_percent":18.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.32,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.56,"run_ms":13.79,"idle_ms":2.33,"stall_ms":0.0,"io_percent":14.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":26.88,"idle_ms":3.75,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":4.84,"run_ms":63.99,"idle_ms":5.25,"stall_ms":0.1,"io_percent":6.8,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.91,"run_ms":21.84,"idle_ms":3.28,"stall_ms":0.01,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":7.18,"run_ms":31.06,"idle_ms":3.74,"stall_ms":0.01,"io_percent":12.0,"method":"GET","action":"home#index"} | |
{"gc_ms":7.89,"run_ms":23.5,"idle_ms":7.17,"stall_ms":0.02,"io_percent":23.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.14,"run_ms":37.19,"idle_ms":4.02,"stall_ms":0.01,"io_percent":10.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.2,"run_ms":15.74,"idle_ms":4.31,"stall_ms":0.01,"io_percent":21.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":19.38,"idle_ms":2.91,"stall_ms":0.01,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":3.71,"run_ms":45.22,"idle_ms":4.01,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.21,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":4.46,"run_ms":45.01,"idle_ms":18.57,"stall_ms":0.01,"io_percent":32.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.68,"run_ms":105.77,"idle_ms":28.86,"stall_ms":0.02,"io_percent":23.2,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":12.61,"idle_ms":2.38,"stall_ms":0.0,"io_percent":15.6,"method":"GET","action":"users#show"} | |
{"gc_ms":2.03,"run_ms":16.55,"idle_ms":1.88,"stall_ms":0.0,"io_percent":10.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":77.75,"idle_ms":15.08,"stall_ms":0.03,"io_percent":16.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.23,"run_ms":13.88,"idle_ms":192.85,"stall_ms":0.0,"io_percent":93.2,"method":"GET","action":"home#newest"} | |
{"gc_ms":1.07,"run_ms":173.93,"idle_ms":2518.68,"stall_ms":0.06,"io_percent":94.4,"method":"GET","action":"home#active"} | |
{"gc_ms":11.84,"run_ms":59.61,"idle_ms":4.72,"stall_ms":0.01,"io_percent":7.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.11,"run_ms":31.93,"idle_ms":6.52,"stall_ms":0.02,"io_percent":14.1,"method":"GET","action":"home#index"} | |
{"gc_ms":7.53,"run_ms":87.8,"idle_ms":187.77,"stall_ms":0.02,"io_percent":68.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.93,"run_ms":25.6,"idle_ms":4.04,"stall_ms":0.21,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":4.96,"run_ms":82.9,"idle_ms":323.36,"stall_ms":0.02,"io_percent":79.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.37,"run_ms":46.61,"idle_ms":9.97,"stall_ms":0.02,"io_percent":17.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":29.26,"idle_ms":3.95,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.59,"idle_ms":2.3,"stall_ms":0.08,"io_percent":15.1,"method":"HEAD","action":"users#show"} | |
{"gc_ms":2.01,"run_ms":132.13,"idle_ms":127.14,"stall_ms":0.03,"io_percent":54.7,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":20.52,"idle_ms":3.31,"stall_ms":0.01,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.75,"idle_ms":3.74,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.95,"run_ms":53.6,"idle_ms":23.19,"stall_ms":0.02,"io_percent":31.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.99,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":8.68,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":35.9,"idle_ms":287.14,"stall_ms":0.02,"io_percent":88.7,"method":"POST","action":"stories#upvote"} | |
{"gc_ms":1.65,"run_ms":63.92,"idle_ms":31.08,"stall_ms":0.02,"io_percent":33.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.14,"run_ms":36.76,"idle_ms":14.83,"stall_ms":0.01,"io_percent":29.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.11,"run_ms":160.58,"idle_ms":47.62,"stall_ms":0.04,"io_percent":24.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.63,"run_ms":13.28,"idle_ms":1.99,"stall_ms":0.0,"io_percent":13.1,"method":"GET","action":"users#show"} | |
{"gc_ms":1.4,"run_ms":34.55,"idle_ms":11.39,"stall_ms":0.01,"io_percent":25.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.52,"run_ms":12.66,"idle_ms":2.3,"stall_ms":0.0,"io_percent":15.5,"method":"HEAD","action":"users#show"} | |
{"gc_ms":1.53,"run_ms":28.16,"idle_ms":10.22,"stall_ms":0.01,"io_percent":26.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.78,"run_ms":149.89,"idle_ms":46.02,"stall_ms":0.04,"io_percent":29.0,"method":"GET","action":"home#index"} | |
{"gc_ms":2.53,"run_ms":27.26,"idle_ms":3.56,"stall_ms":0.01,"io_percent":13.0,"method":"GET","action":"home#index"} | |
{"gc_ms":8.08,"run_ms":38.3,"idle_ms":11.51,"stall_ms":0.01,"io_percent":23.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":51.9,"idle_ms":3.78,"stall_ms":0.01,"io_percent":7.2,"method":"GET","action":"home#active"} | |
{"gc_ms":4.16,"run_ms":158.07,"idle_ms":67.76,"stall_ms":0.09,"io_percent":33.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":27.79,"idle_ms":8.65,"stall_ms":0.01,"io_percent":24.0,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":2.74,"run_ms":32.16,"idle_ms":11.9,"stall_ms":0.01,"io_percent":27.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":31.62,"idle_ms":10.23,"stall_ms":0.01,"io_percent":24.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.32,"run_ms":10.27,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.79,"run_ms":46.13,"idle_ms":16.98,"stall_ms":123.83,"io_percent":9.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.81,"run_ms":8.67,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":4.12,"run_ms":50.6,"idle_ms":4.42,"stall_ms":0.01,"io_percent":8.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.35,"run_ms":14.93,"idle_ms":2.08,"stall_ms":0.0,"io_percent":12.4,"method":"GET","action":"users#show"} | |
{"gc_ms":2.52,"run_ms":38.42,"idle_ms":3.79,"stall_ms":0.16,"io_percent":9.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.35,"run_ms":9.48,"idle_ms":5.56,"stall_ms":0.01,"io_percent":37.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":13.35,"idle_ms":2.04,"stall_ms":0.0,"io_percent":12.4,"method":"GET","action":"users#show"} | |
{"gc_ms":3.19,"run_ms":51.18,"idle_ms":3.98,"stall_ms":0.01,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.41,"run_ms":20.5,"idle_ms":3.0,"stall_ms":0.01,"io_percent":14.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.3,"idle_ms":1.21,"stall_ms":0.0,"io_percent":7.4,"method":"GET"} | |
{"gc_ms":15.94,"run_ms":182.53,"idle_ms":69.01,"stall_ms":0.03,"io_percent":29.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.42,"run_ms":14.23,"idle_ms":8.2,"stall_ms":0.0,"io_percent":25.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":47.75,"idle_ms":4.89,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.22,"run_ms":12.09,"idle_ms":1.65,"stall_ms":0.0,"io_percent":12.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.05,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.41,"run_ms":17.22,"idle_ms":3.14,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.36,"run_ms":12.42,"idle_ms":2.51,"stall_ms":0.0,"io_percent":17.0,"method":"GET","action":"users#show"} | |
{"gc_ms":4.57,"run_ms":84.83,"idle_ms":372.29,"stall_ms":0.02,"io_percent":81.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":95.8,"idle_ms":329.94,"stall_ms":0.03,"io_percent":78.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.35,"run_ms":25.91,"idle_ms":3.87,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.74,"run_ms":31.19,"idle_ms":11.56,"stall_ms":0.09,"io_percent":26.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":25.25,"idle_ms":3.19,"stall_ms":0.01,"io_percent":7.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.27,"run_ms":19.49,"idle_ms":3.18,"stall_ms":0.01,"io_percent":14.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.05,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":3.38,"run_ms":61.46,"idle_ms":14.81,"stall_ms":0.02,"io_percent":19.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":94.36,"idle_ms":160.67,"stall_ms":0.08,"io_percent":62.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.88,"run_ms":213.42,"idle_ms":49.78,"stall_ms":0.03,"io_percent":21.4,"method":"GET","action":"home#newest"} | |
{"gc_ms":1.11,"run_ms":20.5,"idle_ms":6.82,"stall_ms":0.0,"io_percent":25.1,"method":"GET","action":"users#show"} | |
{"gc_ms":7.38,"run_ms":107.09,"idle_ms":40.25,"stall_ms":0.02,"io_percent":26.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.15,"run_ms":220.85,"idle_ms":799.93,"stall_ms":0.04,"io_percent":80.1,"method":"GET","action":"home#recent"} | |
{"gc_ms":0.0,"run_ms":63.86,"idle_ms":7.91,"stall_ms":0.01,"io_percent":12.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":64.01,"idle_ms":19.49,"stall_ms":0.02,"io_percent":23.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":35.04,"idle_ms":12.29,"stall_ms":0.01,"io_percent":26.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":17.95,"idle_ms":0.71,"stall_ms":0.0,"io_percent":3.8,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":43.06,"idle_ms":5.39,"stall_ms":0.1,"io_percent":11.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.43,"run_ms":57.27,"idle_ms":6.7,"stall_ms":0.01,"io_percent":11.3,"method":"GET","action":"home#index"} | |
{"gc_ms":4.17,"run_ms":71.39,"idle_ms":10.9,"stall_ms":0.11,"io_percent":10.9,"method":"GET","action":"home#index"} | |
{"gc_ms":2.41,"run_ms":62.19,"idle_ms":7.89,"stall_ms":0.02,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":40.06,"idle_ms":12.27,"stall_ms":97.94,"io_percent":8.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":20.67,"idle_ms":4.3,"stall_ms":0.01,"io_percent":19.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":70.59,"idle_ms":24.24,"stall_ms":0.02,"io_percent":25.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.37,"run_ms":40.99,"idle_ms":151.73,"stall_ms":7.14,"io_percent":74.8,"method":"POST","action":"stories#upvote"} | |
{"gc_ms":0.0,"run_ms":32.57,"idle_ms":13.94,"stall_ms":0.01,"io_percent":28.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":36.99,"idle_ms":30.17,"stall_ms":0.01,"io_percent":40.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":38.2,"idle_ms":24.24,"stall_ms":0.01,"io_percent":32.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.79,"run_ms":37.81,"idle_ms":29.79,"stall_ms":0.02,"io_percent":39.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":35.73,"idle_ms":22.54,"stall_ms":0.01,"io_percent":34.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.13,"run_ms":9.78,"idle_ms":0.12,"stall_ms":0.0,"io_percent":1.2,"method":"GET"} | |
{"gc_ms":1.95,"run_ms":36.73,"idle_ms":14.17,"stall_ms":0.03,"io_percent":28.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":25.7,"idle_ms":1.12,"stall_ms":0.06,"io_percent":3.8,"method":"GET"} | |
{"gc_ms":11.15,"run_ms":74.79,"idle_ms":30.44,"stall_ms":0.08,"io_percent":27.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.31,"run_ms":49.61,"idle_ms":17.35,"stall_ms":0.02,"io_percent":22.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.01,"run_ms":27.77,"idle_ms":21.99,"stall_ms":0.02,"io_percent":37.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.39,"run_ms":27.48,"idle_ms":3.73,"stall_ms":0.01,"io_percent":13.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.18,"idle_ms":5.94,"stall_ms":164.49,"io_percent":3.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":18.08,"idle_ms":11.98,"stall_ms":0.01,"io_percent":37.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":24.23,"idle_ms":4.22,"stall_ms":0.01,"io_percent":17.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":42.9,"idle_ms":33.72,"stall_ms":0.01,"io_percent":42.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.3,"run_ms":27.63,"idle_ms":5.28,"stall_ms":0.1,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.25,"idle_ms":5.22,"stall_ms":0.02,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":11.62,"run_ms":133.09,"idle_ms":309.21,"stall_ms":0.04,"io_percent":73.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":16.47,"run_ms":160.23,"idle_ms":48.62,"stall_ms":0.02,"io_percent":24.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":36.09,"idle_ms":10.1,"stall_ms":0.01,"io_percent":20.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":10.87,"run_ms":69.53,"idle_ms":25.43,"stall_ms":0.02,"io_percent":27.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.81,"run_ms":24.17,"idle_ms":4.14,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":37.27,"idle_ms":13.1,"stall_ms":0.01,"io_percent":26.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":128.69,"idle_ms":42.76,"stall_ms":0.03,"io_percent":25.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.03,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.17,"run_ms":13.54,"idle_ms":0.92,"stall_ms":0.0,"io_percent":6.4,"method":"GET","action":"login#index"} | |
{"gc_ms":0.15,"run_ms":12.59,"idle_ms":2.27,"stall_ms":0.0,"io_percent":15.4,"method":"GET","action":"users#show"} | |
{"gc_ms":3.2,"run_ms":51.07,"idle_ms":3.24,"stall_ms":0.08,"io_percent":6.2,"method":"GET","action":"home#index"} | |
{"gc_ms":8.04,"run_ms":167.39,"idle_ms":37.35,"stall_ms":0.03,"io_percent":19.0,"method":"HEAD","action":"home#single_tag"} | |
{"gc_ms":6.27,"run_ms":52.1,"idle_ms":3.42,"stall_ms":0.01,"io_percent":6.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":31.58,"idle_ms":10.99,"stall_ms":0.01,"io_percent":26.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":20.34,"idle_ms":3.74,"stall_ms":81.83,"io_percent":3.8,"method":"GET","action":"home#index"} | |
{"gc_ms":8.3,"run_ms":49.79,"idle_ms":3.97,"stall_ms":0.01,"io_percent":7.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":30.46,"idle_ms":4.25,"stall_ms":116.99,"io_percent":2.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":46.33,"idle_ms":10.36,"stall_ms":0.01,"io_percent":18.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.75,"run_ms":48.54,"idle_ms":17.64,"stall_ms":0.56,"io_percent":26.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":23.27,"idle_ms":3.96,"stall_ms":0.01,"io_percent":16.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.93,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":23.77,"idle_ms":3.43,"stall_ms":121.89,"io_percent":2.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.07,"run_ms":27.19,"idle_ms":3.99,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":47.77,"idle_ms":3.43,"stall_ms":0.01,"io_percent":7.1,"method":"GET","action":"home#active"} | |
{"gc_ms":0.97,"run_ms":13.62,"idle_ms":2.08,"stall_ms":0.0,"io_percent":13.3,"method":"HEAD","action":"users#show"} | |
{"gc_ms":2.91,"run_ms":46.12,"idle_ms":17.12,"stall_ms":0.02,"io_percent":27.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.13,"run_ms":41.94,"idle_ms":3.7,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":3.2,"run_ms":49.04,"idle_ms":4.02,"stall_ms":0.01,"io_percent":8.0,"method":"GET","action":"home#index"} | |
{"gc_ms":2.64,"run_ms":49.1,"idle_ms":11.0,"stall_ms":0.02,"io_percent":18.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.35,"run_ms":42.73,"idle_ms":17.2,"stall_ms":0.01,"io_percent":31.4,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.71,"run_ms":46.71,"idle_ms":12.2,"stall_ms":0.02,"io_percent":23.9,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":3.44,"run_ms":210.3,"idle_ms":106.41,"stall_ms":0.04,"io_percent":38.1,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.47,"run_ms":28.65,"idle_ms":4.62,"stall_ms":0.01,"io_percent":14.0,"method":"GET"} | |
{"gc_ms":0.41,"run_ms":21.38,"idle_ms":15.43,"stall_ms":0.01,"io_percent":41.6,"method":"GET"} | |
{"gc_ms":0.34,"run_ms":15.09,"idle_ms":2.09,"stall_ms":0.25,"io_percent":7.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.61,"run_ms":24.41,"idle_ms":4.16,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.56,"run_ms":21.18,"idle_ms":9.92,"stall_ms":0.01,"io_percent":35.8,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.45,"run_ms":18.85,"idle_ms":2.94,"stall_ms":92.61,"io_percent":2.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.01,"run_ms":139.64,"idle_ms":70.75,"stall_ms":0.12,"io_percent":38.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":17.32,"idle_ms":3.47,"stall_ms":0.0,"io_percent":12.5,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":20.18,"idle_ms":6.72,"stall_ms":0.01,"io_percent":28.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":56.53,"idle_ms":20.92,"stall_ms":0.02,"io_percent":28.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":6.16,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.03,"idle_ms":2.15,"stall_ms":0.0,"io_percent":15.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":42.01,"idle_ms":6.82,"stall_ms":0.01,"io_percent":15.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":24.47,"idle_ms":4.66,"stall_ms":0.05,"io_percent":14.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":40.69,"idle_ms":95.42,"stall_ms":0.02,"io_percent":68.3,"method":"POST","action":"stories#upvote"} | |
{"gc_ms":13.26,"run_ms":54.09,"idle_ms":4.35,"stall_ms":0.01,"io_percent":7.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":50.89,"idle_ms":4.55,"stall_ms":0.01,"io_percent":8.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":40.97,"idle_ms":22.25,"stall_ms":0.16,"io_percent":34.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":47.69,"idle_ms":25.33,"stall_ms":0.02,"io_percent":35.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.33,"run_ms":26.17,"idle_ms":4.5,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":26.84,"idle_ms":4.57,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":14.56,"run_ms":148.87,"idle_ms":24.87,"stall_ms":0.02,"io_percent":13.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":10.65,"run_ms":210.5,"idle_ms":125.88,"stall_ms":0.04,"io_percent":41.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.26,"run_ms":31.2,"idle_ms":3.71,"stall_ms":0.01,"io_percent":11.9,"method":"GET","action":"home#newest"} | |
{"gc_ms":12.59,"run_ms":300.15,"idle_ms":115.46,"stall_ms":0.04,"io_percent":28.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.76,"run_ms":11.14,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":2.76,"run_ms":17.39,"idle_ms":2.17,"stall_ms":0.0,"io_percent":11.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":25.76,"idle_ms":3.13,"stall_ms":0.05,"io_percent":12.1,"method":"GET","action":"home#index"} | |
{"gc_ms":6.18,"run_ms":206.57,"idle_ms":62.86,"stall_ms":0.03,"io_percent":28.2,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":49.12,"idle_ms":13.25,"stall_ms":0.05,"io_percent":22.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.91,"run_ms":67.72,"idle_ms":38.21,"stall_ms":0.02,"io_percent":35.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.93,"run_ms":69.21,"idle_ms":24.34,"stall_ms":0.01,"io_percent":35.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.4,"run_ms":28.0,"idle_ms":4.2,"stall_ms":0.01,"io_percent":14.9,"method":"GET","action":"home#index"} | |
{"gc_ms":2.68,"run_ms":98.57,"idle_ms":62.98,"stall_ms":0.02,"io_percent":38.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":32.43,"idle_ms":6.49,"stall_ms":0.0,"io_percent":16.2,"method":"GET","action":"search#index"} | |
{"gc_ms":10.04,"run_ms":205.37,"idle_ms":67.99,"stall_ms":0.03,"io_percent":27.6,"method":"GET","action":"home#newest"} | |
{"gc_ms":1.83,"run_ms":25.26,"idle_ms":3.71,"stall_ms":0.01,"io_percent":14.6,"method":"GET","action":"home#index"} | |
{"gc_ms":5.94,"run_ms":92.72,"idle_ms":74.84,"stall_ms":0.02,"io_percent":44.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.68,"run_ms":47.58,"idle_ms":4.44,"stall_ms":0.01,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.48,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":4.86,"run_ms":171.68,"idle_ms":35.12,"stall_ms":0.02,"io_percent":17.7,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.48,"run_ms":30.76,"idle_ms":3.67,"stall_ms":0.01,"io_percent":11.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.33,"idle_ms":1.83,"stall_ms":0.0,"io_percent":9.2,"method":"GET","action":"users#show"} | |
{"gc_ms":2.05,"run_ms":93.14,"idle_ms":67.17,"stall_ms":0.02,"io_percent":41.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":10.41,"run_ms":238.6,"idle_ms":69.71,"stall_ms":0.04,"io_percent":23.8,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.82,"run_ms":24.32,"idle_ms":3.36,"stall_ms":91.35,"io_percent":3.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.32,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":59.14,"idle_ms":34.06,"stall_ms":0.02,"io_percent":36.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":10.73,"run_ms":156.25,"idle_ms":41.31,"stall_ms":119.18,"io_percent":14.3,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":15.98,"idle_ms":5.87,"stall_ms":0.01,"io_percent":20.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":165.04,"idle_ms":100.87,"stall_ms":0.04,"io_percent":39.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":13.73,"idle_ms":17.91,"stall_ms":0.0,"io_percent":56.0,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":3.19,"run_ms":165.18,"idle_ms":46.18,"stall_ms":0.13,"io_percent":23.1,"method":"GET","action":"home#newest"} | |
{"gc_ms":1.05,"run_ms":14.28,"idle_ms":3.27,"stall_ms":0.0,"io_percent":17.8,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.0,"run_ms":54.96,"idle_ms":4.47,"stall_ms":0.01,"io_percent":8.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":60.71,"idle_ms":3.84,"stall_ms":0.01,"io_percent":6.1,"method":"GET","action":"home#active"} | |
{"gc_ms":2.92,"run_ms":72.3,"idle_ms":4.42,"stall_ms":0.02,"io_percent":6.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.49,"idle_ms":3.54,"stall_ms":0.01,"io_percent":12.9,"method":"GET","action":"home#index"} | |
{"gc_ms":5.53,"run_ms":156.95,"idle_ms":36.54,"stall_ms":0.03,"io_percent":19.2,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.65,"run_ms":16.7,"idle_ms":2.94,"stall_ms":203.06,"io_percent":1.4,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.0,"run_ms":17.97,"idle_ms":8.23,"stall_ms":0.0,"io_percent":31.5,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":12.11,"run_ms":304.86,"idle_ms":102.51,"stall_ms":0.04,"io_percent":27.7,"method":"GET","action":"home#newest"} | |
{"gc_ms":2.67,"run_ms":71.81,"idle_ms":16.58,"stall_ms":0.02,"io_percent":19.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":13.09,"idle_ms":2.03,"stall_ms":0.0,"io_percent":13.2,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":6.52,"run_ms":58.72,"idle_ms":4.49,"stall_ms":0.01,"io_percent":7.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.56,"run_ms":23.83,"idle_ms":6.83,"stall_ms":0.01,"io_percent":24.9,"method":"GET","action":"home#index"} | |
{"gc_ms":2.86,"run_ms":156.5,"idle_ms":57.72,"stall_ms":0.02,"io_percent":28.2,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":11.71,"idle_ms":0.05,"stall_ms":170.3,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":68.67,"idle_ms":25.21,"stall_ms":0.02,"io_percent":26.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":23.13,"idle_ms":14.76,"stall_ms":0.02,"io_percent":24.1,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.32,"run_ms":13.88,"idle_ms":22.47,"stall_ms":0.01,"io_percent":62.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.74,"run_ms":18.43,"idle_ms":4.3,"stall_ms":0.0,"io_percent":19.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.32,"run_ms":8.33,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":2.28,"run_ms":160.98,"idle_ms":66.04,"stall_ms":0.02,"io_percent":30.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.61,"run_ms":26.49,"idle_ms":9.36,"stall_ms":0.02,"io_percent":22.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":150.56,"idle_ms":38.2,"stall_ms":0.02,"io_percent":22.0,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":6.75,"idle_ms":1.1,"stall_ms":0.0,"io_percent":13.6,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":8.72,"idle_ms":3.33,"stall_ms":1.91,"io_percent":19.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.3,"idle_ms":8.28,"stall_ms":0.01,"io_percent":39.5,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.0,"run_ms":44.91,"idle_ms":19.24,"stall_ms":0.02,"io_percent":30.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.63,"run_ms":43.33,"idle_ms":12.32,"stall_ms":0.02,"io_percent":21.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.66,"run_ms":18.24,"idle_ms":3.2,"stall_ms":0.0,"io_percent":15.0,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":4.49,"run_ms":98.12,"idle_ms":538.27,"stall_ms":0.02,"io_percent":84.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":36.46,"idle_ms":11.76,"stall_ms":0.01,"io_percent":22.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.89,"run_ms":47.39,"idle_ms":24.55,"stall_ms":0.02,"io_percent":33.3,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.29,"run_ms":24.4,"idle_ms":4.57,"stall_ms":0.01,"io_percent":18.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.93,"idle_ms":3.68,"stall_ms":0.09,"io_percent":24.3,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.3,"run_ms":12.68,"idle_ms":3.22,"stall_ms":0.0,"io_percent":20.3,"method":"GET","action":"users#show"} | |
{"gc_ms":21.25,"run_ms":216.86,"idle_ms":63.97,"stall_ms":0.03,"io_percent":25.3,"method":"GET","action":"home#newest"} | |
{"gc_ms":2.32,"run_ms":16.52,"idle_ms":2.46,"stall_ms":0.0,"io_percent":11.3,"method":"HEAD","action":"users#show"} | |
{"gc_ms":2.92,"run_ms":76.3,"idle_ms":26.97,"stall_ms":0.02,"io_percent":26.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.62,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":13.74,"idle_ms":4.81,"stall_ms":0.07,"io_percent":20.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.2,"run_ms":13.17,"idle_ms":7.56,"stall_ms":0.0,"io_percent":29.9,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":1.31,"run_ms":141.53,"idle_ms":29.33,"stall_ms":0.02,"io_percent":18.8,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":63.47,"idle_ms":5.24,"stall_ms":0.01,"io_percent":8.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":28.76,"idle_ms":9.8,"stall_ms":0.02,"io_percent":32.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.34,"run_ms":40.41,"idle_ms":4.11,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":201.37,"idle_ms":63.85,"stall_ms":0.03,"io_percent":26.2,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":13.3,"idle_ms":3.39,"stall_ms":0.0,"io_percent":20.0,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.0,"run_ms":64.97,"idle_ms":25.13,"stall_ms":0.02,"io_percent":27.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.47,"run_ms":50.32,"idle_ms":4.38,"stall_ms":0.01,"io_percent":8.1,"method":"GET","action":"home#index"} | |
{"gc_ms":12.98,"run_ms":164.5,"idle_ms":40.24,"stall_ms":0.04,"io_percent":21.7,"method":"GET","action":"home#newest"} | |
{"gc_ms":2.04,"run_ms":41.94,"idle_ms":3.99,"stall_ms":0.27,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.37,"run_ms":13.6,"idle_ms":2.28,"stall_ms":0.0,"io_percent":13.6,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":5.92,"run_ms":152.18,"idle_ms":39.2,"stall_ms":0.03,"io_percent":23.0,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":25.44,"idle_ms":16.69,"stall_ms":0.0,"io_percent":59.8,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.41,"run_ms":65.14,"idle_ms":35.1,"stall_ms":0.02,"io_percent":35.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.85,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.61,"run_ms":18.89,"idle_ms":5.79,"stall_ms":0.01,"io_percent":22.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.02,"run_ms":12.86,"idle_ms":1.05,"stall_ms":0.0,"io_percent":7.6,"method":"GET"} | |
{"gc_ms":0.46,"run_ms":35.48,"idle_ms":26.52,"stall_ms":0.18,"io_percent":40.5,"method":"POST","action":"stories#check_url_dupe"} | |
{"gc_ms":7.28,"run_ms":22.23,"idle_ms":0.7,"stall_ms":0.0,"io_percent":2.6,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":42.94,"idle_ms":81.79,"stall_ms":5.55,"io_percent":62.8,"method":"POST","action":"stories#fetch_url_attributes"} | |
{"gc_ms":0.0,"run_ms":57.67,"idle_ms":36.49,"stall_ms":0.02,"io_percent":34.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":9.88,"run_ms":35.33,"idle_ms":9.72,"stall_ms":0.01,"io_percent":20.2,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":3.85,"run_ms":161.62,"idle_ms":60.17,"stall_ms":0.03,"io_percent":23.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.87,"run_ms":41.61,"idle_ms":15.71,"stall_ms":0.02,"io_percent":27.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.34,"run_ms":22.86,"idle_ms":3.89,"stall_ms":0.65,"io_percent":14.6,"method":"GET","action":"home#index"} | |
{"gc_ms":3.48,"run_ms":55.19,"idle_ms":19.51,"stall_ms":0.02,"io_percent":25.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.48,"run_ms":50.94,"idle_ms":4.42,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.66,"run_ms":59.56,"idle_ms":30.3,"stall_ms":0.02,"io_percent":33.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":11.24,"run_ms":101.91,"idle_ms":395.74,"stall_ms":0.05,"io_percent":80.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.43,"run_ms":33.07,"idle_ms":6.2,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.81,"run_ms":29.37,"idle_ms":4.61,"stall_ms":0.01,"io_percent":14.6,"method":"GET","action":"home#index"} | |
{"gc_ms":9.35,"run_ms":92.81,"idle_ms":32.36,"stall_ms":0.02,"io_percent":25.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":57.51,"idle_ms":4.74,"stall_ms":147.99,"io_percent":2.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.06,"run_ms":23.09,"idle_ms":4.13,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.78,"run_ms":40.62,"idle_ms":13.69,"stall_ms":0.01,"io_percent":25.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.92,"run_ms":25.47,"idle_ms":3.32,"stall_ms":0.09,"io_percent":12.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.15,"run_ms":18.27,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":7.98,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":2.4,"run_ms":24.76,"idle_ms":6.03,"stall_ms":0.0,"io_percent":18.6,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.24,"run_ms":15.56,"idle_ms":1.97,"stall_ms":0.0,"io_percent":11.1,"method":"GET","action":"users#show"} | |
{"gc_ms":1.04,"run_ms":17.6,"idle_ms":3.19,"stall_ms":0.15,"io_percent":12.5,"method":"GET","action":"users#show"} | |
{"gc_ms":2.88,"run_ms":67.36,"idle_ms":20.22,"stall_ms":0.02,"io_percent":23.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":155.13,"idle_ms":32.37,"stall_ms":0.03,"io_percent":15.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.79,"run_ms":34.46,"idle_ms":14.88,"stall_ms":132.81,"io_percent":8.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.24,"run_ms":59.62,"idle_ms":21.86,"stall_ms":0.02,"io_percent":24.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":17.03,"idle_ms":6.3,"stall_ms":0.01,"io_percent":19.5,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.0,"run_ms":60.85,"idle_ms":4.4,"stall_ms":0.64,"io_percent":7.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.67,"run_ms":26.66,"idle_ms":3.84,"stall_ms":0.01,"io_percent":13.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":71.03,"idle_ms":23.17,"stall_ms":0.02,"io_percent":23.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":86.57,"idle_ms":6.63,"stall_ms":0.01,"io_percent":7.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.35,"run_ms":53.07,"idle_ms":4.77,"stall_ms":0.02,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.85,"idle_ms":4.1,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":4.68,"run_ms":61.29,"idle_ms":45.3,"stall_ms":0.02,"io_percent":45.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":13.39,"idle_ms":8.24,"stall_ms":0.0,"io_percent":38.3,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.0,"run_ms":56.39,"idle_ms":20.4,"stall_ms":0.14,"io_percent":28.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":9.5,"run_ms":19.37,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":41.8,"idle_ms":20.53,"stall_ms":0.01,"io_percent":32.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":10.33,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.25,"run_ms":14.05,"idle_ms":4.86,"stall_ms":0.01,"io_percent":25.0,"method":"GET","action":"users#show"} | |
{"gc_ms":2.05,"run_ms":17.07,"idle_ms":7.04,"stall_ms":0.0,"io_percent":29.4,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":13.44,"run_ms":149.68,"idle_ms":323.63,"stall_ms":0.09,"io_percent":67.9,"method":"GET","action":"home#index"} | |
{"gc_ms":4.18,"run_ms":70.7,"idle_ms":4.52,"stall_ms":0.86,"io_percent":6.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.99,"run_ms":114.85,"idle_ms":36.76,"stall_ms":0.02,"io_percent":23.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.69,"run_ms":14.86,"idle_ms":2.0,"stall_ms":0.0,"io_percent":11.9,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":12.52,"idle_ms":3.21,"stall_ms":0.0,"io_percent":20.6,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.0,"run_ms":7.88,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.85,"idle_ms":2.42,"stall_ms":0.0,"io_percent":17.0,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":4.0,"run_ms":86.54,"idle_ms":31.63,"stall_ms":0.03,"io_percent":25.8,"method":"GET","action":"home#index"} | |
{"gc_ms":10.32,"run_ms":198.81,"idle_ms":39.81,"stall_ms":0.06,"io_percent":17.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":52.07,"idle_ms":4.01,"stall_ms":0.22,"io_percent":6.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.94,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":1.36,"run_ms":24.14,"idle_ms":3.51,"stall_ms":0.01,"io_percent":12.7,"method":"GET","action":"home#index"} | |
{"gc_ms":30.51,"run_ms":176.78,"idle_ms":18.91,"stall_ms":0.02,"io_percent":8.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.77,"idle_ms":8.63,"stall_ms":1.08,"io_percent":35.6,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.5,"run_ms":22.22,"idle_ms":5.31,"stall_ms":0.01,"io_percent":18.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.03,"run_ms":10.14,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.55,"idle_ms":8.96,"stall_ms":0.01,"io_percent":35.6,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.64,"run_ms":41.76,"idle_ms":15.66,"stall_ms":0.01,"io_percent":24.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":21.52,"idle_ms":4.91,"stall_ms":0.01,"io_percent":20.1,"method":"GET","action":"home#index"} | |
{"gc_ms":7.69,"run_ms":95.08,"idle_ms":69.88,"stall_ms":0.03,"io_percent":41.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.31,"idle_ms":1.93,"stall_ms":0.0,"io_percent":13.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":13.09,"idle_ms":2.58,"stall_ms":0.0,"io_percent":16.6,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":2.98,"run_ms":45.84,"idle_ms":16.37,"stall_ms":0.02,"io_percent":26.7,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":2.42,"run_ms":53.4,"idle_ms":24.63,"stall_ms":0.02,"io_percent":27.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":46.17,"idle_ms":5.96,"stall_ms":0.01,"io_percent":12.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.48,"run_ms":36.35,"idle_ms":3.32,"stall_ms":0.01,"io_percent":9.1,"method":"GET","action":"home#newest"} | |
{"gc_ms":2.22,"run_ms":51.31,"idle_ms":4.68,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":9.23,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":45.05,"idle_ms":4.25,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.61,"idle_ms":3.84,"stall_ms":0.01,"io_percent":19.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.73,"run_ms":8.85,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.63,"idle_ms":6.62,"stall_ms":0.0,"io_percent":31.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.9,"run_ms":16.05,"idle_ms":2.64,"stall_ms":0.0,"io_percent":14.2,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":10.09,"idle_ms":0.91,"stall_ms":0.0,"io_percent":8.3,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":53.06,"idle_ms":4.58,"stall_ms":1.67,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.65,"idle_ms":6.49,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.73,"run_ms":22.97,"idle_ms":3.66,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":3.51,"run_ms":101.85,"idle_ms":662.67,"stall_ms":0.04,"io_percent":86.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":47.74,"idle_ms":10.27,"stall_ms":0.02,"io_percent":17.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":20.79,"run_ms":171.81,"idle_ms":69.83,"stall_ms":109.14,"io_percent":20.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":10.24,"run_ms":104.56,"idle_ms":180.55,"stall_ms":0.82,"io_percent":63.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.65,"run_ms":55.56,"idle_ms":3.57,"stall_ms":0.1,"io_percent":6.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.88,"run_ms":40.39,"idle_ms":14.07,"stall_ms":0.02,"io_percent":24.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":22.8,"idle_ms":3.52,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.53,"run_ms":124.09,"idle_ms":213.98,"stall_ms":0.02,"io_percent":62.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.7,"run_ms":45.41,"idle_ms":14.47,"stall_ms":0.02,"io_percent":24.7,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.38,"run_ms":9.35,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.91,"run_ms":49.72,"idle_ms":30.17,"stall_ms":0.02,"io_percent":38.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":24.77,"idle_ms":4.47,"stall_ms":0.01,"io_percent":17.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.17,"idle_ms":2.36,"stall_ms":0.0,"io_percent":12.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":22.27,"idle_ms":3.32,"stall_ms":0.01,"io_percent":13.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.3,"idle_ms":0.88,"stall_ms":0.0,"io_percent":6.7,"method":"GET","action":"login#index"} | |
{"gc_ms":11.82,"run_ms":93.35,"idle_ms":73.86,"stall_ms":0.04,"io_percent":43.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":9.81,"idle_ms":4.3,"stall_ms":0.0,"io_percent":30.4,"method":"GET"} | |
{"gc_ms":1.76,"run_ms":48.89,"idle_ms":9.09,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.98,"idle_ms":3.4,"stall_ms":0.01,"io_percent":13.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":222.09,"idle_ms":29.72,"stall_ms":0.03,"io_percent":11.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.77,"idle_ms":2.08,"stall_ms":0.0,"io_percent":12.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.35,"run_ms":9.1,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":12.77,"run_ms":174.39,"idle_ms":122.15,"stall_ms":0.03,"io_percent":44.8,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":43.13,"idle_ms":6.14,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.7,"run_ms":15.63,"idle_ms":5.81,"stall_ms":0.0,"io_percent":25.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.18,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":84.92,"idle_ms":10.46,"stall_ms":0.02,"io_percent":11.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.42,"run_ms":82.54,"idle_ms":97.05,"stall_ms":104.89,"io_percent":33.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":10.81,"idle_ms":0.75,"stall_ms":0.0,"io_percent":6.5,"method":"GET","action":"login#index"} | |
{"gc_ms":3.52,"run_ms":85.94,"idle_ms":26.64,"stall_ms":0.02,"io_percent":23.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":61.22,"idle_ms":593.33,"stall_ms":0.01,"io_percent":88.9,"method":"GET","action":"comments#index"} | |
{"gc_ms":14.02,"run_ms":133.7,"idle_ms":22.45,"stall_ms":0.02,"io_percent":14.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":17.14,"idle_ms":3.57,"stall_ms":110.19,"io_percent":2.8,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":6.74,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":13.55,"idle_ms":1.9,"stall_ms":0.0,"io_percent":10.2,"method":"GET","action":"users#show"} | |
{"gc_ms":5.26,"run_ms":122.3,"idle_ms":71.91,"stall_ms":0.03,"io_percent":42.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.88,"run_ms":17.12,"idle_ms":3.03,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.59,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":29.35,"idle_ms":10.21,"stall_ms":0.01,"io_percent":26.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":12.07,"idle_ms":2.93,"stall_ms":0.0,"io_percent":19.1,"method":"GET","action":"users#show"} | |
{"gc_ms":1.95,"run_ms":67.59,"idle_ms":306.34,"stall_ms":0.03,"io_percent":82.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":9.18,"run_ms":163.15,"idle_ms":39.83,"stall_ms":0.03,"io_percent":23.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.67,"run_ms":21.88,"idle_ms":3.92,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":11.11,"run_ms":77.73,"idle_ms":17.42,"stall_ms":0.01,"io_percent":18.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":9.28,"run_ms":53.97,"idle_ms":4.69,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.85,"run_ms":19.85,"idle_ms":3.71,"stall_ms":0.01,"io_percent":15.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.58,"run_ms":33.42,"idle_ms":13.18,"stall_ms":0.01,"io_percent":28.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.46,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":2.06,"run_ms":16.31,"idle_ms":2.22,"stall_ms":0.0,"io_percent":11.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.35,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.96,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.24,"run_ms":17.04,"idle_ms":4.69,"stall_ms":0.0,"io_percent":19.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.42,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.93,"run_ms":15.62,"idle_ms":2.09,"stall_ms":0.0,"io_percent":11.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.92,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.73,"run_ms":13.05,"idle_ms":1.88,"stall_ms":0.38,"io_percent":12.3,"method":"GET","action":"users#show"} | |
{"gc_ms":4.99,"run_ms":49.17,"idle_ms":5.69,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.17,"run_ms":42.71,"idle_ms":3.92,"stall_ms":0.01,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.33,"run_ms":35.79,"idle_ms":11.59,"stall_ms":0.01,"io_percent":24.8,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.52,"run_ms":33.08,"idle_ms":16.95,"stall_ms":0.01,"io_percent":31.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.26,"run_ms":9.77,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":13.78,"idle_ms":1.33,"stall_ms":0.0,"io_percent":8.8,"method":"GET","action":"users#show"} | |
{"gc_ms":8.74,"run_ms":35.78,"idle_ms":5.09,"stall_ms":0.01,"io_percent":12.0,"method":"GET","action":"home#index"} | |
{"gc_ms":2.01,"run_ms":46.75,"idle_ms":4.12,"stall_ms":0.01,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.63,"run_ms":39.69,"idle_ms":4.57,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"home#index"} | |
{"gc_ms":6.78,"run_ms":161.51,"idle_ms":122.07,"stall_ms":0.03,"io_percent":46.1,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":2.13,"run_ms":67.44,"idle_ms":456.73,"stall_ms":131.43,"io_percent":70.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.0,"run_ms":24.08,"idle_ms":5.06,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.57,"run_ms":22.85,"idle_ms":2.04,"stall_ms":0.0,"io_percent":4.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":69.82,"idle_ms":283.0,"stall_ms":0.03,"io_percent":80.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":36.02,"idle_ms":12.53,"stall_ms":0.01,"io_percent":24.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.33,"run_ms":22.95,"idle_ms":3.75,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.28,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.64,"idle_ms":1.55,"stall_ms":0.0,"io_percent":9.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.92,"run_ms":62.4,"idle_ms":25.85,"stall_ms":0.02,"io_percent":29.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.41,"idle_ms":4.35,"stall_ms":0.0,"io_percent":37.2,"method":"GET"} | |
{"gc_ms":2.35,"run_ms":56.12,"idle_ms":3.45,"stall_ms":2.05,"io_percent":4.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.67,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.92,"idle_ms":2.29,"stall_ms":0.0,"io_percent":15.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.35,"run_ms":14.13,"idle_ms":1.85,"stall_ms":0.0,"io_percent":11.7,"method":"GET","action":"users#show"} | |
{"gc_ms":4.59,"run_ms":83.44,"idle_ms":182.43,"stall_ms":0.03,"io_percent":68.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.3,"run_ms":10.49,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.31,"idle_ms":2.12,"stall_ms":0.0,"io_percent":14.8,"method":"GET","action":"users#show"} | |
{"gc_ms":1.57,"run_ms":41.71,"idle_ms":5.93,"stall_ms":0.01,"io_percent":13.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.94,"run_ms":57.51,"idle_ms":18.52,"stall_ms":0.02,"io_percent":23.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.54,"run_ms":8.56,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.68,"run_ms":14.93,"idle_ms":2.07,"stall_ms":0.0,"io_percent":10.0,"method":"GET","action":"users#show"} | |
{"gc_ms":1.13,"run_ms":97.01,"idle_ms":22.28,"stall_ms":0.02,"io_percent":18.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.35,"run_ms":53.42,"idle_ms":4.68,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.04,"idle_ms":2.24,"stall_ms":0.0,"io_percent":13.6,"method":"GET","action":"users#show"} | |
{"gc_ms":1.3,"run_ms":41.23,"idle_ms":10.49,"stall_ms":0.01,"io_percent":20.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":145.2,"idle_ms":59.08,"stall_ms":0.03,"io_percent":30.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":6.45,"run_ms":15.25,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.33,"run_ms":16.08,"idle_ms":1.73,"stall_ms":0.0,"io_percent":9.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.44,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.18,"run_ms":13.31,"idle_ms":1.92,"stall_ms":0.0,"io_percent":12.7,"method":"GET","action":"users#show"} | |
{"gc_ms":3.24,"run_ms":27.59,"idle_ms":3.74,"stall_ms":0.02,"io_percent":12.0,"method":"GET","action":"home#index"} | |
{"gc_ms":5.08,"run_ms":116.55,"idle_ms":18.9,"stall_ms":0.96,"io_percent":13.9,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":81.52,"idle_ms":26.63,"stall_ms":0.02,"io_percent":24.8,"method":"GET","action":"home#index"} | |
{"gc_ms":5.22,"run_ms":71.85,"idle_ms":27.4,"stall_ms":0.02,"io_percent":27.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":51.91,"idle_ms":10.83,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":27.3,"idle_ms":3.94,"stall_ms":0.01,"io_percent":13.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.36,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.44,"idle_ms":1.9,"stall_ms":0.0,"io_percent":11.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.3,"run_ms":8.5,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.73,"run_ms":14.7,"idle_ms":1.86,"stall_ms":0.0,"io_percent":11.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.83,"idle_ms":0.06,"stall_ms":0.0,"io_percent":0.6,"method":"GET"} | |
{"gc_ms":6.48,"run_ms":20.25,"idle_ms":1.58,"stall_ms":0.0,"io_percent":7.2,"method":"GET","action":"users#show"} | |
{"gc_ms":1.44,"run_ms":37.63,"idle_ms":11.86,"stall_ms":0.01,"io_percent":23.5,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":1.61,"run_ms":60.24,"idle_ms":23.25,"stall_ms":0.03,"io_percent":27.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.08,"run_ms":43.78,"idle_ms":3.93,"stall_ms":0.06,"io_percent":8.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":82.0,"idle_ms":101.0,"stall_ms":0.03,"io_percent":53.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.45,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.37,"run_ms":110.45,"idle_ms":20.76,"stall_ms":0.38,"io_percent":15.9,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":2.23,"run_ms":18.37,"idle_ms":1.91,"stall_ms":0.0,"io_percent":9.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.39,"run_ms":24.95,"idle_ms":5.79,"stall_ms":109.25,"io_percent":4.5,"method":"GET","action":"home#index"} | |
{"gc_ms":6.57,"run_ms":50.92,"idle_ms":4.1,"stall_ms":0.01,"io_percent":7.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.0,"idle_ms":3.77,"stall_ms":0.01,"io_percent":17.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":57.11,"idle_ms":13.76,"stall_ms":0.02,"io_percent":19.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":11.81,"idle_ms":0.07,"stall_ms":0.05,"io_percent":0.6,"method":"GET"} | |
{"gc_ms":1.27,"run_ms":13.68,"idle_ms":2.4,"stall_ms":0.0,"io_percent":11.8,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":23.5,"idle_ms":1.96,"stall_ms":0.0,"io_percent":7.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":13.98,"idle_ms":2.39,"stall_ms":0.0,"io_percent":14.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":24.03,"idle_ms":4.2,"stall_ms":0.01,"io_percent":17.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.95,"idle_ms":8.68,"stall_ms":0.01,"io_percent":32.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":53.65,"idle_ms":5.03,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":11.52,"run_ms":64.02,"idle_ms":6.59,"stall_ms":0.01,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":32.18,"idle_ms":3.84,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.93,"run_ms":14.04,"idle_ms":0.72,"stall_ms":0.0,"io_percent":4.9,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":132.93,"idle_ms":40.16,"stall_ms":108.8,"io_percent":15.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.07,"run_ms":33.52,"idle_ms":4.73,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.81,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.92,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.71,"run_ms":8.24,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.6,"run_ms":13.26,"idle_ms":1.36,"stall_ms":0.0,"io_percent":8.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":13.71,"idle_ms":2.03,"stall_ms":0.0,"io_percent":10.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":12.26,"idle_ms":2.13,"stall_ms":0.0,"io_percent":14.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":9.23,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":4.89,"run_ms":45.89,"idle_ms":3.49,"stall_ms":0.01,"io_percent":7.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.68,"run_ms":14.72,"idle_ms":1.42,"stall_ms":0.0,"io_percent":7.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.92,"run_ms":10.78,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.84,"idle_ms":1.53,"stall_ms":0.0,"io_percent":12.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.84,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.78,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.8,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":9.98,"run_ms":62.82,"idle_ms":2.98,"stall_ms":0.09,"io_percent":4.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.7,"run_ms":15.24,"idle_ms":2.42,"stall_ms":0.26,"io_percent":11.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.98,"run_ms":21.05,"idle_ms":3.63,"stall_ms":0.01,"io_percent":17.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.94,"run_ms":11.36,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.81,"run_ms":25.53,"idle_ms":3.75,"stall_ms":0.01,"io_percent":13.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.3,"run_ms":9.8,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.71,"run_ms":19.9,"idle_ms":8.92,"stall_ms":0.0,"io_percent":38.8,"method":"GET","action":"users#show"} | |
{"gc_ms":5.56,"run_ms":47.54,"idle_ms":8.72,"stall_ms":0.01,"io_percent":13.0,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.75,"run_ms":33.3,"idle_ms":36.12,"stall_ms":0.62,"io_percent":43.2,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":3.81,"run_ms":37.99,"idle_ms":25.48,"stall_ms":0.01,"io_percent":29.9,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.75,"run_ms":16.04,"idle_ms":2.39,"stall_ms":241.09,"io_percent":1.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.51,"run_ms":42.56,"idle_ms":17.58,"stall_ms":0.02,"io_percent":28.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.25,"run_ms":8.73,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.9,"run_ms":14.1,"idle_ms":2.14,"stall_ms":0.0,"io_percent":13.3,"method":"GET","action":"users#show"} | |
{"gc_ms":1.25,"run_ms":42.47,"idle_ms":4.39,"stall_ms":0.18,"io_percent":10.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":48.45,"idle_ms":7.58,"stall_ms":0.01,"io_percent":14.6,"method":"GET","action":"home#index"} | |
{"gc_ms":2.24,"run_ms":44.09,"idle_ms":5.63,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":101.58,"idle_ms":215.6,"stall_ms":0.03,"io_percent":68.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.26,"run_ms":22.58,"idle_ms":14.48,"stall_ms":0.01,"io_percent":38.3,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.3,"run_ms":19.97,"idle_ms":3.09,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":58.29,"idle_ms":21.68,"stall_ms":88.56,"io_percent":13.1,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.31,"run_ms":7.78,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":2.02,"run_ms":60.16,"idle_ms":15.4,"stall_ms":0.19,"io_percent":19.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.5,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":45.38,"idle_ms":5.74,"stall_ms":0.01,"io_percent":11.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.11,"run_ms":14.37,"idle_ms":2.2,"stall_ms":0.0,"io_percent":13.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":147.72,"idle_ms":38.3,"stall_ms":0.03,"io_percent":23.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":12.72,"idle_ms":2.12,"stall_ms":0.1,"io_percent":14.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.25,"run_ms":9.51,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.79,"run_ms":13.1,"idle_ms":1.64,"stall_ms":0.0,"io_percent":11.2,"method":"GET","action":"users#show"} | |
{"gc_ms":2.84,"run_ms":48.6,"idle_ms":11.71,"stall_ms":0.02,"io_percent":18.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.86,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":4.1,"run_ms":54.04,"idle_ms":4.43,"stall_ms":126.92,"io_percent":2.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":75.97,"idle_ms":25.25,"stall_ms":0.02,"io_percent":24.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.18,"run_ms":80.08,"idle_ms":16.49,"stall_ms":0.02,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.33,"run_ms":16.98,"idle_ms":3.15,"stall_ms":0.0,"io_percent":15.7,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":24.72,"idle_ms":3.76,"stall_ms":0.01,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":45.74,"idle_ms":5.01,"stall_ms":0.01,"io_percent":8.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.86,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.81,"run_ms":14.19,"idle_ms":2.74,"stall_ms":0.0,"io_percent":16.3,"method":"GET","action":"users#show"} | |
{"gc_ms":2.29,"run_ms":39.88,"idle_ms":13.74,"stall_ms":0.01,"io_percent":26.2,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.66,"run_ms":7.72,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":3.23,"run_ms":53.23,"idle_ms":16.42,"stall_ms":0.02,"io_percent":23.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.93,"run_ms":14.11,"idle_ms":0.7,"stall_ms":0.0,"io_percent":4.6,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":22.43,"idle_ms":3.74,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":8.25,"run_ms":46.51,"idle_ms":8.5,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.62,"run_ms":168.01,"idle_ms":139.63,"stall_ms":0.02,"io_percent":49.6,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.42,"run_ms":19.52,"idle_ms":3.34,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.55,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.52,"run_ms":18.43,"idle_ms":4.32,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":18.27,"idle_ms":6.66,"stall_ms":0.13,"io_percent":27.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.76,"run_ms":25.3,"idle_ms":4.06,"stall_ms":0.01,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.6,"run_ms":11.62,"idle_ms":1.4,"stall_ms":0.0,"io_percent":10.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":44.12,"idle_ms":4.25,"stall_ms":0.01,"io_percent":9.5,"method":"GET","action":"home#index"} | |
{"gc_ms":6.71,"run_ms":41.3,"idle_ms":3.59,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.94,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.55,"run_ms":13.67,"idle_ms":2.04,"stall_ms":0.0,"io_percent":13.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.58,"run_ms":9.29,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.65,"run_ms":14.07,"idle_ms":1.49,"stall_ms":0.0,"io_percent":9.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":26.96,"idle_ms":10.32,"stall_ms":0.01,"io_percent":28.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.9,"run_ms":38.34,"idle_ms":8.76,"stall_ms":0.01,"io_percent":18.7,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":1.24,"run_ms":62.97,"idle_ms":123.97,"stall_ms":0.02,"io_percent":66.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.39,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.78,"run_ms":13.07,"idle_ms":1.71,"stall_ms":0.03,"io_percent":11.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.78,"run_ms":19.62,"idle_ms":3.18,"stall_ms":0.01,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":11.41,"run_ms":140.58,"idle_ms":31.79,"stall_ms":0.06,"io_percent":20.6,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":42.32,"idle_ms":10.49,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.11,"run_ms":21.81,"idle_ms":3.63,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":2.12,"run_ms":93.82,"idle_ms":40.42,"stall_ms":0.02,"io_percent":33.3,"method":"HEAD","action":"home#single_tag"} | |
{"gc_ms":0.64,"run_ms":11.55,"idle_ms":0.65,"stall_ms":0.0,"io_percent":5.3,"method":"GET","action":"login#index"} | |
{"gc_ms":0.97,"run_ms":43.97,"idle_ms":10.51,"stall_ms":0.01,"io_percent":19.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.12,"run_ms":39.8,"idle_ms":2.74,"stall_ms":0.01,"io_percent":6.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.93,"run_ms":81.95,"idle_ms":79.65,"stall_ms":0.02,"io_percent":48.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.48,"run_ms":8.6,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":3.27,"run_ms":147.87,"idle_ms":111.44,"stall_ms":0.04,"io_percent":47.0,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.62,"run_ms":19.68,"idle_ms":3.05,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.03,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.2,"run_ms":19.09,"idle_ms":3.33,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.79,"idle_ms":1.81,"stall_ms":0.01,"io_percent":12.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.75,"run_ms":7.63,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":19.83,"idle_ms":3.2,"stall_ms":0.01,"io_percent":16.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.31,"run_ms":13.82,"idle_ms":2.2,"stall_ms":0.0,"io_percent":13.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":48.23,"idle_ms":14.44,"stall_ms":0.02,"io_percent":19.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.43,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.6,"run_ms":15.5,"idle_ms":2.44,"stall_ms":0.0,"io_percent":12.6,"method":"GET","action":"users#show"} | |
{"gc_ms":5.59,"run_ms":167.4,"idle_ms":42.36,"stall_ms":0.29,"io_percent":22.5,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":7.69,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.3,"run_ms":10.94,"idle_ms":3.03,"stall_ms":0.0,"io_percent":21.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":45.97,"idle_ms":15.94,"stall_ms":74.34,"io_percent":12.2,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":44.02,"idle_ms":4.39,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.98,"run_ms":11.99,"idle_ms":1.81,"stall_ms":0.0,"io_percent":12.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":11.53,"idle_ms":2.07,"stall_ms":0.0,"io_percent":13.2,"method":"HEAD","action":"users#show"} | |
{"gc_ms":1.54,"run_ms":27.12,"idle_ms":3.31,"stall_ms":0.01,"io_percent":12.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.64,"run_ms":7.46,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.26,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":155.73,"run_ms":326.61,"idle_ms":12.71,"stall_ms":0.08,"io_percent":3.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.28,"run_ms":9.06,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.33,"idle_ms":1.78,"stall_ms":0.0,"io_percent":10.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":77.81,"idle_ms":152.04,"stall_ms":0.02,"io_percent":62.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.87,"run_ms":18.27,"idle_ms":3.26,"stall_ms":0.01,"io_percent":15.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.41,"run_ms":22.19,"idle_ms":4.01,"stall_ms":0.01,"io_percent":13.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.47,"run_ms":22.33,"idle_ms":3.54,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.55,"run_ms":12.85,"idle_ms":3.04,"stall_ms":0.12,"io_percent":16.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.57,"run_ms":28.85,"idle_ms":2.61,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":5.3,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":4.53,"run_ms":23.09,"idle_ms":3.15,"stall_ms":0.01,"io_percent":13.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":14.74,"idle_ms":1.95,"stall_ms":118.07,"io_percent":1.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.1,"run_ms":18.23,"idle_ms":3.07,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.06,"run_ms":19.28,"idle_ms":3.5,"stall_ms":94.49,"io_percent":3.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":141.61,"idle_ms":67.14,"stall_ms":0.04,"io_percent":32.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.23,"run_ms":9.23,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.31,"run_ms":13.99,"idle_ms":2.14,"stall_ms":0.0,"io_percent":13.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.07,"run_ms":42.76,"idle_ms":5.69,"stall_ms":0.01,"io_percent":11.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":37.72,"idle_ms":3.84,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":52.79,"idle_ms":4.54,"stall_ms":0.01,"io_percent":8.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.26,"run_ms":26.71,"idle_ms":4.91,"stall_ms":0.01,"io_percent":12.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.64,"run_ms":40.66,"idle_ms":37.36,"stall_ms":0.01,"io_percent":34.4,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":17.1,"run_ms":208.87,"idle_ms":91.11,"stall_ms":0.31,"io_percent":29.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.82,"run_ms":66.78,"idle_ms":8.49,"stall_ms":129.6,"io_percent":4.1,"method":"GET","action":"home#index"} | |
{"gc_ms":13.13,"run_ms":200.42,"idle_ms":43.5,"stall_ms":0.02,"io_percent":15.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.96,"run_ms":23.96,"idle_ms":3.94,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.38,"run_ms":52.72,"idle_ms":3.78,"stall_ms":0.01,"io_percent":6.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.73,"run_ms":74.46,"idle_ms":5.29,"stall_ms":0.01,"io_percent":6.2,"method":"GET","action":"home#index"} | |
{"gc_ms":3.94,"run_ms":68.13,"idle_ms":22.89,"stall_ms":0.02,"io_percent":25.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":24.08,"idle_ms":3.34,"stall_ms":0.01,"io_percent":13.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.07,"run_ms":32.52,"idle_ms":4.89,"stall_ms":0.02,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":54.13,"idle_ms":5.86,"stall_ms":4.68,"io_percent":9.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.46,"run_ms":26.2,"idle_ms":3.89,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.7,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.36,"run_ms":21.85,"idle_ms":3.93,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.04,"idle_ms":2.61,"stall_ms":0.0,"io_percent":12.1,"method":"GET","action":"users#show"} | |
{"gc_ms":2.21,"run_ms":113.94,"idle_ms":89.42,"stall_ms":0.05,"io_percent":44.3,"method":"POST","action":"stories#create"} | |
{"gc_ms":1.15,"run_ms":80.54,"idle_ms":472.73,"stall_ms":0.04,"io_percent":84.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.51,"run_ms":10.34,"idle_ms":0.08,"stall_ms":96.78,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":6.61,"run_ms":20.2,"idle_ms":3.13,"stall_ms":0.0,"io_percent":13.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.6,"run_ms":31.64,"idle_ms":14.1,"stall_ms":106.92,"io_percent":9.3,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":46.83,"idle_ms":4.89,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.63,"idle_ms":5.27,"stall_ms":0.0,"io_percent":31.5,"method":"GET"} | |
{"gc_ms":1.03,"run_ms":40.61,"idle_ms":16.18,"stall_ms":0.01,"io_percent":26.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.66,"run_ms":26.43,"idle_ms":5.32,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.48,"run_ms":12.41,"idle_ms":1.84,"stall_ms":0.0,"io_percent":12.3,"method":"GET","action":"users#show"} | |
{"gc_ms":2.12,"run_ms":22.98,"idle_ms":3.23,"stall_ms":0.13,"io_percent":11.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":23.67,"idle_ms":3.69,"stall_ms":0.01,"io_percent":14.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":97.71,"idle_ms":26.32,"stall_ms":0.03,"io_percent":20.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":54.66,"idle_ms":16.46,"stall_ms":0.02,"io_percent":21.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":20.77,"idle_ms":4.67,"stall_ms":0.06,"io_percent":17.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":20.96,"idle_ms":7.62,"stall_ms":0.01,"io_percent":26.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":33.02,"idle_ms":12.3,"stall_ms":0.01,"io_percent":27.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.56,"run_ms":157.29,"idle_ms":96.2,"stall_ms":93.47,"io_percent":30.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.7,"run_ms":29.27,"idle_ms":5.94,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":7.95,"run_ms":91.77,"idle_ms":272.07,"stall_ms":0.13,"io_percent":72.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.38,"run_ms":106.78,"idle_ms":126.73,"stall_ms":164.22,"io_percent":33.1,"method":"GET","action":"search#index"} | |
{"gc_ms":9.07,"run_ms":34.22,"idle_ms":8.54,"stall_ms":0.01,"io_percent":21.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.99,"run_ms":42.18,"idle_ms":10.32,"stall_ms":0.03,"io_percent":19.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.39,"run_ms":26.86,"idle_ms":6.23,"stall_ms":0.01,"io_percent":14.4,"method":"GET","action":"home#index"} | |
{"gc_ms":16.85,"run_ms":254.48,"idle_ms":103.56,"stall_ms":90.44,"io_percent":22.2,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":18.47,"run_ms":126.47,"idle_ms":317.77,"stall_ms":0.03,"io_percent":70.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":20.44,"idle_ms":3.26,"stall_ms":0.11,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.64,"run_ms":26.48,"idle_ms":3.78,"stall_ms":0.01,"io_percent":14.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.77,"run_ms":7.36,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":2.07,"run_ms":17.36,"idle_ms":5.15,"stall_ms":111.25,"io_percent":3.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.59,"idle_ms":0.05,"stall_ms":115.28,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.22,"idle_ms":6.42,"stall_ms":0.0,"io_percent":25.6,"method":"GET","action":"users#show"} | |
{"gc_ms":2.82,"run_ms":55.61,"idle_ms":17.78,"stall_ms":0.02,"io_percent":23.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":46.46,"idle_ms":5.89,"stall_ms":0.01,"io_percent":11.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.61,"run_ms":48.81,"idle_ms":4.42,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.49,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.35,"run_ms":22.11,"idle_ms":3.97,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":58.86,"idle_ms":5.71,"stall_ms":0.01,"io_percent":7.7,"method":"GET","action":"home#index"} | |
{"gc_ms":6.08,"run_ms":179.02,"idle_ms":2372.2,"stall_ms":0.06,"io_percent":93.6,"method":"GET","action":"home#active"} | |
{"gc_ms":2.88,"run_ms":60.42,"idle_ms":40.97,"stall_ms":0.01,"io_percent":40.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.57,"run_ms":44.81,"idle_ms":4.11,"stall_ms":0.01,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":29.81,"idle_ms":10.27,"stall_ms":0.01,"io_percent":25.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.34,"idle_ms":2.32,"stall_ms":0.0,"io_percent":10.2,"method":"GET","action":"users#show"} | |
{"gc_ms":10.4,"run_ms":113.47,"idle_ms":257.02,"stall_ms":0.02,"io_percent":69.0,"method":"GET","action":"home#index"} | |
{"gc_ms":3.09,"run_ms":51.47,"idle_ms":17.21,"stall_ms":0.02,"io_percent":24.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.26,"run_ms":10.93,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.39,"run_ms":30.33,"idle_ms":10.55,"stall_ms":1.13,"io_percent":21.6,"method":"GET","action":"home#index"} | |
{"gc_ms":8.82,"run_ms":64.26,"idle_ms":32.94,"stall_ms":0.02,"io_percent":32.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":165.29,"idle_ms":148.26,"stall_ms":12.6,"io_percent":49.0,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":12.07,"idle_ms":1.64,"stall_ms":0.0,"io_percent":11.9,"method":"GET","action":"users#show"} | |
{"gc_ms":2.2,"run_ms":24.09,"idle_ms":3.17,"stall_ms":0.01,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.6,"run_ms":47.97,"idle_ms":4.47,"stall_ms":118.56,"io_percent":2.8,"method":"GET","action":"home#index"} | |
{"gc_ms":3.09,"run_ms":48.65,"idle_ms":4.53,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.47,"idle_ms":0.04,"stall_ms":0.03,"io_percent":0.6,"method":"GET"} | |
{"gc_ms":9.62,"run_ms":56.5,"idle_ms":11.22,"stall_ms":0.02,"io_percent":16.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.1,"run_ms":14.47,"idle_ms":2.47,"stall_ms":0.0,"io_percent":12.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.92,"run_ms":22.04,"idle_ms":3.29,"stall_ms":0.0,"io_percent":11.6,"method":"GET","action":"search#index"} | |
{"gc_ms":0.63,"run_ms":10.37,"idle_ms":0.06,"stall_ms":129.07,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.78,"run_ms":13.42,"idle_ms":1.78,"stall_ms":0.0,"io_percent":11.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":18.53,"idle_ms":6.45,"stall_ms":0.01,"io_percent":29.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.78,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":118.74,"idle_ms":38.44,"stall_ms":0.03,"io_percent":29.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.42,"run_ms":20.47,"idle_ms":4.55,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.79,"run_ms":114.22,"idle_ms":34.54,"stall_ms":0.03,"io_percent":26.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.33,"run_ms":12.72,"idle_ms":1.92,"stall_ms":0.0,"io_percent":11.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":16.16,"idle_ms":2.65,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.81,"run_ms":13.41,"idle_ms":1.84,"stall_ms":0.0,"io_percent":10.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":15.32,"idle_ms":2.13,"stall_ms":0.0,"io_percent":9.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":8.13,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":45.19,"idle_ms":3.96,"stall_ms":0.01,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.64,"idle_ms":2.91,"stall_ms":0.01,"io_percent":8.2,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.85,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":12.62,"idle_ms":1.87,"stall_ms":0.0,"io_percent":11.6,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.31,"run_ms":21.82,"idle_ms":3.25,"stall_ms":0.01,"io_percent":13.3,"method":"GET","action":"home#index"} | |
{"gc_ms":7.6,"run_ms":95.93,"idle_ms":19.81,"stall_ms":0.02,"io_percent":16.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.52,"run_ms":19.17,"idle_ms":3.62,"stall_ms":0.29,"io_percent":18.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":39.53,"idle_ms":15.09,"stall_ms":0.25,"io_percent":27.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":90.88,"idle_ms":106.19,"stall_ms":0.03,"io_percent":53.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.23,"run_ms":37.65,"idle_ms":9.79,"stall_ms":0.01,"io_percent":20.8,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":36.08,"idle_ms":7.46,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.0,"run_ms":26.45,"idle_ms":10.02,"stall_ms":0.02,"io_percent":27.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.31,"run_ms":49.79,"idle_ms":4.27,"stall_ms":0.01,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.51,"run_ms":42.73,"idle_ms":16.63,"stall_ms":0.01,"io_percent":28.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.72,"run_ms":70.79,"idle_ms":419.8,"stall_ms":0.02,"io_percent":85.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.8,"run_ms":64.76,"idle_ms":15.67,"stall_ms":0.02,"io_percent":19.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":43.87,"idle_ms":11.75,"stall_ms":0.01,"io_percent":21.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.51,"run_ms":7.61,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.34,"run_ms":13.73,"idle_ms":1.58,"stall_ms":0.0,"io_percent":9.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":36.34,"idle_ms":3.89,"stall_ms":0.01,"io_percent":10.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.3,"run_ms":6.36,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.24,"idle_ms":0.64,"stall_ms":0.0,"io_percent":5.9,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.76,"run_ms":105.77,"idle_ms":27.18,"stall_ms":0.02,"io_percent":23.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.08,"idle_ms":1.85,"stall_ms":0.0,"io_percent":15.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.43,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.93,"run_ms":8.67,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":16.63,"idle_ms":3.78,"stall_ms":73.07,"io_percent":4.3,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":12.84,"idle_ms":1.8,"stall_ms":0.0,"io_percent":12.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":20.98,"idle_ms":3.78,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.68,"idle_ms":3.88,"stall_ms":0.32,"io_percent":15.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.12,"idle_ms":3.66,"stall_ms":0.0,"io_percent":16.7,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":26.54,"idle_ms":10.73,"stall_ms":6.41,"io_percent":24.7,"method":"POST","action":"stories#check_url_dupe"} | |
{"gc_ms":0.0,"run_ms":19.46,"idle_ms":3.27,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.95,"idle_ms":376.79,"stall_ms":19.48,"io_percent":90.1,"method":"POST","action":"stories#fetch_url_attributes"} | |
{"gc_ms":9.31,"run_ms":46.74,"idle_ms":10.8,"stall_ms":0.01,"io_percent":18.8,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":1.38,"run_ms":6.35,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":17.32,"idle_ms":2.79,"stall_ms":0.47,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.45,"run_ms":6.64,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":4.81,"run_ms":43.79,"idle_ms":5.6,"stall_ms":0.01,"io_percent":11.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":36.37,"idle_ms":8.03,"stall_ms":0.01,"io_percent":17.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":8.9,"run_ms":138.62,"idle_ms":21.86,"stall_ms":0.02,"io_percent":12.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":39.69,"idle_ms":6.49,"stall_ms":0.01,"io_percent":13.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.36,"run_ms":28.8,"idle_ms":9.97,"stall_ms":0.01,"io_percent":25.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.35,"idle_ms":3.2,"stall_ms":0.02,"io_percent":17.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.71,"run_ms":17.43,"idle_ms":2.79,"stall_ms":0.01,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.58,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":4.14,"run_ms":49.53,"idle_ms":4.5,"stall_ms":0.01,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.91,"run_ms":43.0,"idle_ms":4.51,"stall_ms":0.01,"io_percent":10.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.89,"idle_ms":3.72,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":2.26,"run_ms":126.16,"idle_ms":70.66,"stall_ms":0.03,"io_percent":40.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":8.4,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.3,"run_ms":13.36,"idle_ms":2.51,"stall_ms":0.0,"io_percent":16.0,"method":"GET","action":"users#show"} | |
{"gc_ms":6.4,"run_ms":26.24,"idle_ms":3.15,"stall_ms":0.01,"io_percent":11.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.35,"run_ms":10.22,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":25.28,"idle_ms":4.43,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.67,"idle_ms":5.16,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.45,"run_ms":13.48,"idle_ms":1.77,"stall_ms":0.0,"io_percent":8.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":9.14,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.3,"run_ms":22.4,"idle_ms":3.54,"stall_ms":0.0,"io_percent":8.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.71,"run_ms":27.23,"idle_ms":3.75,"stall_ms":0.01,"io_percent":11.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.55,"run_ms":15.58,"idle_ms":1.37,"stall_ms":0.01,"io_percent":7.8,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":21.1,"idle_ms":4.52,"stall_ms":0.02,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.93,"idle_ms":0.04,"stall_ms":0.08,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":17.59,"idle_ms":2.98,"stall_ms":0.36,"io_percent":12.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.27,"run_ms":24.26,"idle_ms":8.66,"stall_ms":0.01,"io_percent":28.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.84,"idle_ms":3.0,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.86,"run_ms":23.83,"idle_ms":3.92,"stall_ms":0.01,"io_percent":11.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.39,"run_ms":26.21,"idle_ms":10.6,"stall_ms":0.22,"io_percent":25.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":32.48,"idle_ms":8.72,"stall_ms":0.02,"io_percent":15.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.87,"run_ms":136.33,"idle_ms":41.6,"stall_ms":0.11,"io_percent":25.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.65,"run_ms":48.1,"idle_ms":3.14,"stall_ms":0.01,"io_percent":4.9,"method":"GET","action":"home#index"} | |
{"gc_ms":6.31,"run_ms":21.25,"idle_ms":2.03,"stall_ms":0.0,"io_percent":7.7,"method":"HEAD","action":"users#show"} | |
{"gc_ms":16.73,"run_ms":185.52,"idle_ms":34.05,"stall_ms":0.03,"io_percent":16.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.81,"run_ms":56.87,"idle_ms":20.95,"stall_ms":0.02,"io_percent":26.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.92,"idle_ms":0.06,"stall_ms":93.25,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.66,"run_ms":13.26,"idle_ms":1.99,"stall_ms":0.0,"io_percent":13.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":8.38,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":3.93,"run_ms":58.13,"idle_ms":16.28,"stall_ms":0.02,"io_percent":22.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.67,"run_ms":18.03,"idle_ms":3.3,"stall_ms":0.0,"io_percent":15.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":39.24,"idle_ms":3.73,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":10.06,"run_ms":52.64,"idle_ms":2.61,"stall_ms":0.02,"io_percent":5.0,"method":"GET","action":"home#top"} | |
{"gc_ms":10.15,"run_ms":132.53,"idle_ms":43.33,"stall_ms":0.03,"io_percent":26.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":4.33,"run_ms":43.42,"idle_ms":4.08,"stall_ms":0.01,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":3.07,"run_ms":48.52,"idle_ms":4.36,"stall_ms":0.01,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":28.05,"idle_ms":7.12,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.61,"run_ms":20.67,"idle_ms":2.97,"stall_ms":0.01,"io_percent":12.5,"method":"GET","action":"home#index"} | |
{"gc_ms":9.02,"run_ms":64.96,"idle_ms":15.83,"stall_ms":0.02,"io_percent":18.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.78,"run_ms":10.21,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.25,"run_ms":14.76,"idle_ms":2.0,"stall_ms":0.0,"io_percent":11.0,"method":"GET","action":"users#show"} | |
{"gc_ms":6.87,"run_ms":72.12,"idle_ms":14.1,"stall_ms":0.02,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.92,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.65,"run_ms":23.43,"idle_ms":3.74,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.32,"idle_ms":1.92,"stall_ms":0.0,"io_percent":8.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.83,"run_ms":22.64,"idle_ms":3.37,"stall_ms":0.06,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.71,"run_ms":79.92,"idle_ms":238.69,"stall_ms":85.67,"io_percent":59.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.76,"run_ms":23.43,"idle_ms":3.91,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.1,"run_ms":86.83,"idle_ms":156.4,"stall_ms":0.04,"io_percent":64.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.3,"run_ms":25.98,"idle_ms":4.17,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.85,"run_ms":39.37,"idle_ms":23.14,"stall_ms":0.03,"io_percent":37.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.97,"run_ms":36.8,"idle_ms":14.49,"stall_ms":0.01,"io_percent":28.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":32.17,"idle_ms":28.97,"stall_ms":0.02,"io_percent":47.6,"method":"POST","action":"stories#upvote"} | |
{"gc_ms":0.0,"run_ms":41.21,"idle_ms":3.76,"stall_ms":0.01,"io_percent":7.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.75,"run_ms":135.63,"idle_ms":79.39,"stall_ms":0.03,"io_percent":40.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":8.95,"run_ms":193.58,"idle_ms":43.21,"stall_ms":0.03,"io_percent":19.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":57.56,"idle_ms":7.85,"stall_ms":0.02,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.48,"idle_ms":0.94,"stall_ms":0.0,"io_percent":7.0,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":26.33,"idle_ms":3.38,"stall_ms":0.01,"io_percent":11.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":26.34,"idle_ms":4.07,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":97.3,"idle_ms":23.11,"stall_ms":0.1,"io_percent":19.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":42.59,"idle_ms":15.36,"stall_ms":0.01,"io_percent":26.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":31.4,"idle_ms":3.57,"stall_ms":0.01,"io_percent":7.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.38,"run_ms":50.79,"idle_ms":16.13,"stall_ms":0.02,"io_percent":23.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.26,"run_ms":40.62,"idle_ms":4.06,"stall_ms":0.01,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":2.76,"run_ms":24.77,"idle_ms":3.88,"stall_ms":0.01,"io_percent":15.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":37.37,"idle_ms":3.73,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":4.11,"run_ms":41.53,"idle_ms":3.61,"stall_ms":2.01,"io_percent":6.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.34,"idle_ms":8.09,"stall_ms":0.0,"io_percent":27.7,"method":"HEAD"} | |
{"gc_ms":2.92,"run_ms":34.27,"idle_ms":4.04,"stall_ms":2.42,"io_percent":7.6,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":30.95,"idle_ms":10.76,"stall_ms":0.01,"io_percent":25.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.49,"run_ms":49.2,"idle_ms":15.93,"stall_ms":0.02,"io_percent":24.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":43.76,"idle_ms":6.74,"stall_ms":0.01,"io_percent":13.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.3,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":13.39,"idle_ms":1.74,"stall_ms":0.0,"io_percent":11.5,"method":"HEAD","action":"users#show"} | |
{"gc_ms":16.38,"run_ms":158.85,"idle_ms":235.31,"stall_ms":0.18,"io_percent":62.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":11.53,"idle_ms":2.03,"stall_ms":0.0,"io_percent":14.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.82,"run_ms":25.97,"idle_ms":3.18,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":25.11,"idle_ms":3.43,"stall_ms":0.05,"io_percent":13.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":38.29,"idle_ms":3.87,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.61,"run_ms":11.75,"idle_ms":1.77,"stall_ms":0.0,"io_percent":13.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":23.08,"idle_ms":4.1,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.94,"run_ms":8.21,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":2.42,"run_ms":41.15,"idle_ms":10.11,"stall_ms":0.01,"io_percent":19.9,"method":"GET","action":"comments#index"} | |
{"gc_ms":19.17,"run_ms":143.14,"idle_ms":39.38,"stall_ms":0.02,"io_percent":23.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.6,"run_ms":7.39,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.55,"run_ms":12.53,"idle_ms":2.12,"stall_ms":0.0,"io_percent":12.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.97,"run_ms":13.4,"idle_ms":1.9,"stall_ms":0.0,"io_percent":10.5,"method":"GET","action":"users#show"} | |
{"gc_ms":2.11,"run_ms":36.0,"idle_ms":11.25,"stall_ms":0.01,"io_percent":23.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.61,"run_ms":8.78,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.43,"run_ms":11.43,"idle_ms":1.88,"stall_ms":0.0,"io_percent":14.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.66,"run_ms":21.39,"idle_ms":3.33,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.24,"run_ms":7.69,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.31,"run_ms":17.15,"idle_ms":1.94,"stall_ms":0.0,"io_percent":10.2,"method":"GET","action":"users#show"} | |
{"gc_ms":2.07,"run_ms":55.66,"idle_ms":7.54,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.26,"idle_ms":2.85,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.69,"run_ms":49.75,"idle_ms":7.13,"stall_ms":0.01,"io_percent":11.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.38,"run_ms":12.41,"idle_ms":1.8,"stall_ms":0.0,"io_percent":11.6,"method":"GET","action":"users#show"} | |
{"gc_ms":1.88,"run_ms":50.16,"idle_ms":17.06,"stall_ms":76.12,"io_percent":11.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.71,"run_ms":8.13,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":19.48,"idle_ms":6.6,"stall_ms":94.8,"io_percent":5.5,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":6.37,"run_ms":47.02,"idle_ms":5.96,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.26,"run_ms":10.41,"idle_ms":1.54,"stall_ms":0.0,"io_percent":11.9,"method":"GET","action":"users#show"} | |
{"gc_ms":1.03,"run_ms":34.57,"idle_ms":6.72,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.32,"run_ms":36.67,"idle_ms":4.87,"stall_ms":0.18,"io_percent":12.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.84,"run_ms":16.63,"idle_ms":2.56,"stall_ms":0.0,"io_percent":12.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.28,"run_ms":27.11,"idle_ms":7.68,"stall_ms":0.01,"io_percent":22.1,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.72,"run_ms":22.13,"idle_ms":3.61,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.56,"run_ms":12.24,"idle_ms":0.69,"stall_ms":0.0,"io_percent":5.4,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":52.81,"idle_ms":3.94,"stall_ms":0.19,"io_percent":6.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.4,"idle_ms":2.01,"stall_ms":0.0,"io_percent":16.0,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.33,"run_ms":31.17,"idle_ms":64.28,"stall_ms":0.02,"io_percent":67.7,"method":"POST","action":"stories#upvote"} | |
{"gc_ms":0.0,"run_ms":16.29,"idle_ms":2.14,"stall_ms":0.0,"io_percent":9.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":24.07,"idle_ms":3.63,"stall_ms":0.01,"io_percent":13.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.82,"run_ms":157.9,"idle_ms":47.67,"stall_ms":0.03,"io_percent":26.5,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":43.75,"idle_ms":12.86,"stall_ms":0.01,"io_percent":22.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.22,"run_ms":47.55,"idle_ms":25.68,"stall_ms":0.01,"io_percent":26.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.51,"run_ms":42.75,"idle_ms":53.48,"stall_ms":1.98,"io_percent":45.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.77,"run_ms":46.53,"idle_ms":44.74,"stall_ms":0.01,"io_percent":37.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.79,"run_ms":38.59,"idle_ms":55.57,"stall_ms":2.23,"io_percent":39.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.95,"run_ms":44.21,"idle_ms":59.87,"stall_ms":5.92,"io_percent":41.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":42.98,"idle_ms":42.2,"stall_ms":0.15,"io_percent":39.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.44,"run_ms":51.43,"idle_ms":38.89,"stall_ms":0.64,"io_percent":27.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":41.2,"idle_ms":17.78,"stall_ms":0.01,"io_percent":21.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.74,"run_ms":33.13,"idle_ms":8.91,"stall_ms":101.95,"io_percent":6.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.4,"run_ms":37.0,"idle_ms":13.57,"stall_ms":0.01,"io_percent":27.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.31,"run_ms":7.73,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":1.16,"run_ms":30.92,"idle_ms":10.51,"stall_ms":0.01,"io_percent":25.7,"method":"GET","action":"comments#index"} | |
{"gc_ms":4.85,"run_ms":60.05,"idle_ms":4.46,"stall_ms":0.01,"io_percent":7.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":48.89,"idle_ms":20.24,"stall_ms":0.02,"io_percent":29.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.34,"run_ms":24.14,"idle_ms":4.08,"stall_ms":0.91,"io_percent":16.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.2,"run_ms":36.47,"idle_ms":12.22,"stall_ms":0.01,"io_percent":25.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.43,"run_ms":50.04,"idle_ms":17.13,"stall_ms":0.01,"io_percent":25.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.95,"run_ms":71.23,"idle_ms":273.39,"stall_ms":0.09,"io_percent":79.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.14,"run_ms":75.65,"idle_ms":33.73,"stall_ms":0.02,"io_percent":30.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.0,"run_ms":188.08,"idle_ms":43.41,"stall_ms":0.03,"io_percent":20.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.69,"run_ms":32.67,"idle_ms":3.92,"stall_ms":0.01,"io_percent":11.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":56.46,"idle_ms":16.49,"stall_ms":0.02,"io_percent":22.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.22,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.4,"run_ms":26.68,"idle_ms":4.05,"stall_ms":0.06,"io_percent":15.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":167.98,"idle_ms":44.25,"stall_ms":0.09,"io_percent":23.5,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":9.74,"idle_ms":0.5,"stall_ms":0.0,"io_percent":4.8,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":6.96,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":32.13,"idle_ms":10.82,"stall_ms":0.01,"io_percent":22.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.25,"run_ms":12.4,"idle_ms":2.28,"stall_ms":0.0,"io_percent":15.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":38.49,"idle_ms":3.74,"stall_ms":0.01,"io_percent":9.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.33,"run_ms":21.13,"idle_ms":3.42,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.57,"run_ms":153.93,"idle_ms":408.91,"stall_ms":0.03,"io_percent":74.3,"method":"GET","action":"home#category"} | |
{"gc_ms":2.45,"run_ms":23.29,"idle_ms":2.95,"stall_ms":0.01,"io_percent":12.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.47,"idle_ms":1.1,"stall_ms":0.0,"io_percent":10.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.49,"idle_ms":1.97,"stall_ms":0.0,"io_percent":10.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":46.95,"idle_ms":24.14,"stall_ms":88.68,"io_percent":15.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":14.5,"run_ms":168.41,"idle_ms":90.51,"stall_ms":0.03,"io_percent":40.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":17.15,"idle_ms":2.87,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":49.62,"idle_ms":16.89,"stall_ms":0.02,"io_percent":25.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.89,"idle_ms":3.37,"stall_ms":0.03,"io_percent":17.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.84,"run_ms":26.01,"idle_ms":8.72,"stall_ms":0.01,"io_percent":25.0,"method":"GET","action":"comments#reply"} | |
{"gc_ms":0.33,"run_ms":8.87,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.32,"run_ms":13.62,"idle_ms":2.19,"stall_ms":0.0,"io_percent":13.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":17.38,"idle_ms":2.93,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.42,"run_ms":15.39,"idle_ms":4.47,"stall_ms":0.0,"io_percent":22.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":10.11,"idle_ms":0.68,"stall_ms":0.0,"io_percent":6.3,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":8.18,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":12.18,"run_ms":46.22,"idle_ms":4.85,"stall_ms":113.28,"io_percent":3.1,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":27.12,"idle_ms":2.55,"stall_ms":0.0,"io_percent":7.9,"method":"GET","action":"users#show"} | |
{"gc_ms":14.41,"run_ms":102.26,"idle_ms":8.74,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":41.3,"idle_ms":5.15,"stall_ms":0.01,"io_percent":11.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":182.2,"idle_ms":80.96,"stall_ms":0.03,"io_percent":29.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":97.42,"idle_ms":60.05,"stall_ms":0.02,"io_percent":37.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":32.91,"idle_ms":0.64,"stall_ms":0.0,"io_percent":1.8,"method":"HEAD"} | |
{"gc_ms":0.52,"run_ms":50.71,"idle_ms":10.73,"stall_ms":0.01,"io_percent":21.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":120.02,"idle_ms":50.7,"stall_ms":0.02,"io_percent":29.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.01,"run_ms":51.57,"idle_ms":6.75,"stall_ms":0.01,"io_percent":11.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":121.31,"idle_ms":6.86,"stall_ms":1.64,"io_percent":4.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":85.04,"idle_ms":36.6,"stall_ms":0.02,"io_percent":29.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.01,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":13.1,"run_ms":52.73,"idle_ms":15.18,"stall_ms":0.03,"io_percent":22.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":24.8,"idle_ms":8.99,"stall_ms":0.01,"io_percent":26.7,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":33.99,"idle_ms":6.82,"stall_ms":0.01,"io_percent":20.0,"method":"GET","action":"home#index"} | |
{"gc_ms":5.15,"run_ms":32.93,"idle_ms":3.39,"stall_ms":0.01,"io_percent":10.3,"method":"GET","action":"home#index"} | |
{"gc_ms":4.41,"run_ms":16.6,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.1,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":6.36,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":24.88,"idle_ms":5.54,"stall_ms":0.0,"io_percent":18.0,"method":"GET","action":"users#show"} | |
{"gc_ms":10.03,"run_ms":100.23,"idle_ms":44.4,"stall_ms":0.02,"io_percent":32.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.84,"run_ms":36.09,"idle_ms":1.99,"stall_ms":0.0,"io_percent":5.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":54.02,"idle_ms":20.93,"stall_ms":0.02,"io_percent":25.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.46,"run_ms":179.14,"idle_ms":60.52,"stall_ms":0.03,"io_percent":29.1,"method":"GET","action":"home#index"} | |
{"gc_ms":31.35,"run_ms":173.82,"idle_ms":12.78,"stall_ms":0.01,"io_percent":5.5,"method":"GET","action":"home#index"} | |
{"gc_ms":11.1,"run_ms":334.64,"idle_ms":139.65,"stall_ms":22.38,"io_percent":25.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.37,"run_ms":118.64,"idle_ms":14.34,"stall_ms":0.08,"io_percent":7.4,"method":"GET","action":"home#index"} | |
{"gc_ms":4.85,"run_ms":62.49,"idle_ms":10.71,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.83,"run_ms":26.39,"idle_ms":4.63,"stall_ms":0.0,"io_percent":15.3,"method":"HEAD","action":"users#show"} | |
{"gc_ms":4.38,"run_ms":44.78,"idle_ms":5.37,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.37,"run_ms":110.56,"idle_ms":21.94,"stall_ms":0.88,"io_percent":15.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":53.83,"idle_ms":56.61,"stall_ms":0.01,"io_percent":49.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.03,"run_ms":47.49,"idle_ms":7.33,"stall_ms":0.01,"io_percent":15.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.86,"run_ms":117.99,"idle_ms":33.39,"stall_ms":0.01,"io_percent":21.0,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.64,"run_ms":43.71,"idle_ms":6.88,"stall_ms":0.01,"io_percent":14.2,"method":"GET","action":"home#index"} | |
{"gc_ms":6.35,"run_ms":133.94,"idle_ms":19.27,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":333.56,"idle_ms":138.75,"stall_ms":9.78,"io_percent":30.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.81,"run_ms":280.88,"idle_ms":160.11,"stall_ms":0.03,"io_percent":34.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":17.0,"run_ms":90.6,"idle_ms":42.63,"stall_ms":0.02,"io_percent":29.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.02,"run_ms":58.85,"idle_ms":15.76,"stall_ms":0.01,"io_percent":20.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":18.44,"run_ms":175.14,"idle_ms":773.44,"stall_ms":230.47,"io_percent":64.9,"method":"POST","action":"comments#create"} | |
{"gc_ms":11.9,"run_ms":263.99,"idle_ms":64.82,"stall_ms":205.86,"io_percent":13.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.23,"run_ms":12.84,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":27.76,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":3.99,"run_ms":88.93,"idle_ms":23.98,"stall_ms":0.02,"io_percent":21.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.51,"run_ms":32.89,"idle_ms":29.56,"stall_ms":0.0,"io_percent":44.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.41,"run_ms":92.35,"idle_ms":50.63,"stall_ms":0.01,"io_percent":33.8,"method":"GET","action":"comments#index"} | |
{"gc_ms":6.64,"run_ms":118.96,"idle_ms":16.25,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#newest"} | |
{"gc_ms":5.24,"run_ms":104.34,"idle_ms":9.07,"stall_ms":199.09,"io_percent":3.0,"method":"GET","action":"home#index"} | |
{"gc_ms":12.17,"run_ms":133.69,"idle_ms":7.26,"stall_ms":0.19,"io_percent":4.1,"method":"GET","action":"home#index"} | |
{"gc_ms":6.94,"run_ms":200.39,"idle_ms":139.01,"stall_ms":0.11,"io_percent":38.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":4.63,"run_ms":201.54,"idle_ms":70.48,"stall_ms":0.02,"io_percent":22.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":11.89,"run_ms":158.99,"idle_ms":61.38,"stall_ms":0.02,"io_percent":26.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.32,"run_ms":117.22,"idle_ms":52.38,"stall_ms":0.71,"io_percent":29.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.18,"run_ms":83.05,"idle_ms":37.55,"stall_ms":0.02,"io_percent":27.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.26,"run_ms":79.26,"idle_ms":28.0,"stall_ms":0.01,"io_percent":25.8,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":1.81,"run_ms":100.72,"idle_ms":41.95,"stall_ms":0.02,"io_percent":28.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":115.08,"idle_ms":35.69,"stall_ms":0.02,"io_percent":22.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.43,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":58.26,"idle_ms":8.77,"stall_ms":261.89,"io_percent":2.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":47.98,"idle_ms":29.44,"stall_ms":0.01,"io_percent":41.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.16,"run_ms":22.02,"idle_ms":1.11,"stall_ms":0.0,"io_percent":3.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":125.86,"idle_ms":109.77,"stall_ms":0.22,"io_percent":45.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":150.91,"idle_ms":410.34,"stall_ms":0.02,"io_percent":72.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":137.65,"idle_ms":91.01,"stall_ms":17.26,"io_percent":37.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.69,"run_ms":132.3,"idle_ms":86.36,"stall_ms":0.02,"io_percent":42.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":131.72,"idle_ms":6.54,"stall_ms":0.01,"io_percent":4.5,"method":"GET","action":"home#index"} | |
{"gc_ms":7.2,"run_ms":64.85,"idle_ms":2.83,"stall_ms":0.01,"io_percent":4.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":64.5,"idle_ms":8.16,"stall_ms":0.01,"io_percent":11.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.68,"run_ms":38.64,"idle_ms":6.8,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.17,"run_ms":85.93,"idle_ms":4.6,"stall_ms":0.01,"io_percent":5.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.9,"run_ms":122.98,"idle_ms":33.86,"stall_ms":0.02,"io_percent":14.7,"method":"GET","action":"comments#index"} | |
{"gc_ms":3.95,"run_ms":283.11,"idle_ms":122.19,"stall_ms":0.03,"io_percent":31.6,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":6.29,"run_ms":361.69,"idle_ms":340.64,"stall_ms":0.13,"io_percent":47.8,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":2.97,"run_ms":42.2,"idle_ms":5.27,"stall_ms":0.01,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":51.46,"run_ms":363.72,"idle_ms":57.57,"stall_ms":0.03,"io_percent":12.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.53,"run_ms":62.66,"idle_ms":5.12,"stall_ms":0.01,"io_percent":6.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":70.25,"idle_ms":25.62,"stall_ms":0.01,"io_percent":23.4,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":133.51,"idle_ms":40.97,"stall_ms":0.02,"io_percent":23.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":53.27,"idle_ms":9.46,"stall_ms":0.22,"io_percent":12.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":54.69,"idle_ms":11.33,"stall_ms":0.02,"io_percent":13.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.7,"run_ms":20.73,"idle_ms":0.79,"stall_ms":0.0,"io_percent":3.7,"method":"GET"} | |
{"gc_ms":1.08,"run_ms":150.49,"idle_ms":78.82,"stall_ms":0.76,"io_percent":30.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":45.77,"idle_ms":22.25,"stall_ms":0.01,"io_percent":29.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.3,"run_ms":48.84,"idle_ms":7.86,"stall_ms":0.01,"io_percent":12.6,"method":"GET","action":"home#index"} | |
{"gc_ms":16.95,"run_ms":64.12,"idle_ms":5.25,"stall_ms":391.44,"io_percent":1.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.59,"run_ms":136.3,"idle_ms":92.83,"stall_ms":0.03,"io_percent":40.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.09,"run_ms":158.98,"idle_ms":12.29,"stall_ms":0.01,"io_percent":7.2,"method":"GET","action":"home#index"} | |
{"gc_ms":3.85,"run_ms":180.77,"idle_ms":114.24,"stall_ms":0.03,"io_percent":28.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":25.56,"idle_ms":5.85,"stall_ms":0.0,"io_percent":14.8,"method":"GET"} | |
{"gc_ms":3.23,"run_ms":113.51,"idle_ms":7.38,"stall_ms":0.01,"io_percent":6.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.42,"run_ms":61.26,"idle_ms":37.34,"stall_ms":0.01,"io_percent":36.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.35,"run_ms":45.81,"idle_ms":0.11,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.71,"run_ms":48.81,"idle_ms":100.11,"stall_ms":0.01,"io_percent":66.9,"method":"GET","action":"users#show"} | |
{"gc_ms":4.43,"run_ms":173.63,"idle_ms":205.63,"stall_ms":0.03,"io_percent":50.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.91,"run_ms":138.84,"idle_ms":129.74,"stall_ms":0.03,"io_percent":49.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":170.2,"idle_ms":157.29,"stall_ms":0.02,"io_percent":60.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":30.61,"run_ms":151.47,"idle_ms":60.21,"stall_ms":0.02,"io_percent":28.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.17,"run_ms":144.06,"idle_ms":15.93,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.42,"run_ms":53.09,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":6.53,"run_ms":74.09,"idle_ms":35.9,"stall_ms":0.02,"io_percent":32.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":63.87,"idle_ms":13.02,"stall_ms":0.02,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":55.21,"run_ms":665.27,"idle_ms":164.42,"stall_ms":0.13,"io_percent":19.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":7.66,"run_ms":522.91,"idle_ms":218.25,"stall_ms":409.58,"io_percent":19.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":168.2,"idle_ms":60.87,"stall_ms":0.01,"io_percent":34.6,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":10.62,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":149.86,"idle_ms":16.53,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":53.89,"idle_ms":8.02,"stall_ms":0.38,"io_percent":9.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":175.36,"idle_ms":107.3,"stall_ms":0.02,"io_percent":41.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.1,"run_ms":203.01,"idle_ms":54.84,"stall_ms":0.03,"io_percent":20.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":79.55,"idle_ms":4.61,"stall_ms":0.05,"io_percent":5.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":114.16,"idle_ms":23.06,"stall_ms":0.02,"io_percent":15.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":22.9,"run_ms":182.5,"idle_ms":48.18,"stall_ms":0.02,"io_percent":19.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.53,"run_ms":134.5,"idle_ms":15.1,"stall_ms":0.01,"io_percent":8.8,"method":"GET","action":"home#index"} | |
{"gc_ms":3.9,"run_ms":97.09,"idle_ms":81.99,"stall_ms":0.02,"io_percent":39.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":22.03,"run_ms":283.92,"idle_ms":215.47,"stall_ms":0.03,"io_percent":40.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":87.57,"idle_ms":97.53,"stall_ms":0.02,"io_percent":44.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":13.37,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":26.58,"idle_ms":5.74,"stall_ms":0.02,"io_percent":15.7,"method":"GET"} | |
{"gc_ms":7.87,"run_ms":39.83,"idle_ms":4.5,"stall_ms":7.52,"io_percent":6.9,"method":"GET","action":"users#show"} | |
{"gc_ms":20.89,"run_ms":370.97,"idle_ms":152.34,"stall_ms":0.03,"io_percent":25.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":215.67,"idle_ms":333.28,"stall_ms":0.05,"io_percent":60.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.72,"run_ms":115.61,"idle_ms":15.85,"stall_ms":0.01,"io_percent":11.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.8,"idle_ms":20.19,"stall_ms":0.0,"io_percent":38.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":44.8,"idle_ms":38.07,"stall_ms":0.01,"io_percent":24.7,"method":"GET","action":"users#show"} | |
{"gc_ms":4.54,"run_ms":80.92,"idle_ms":121.11,"stall_ms":0.02,"io_percent":59.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":34.35,"idle_ms":11.04,"stall_ms":0.0,"io_percent":18.6,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":27.57,"idle_ms":12.96,"stall_ms":0.0,"io_percent":18.2,"method":"GET","action":"users#show"} | |
{"gc_ms":5.32,"run_ms":146.99,"idle_ms":126.5,"stall_ms":0.02,"io_percent":44.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":23.1,"run_ms":428.21,"idle_ms":174.01,"stall_ms":0.03,"io_percent":21.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":11.13,"run_ms":184.35,"idle_ms":70.97,"stall_ms":0.01,"io_percent":23.3,"method":"GET","action":"home#index"} | |
{"gc_ms":8.29,"run_ms":259.7,"idle_ms":271.19,"stall_ms":374.14,"io_percent":28.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.44,"run_ms":154.23,"idle_ms":14.27,"stall_ms":0.01,"io_percent":8.0,"method":"GET","action":"home#index"} | |
{"gc_ms":10.12,"run_ms":88.97,"idle_ms":8.13,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":73.43,"idle_ms":37.93,"stall_ms":216.41,"io_percent":10.5,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":0.0,"run_ms":96.21,"idle_ms":27.42,"stall_ms":0.01,"io_percent":18.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":84.75,"idle_ms":24.57,"stall_ms":0.01,"io_percent":14.6,"method":"GET","action":"home#index"} | |
{"gc_ms":4.59,"run_ms":243.36,"idle_ms":108.39,"stall_ms":0.03,"io_percent":25.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.83,"run_ms":40.31,"idle_ms":6.29,"stall_ms":0.01,"io_percent":6.8,"method":"GET","action":"home#index"} | |
{"gc_ms":6.07,"run_ms":112.64,"idle_ms":28.5,"stall_ms":0.21,"io_percent":11.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.52,"idle_ms":0.09,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.38,"run_ms":19.57,"idle_ms":1.02,"stall_ms":0.0,"io_percent":4.9,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":18.56,"idle_ms":2.91,"stall_ms":0.0,"io_percent":11.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":52.29,"idle_ms":4.66,"stall_ms":0.01,"io_percent":7.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.18,"run_ms":113.42,"idle_ms":27.87,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":35.53,"idle_ms":6.86,"stall_ms":0.01,"io_percent":15.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.91,"run_ms":81.12,"idle_ms":4.27,"stall_ms":230.29,"io_percent":1.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.08,"run_ms":13.85,"idle_ms":0.05,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":46.73,"idle_ms":14.63,"stall_ms":233.97,"io_percent":5.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":218.61,"idle_ms":62.27,"stall_ms":0.02,"io_percent":21.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":56.93,"idle_ms":53.56,"stall_ms":0.0,"io_percent":42.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":33.68,"idle_ms":5.96,"stall_ms":0.0,"io_percent":7.5,"method":"HEAD"} | |
{"gc_ms":27.09,"run_ms":154.69,"idle_ms":9.81,"stall_ms":0.01,"io_percent":5.0,"method":"GET","action":"home#index"} | |
{"gc_ms":2.55,"run_ms":52.95,"idle_ms":11.47,"stall_ms":0.01,"io_percent":20.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":16.14,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":166.92,"idle_ms":10.69,"stall_ms":0.07,"io_percent":3.2,"method":"GET","action":"home#index"} | |
{"gc_ms":27.75,"run_ms":450.62,"idle_ms":335.37,"stall_ms":0.03,"io_percent":38.5,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.68,"run_ms":83.55,"idle_ms":54.62,"stall_ms":0.01,"io_percent":37.0,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.23,"run_ms":105.4,"idle_ms":92.74,"stall_ms":0.01,"io_percent":45.5,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":9.35,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":138.41,"idle_ms":32.91,"stall_ms":0.01,"io_percent":13.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.26,"run_ms":67.69,"idle_ms":16.24,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":3.29,"run_ms":103.82,"idle_ms":19.93,"stall_ms":0.01,"io_percent":14.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":26.83,"idle_ms":21.99,"stall_ms":0.0,"io_percent":33.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":262.35,"idle_ms":350.47,"stall_ms":0.03,"io_percent":51.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.74,"run_ms":134.97,"idle_ms":40.71,"stall_ms":0.01,"io_percent":20.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":19.03,"idle_ms":0.05,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":5.98,"run_ms":55.2,"idle_ms":6.34,"stall_ms":415.25,"io_percent":1.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.83,"run_ms":33.74,"idle_ms":5.18,"stall_ms":353.71,"io_percent":1.3,"method":"GET","action":"users#show"} | |
{"gc_ms":16.53,"run_ms":144.36,"idle_ms":12.48,"stall_ms":0.08,"io_percent":5.5,"method":"GET","action":"home#index"} | |
{"gc_ms":32.79,"run_ms":269.84,"idle_ms":654.53,"stall_ms":0.03,"io_percent":67.3,"method":"GET","action":"home#index"} | |
{"gc_ms":4.95,"run_ms":188.68,"idle_ms":365.82,"stall_ms":0.02,"io_percent":63.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":47.71,"idle_ms":9.22,"stall_ms":0.01,"io_percent":13.8,"method":"GET","action":"home#index"} | |
{"gc_ms":4.07,"run_ms":43.85,"idle_ms":6.56,"stall_ms":0.01,"io_percent":12.2,"method":"GET","action":"home#index"} | |
{"gc_ms":5.23,"run_ms":95.0,"idle_ms":34.95,"stall_ms":0.02,"io_percent":24.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":59.35,"idle_ms":23.22,"stall_ms":244.22,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.8,"run_ms":40.26,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":4.63,"run_ms":123.61,"idle_ms":26.29,"stall_ms":0.02,"io_percent":16.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":54.5,"idle_ms":43.47,"stall_ms":0.01,"io_percent":21.9,"method":"GET"} | |
{"gc_ms":12.33,"run_ms":50.74,"idle_ms":43.59,"stall_ms":0.01,"io_percent":36.5,"method":"GET","action":"users#show"} | |
{"gc_ms":4.89,"run_ms":30.55,"idle_ms":1.98,"stall_ms":0.0,"io_percent":5.1,"method":"GET","action":"users#show"} | |
{"gc_ms":13.9,"run_ms":169.49,"idle_ms":102.17,"stall_ms":0.03,"io_percent":30.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.7,"run_ms":49.72,"idle_ms":24.28,"stall_ms":4.26,"io_percent":15.5,"method":"HEAD","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.11,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":70.6,"idle_ms":11.36,"stall_ms":0.01,"io_percent":11.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":211.72,"idle_ms":677.95,"stall_ms":0.03,"io_percent":68.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.17,"run_ms":248.17,"idle_ms":435.59,"stall_ms":7.48,"io_percent":47.7,"method":"GET","action":"home#index"} | |
{"gc_ms":3.14,"run_ms":44.57,"idle_ms":14.36,"stall_ms":0.01,"io_percent":18.5,"method":"GET","action":"users#show"} | |
{"gc_ms":8.43,"run_ms":157.18,"idle_ms":74.18,"stall_ms":305.45,"io_percent":11.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":44.61,"idle_ms":8.5,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":126.53,"idle_ms":32.05,"stall_ms":0.17,"io_percent":10.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":14.02,"run_ms":184.63,"idle_ms":165.03,"stall_ms":0.02,"io_percent":38.2,"method":"GET","action":"home#index"} | |
{"gc_ms":20.4,"run_ms":114.61,"idle_ms":10.88,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.69,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":7.16,"run_ms":28.74,"idle_ms":10.08,"stall_ms":0.0,"io_percent":16.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":10.38,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":4.11,"run_ms":46.67,"idle_ms":39.2,"stall_ms":0.0,"io_percent":29.1,"method":"GET","action":"users#show"} | |
{"gc_ms":2.5,"run_ms":21.0,"idle_ms":10.27,"stall_ms":366.8,"io_percent":2.7,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":38.47,"idle_ms":22.05,"stall_ms":0.01,"io_percent":28.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":53.02,"idle_ms":65.48,"stall_ms":0.02,"io_percent":55.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.33,"run_ms":47.82,"idle_ms":29.36,"stall_ms":0.02,"io_percent":28.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.32,"run_ms":76.28,"idle_ms":35.35,"stall_ms":10.72,"io_percent":19.0,"method":"GET","action":"home#index"} | |
{"gc_ms":18.97,"run_ms":274.41,"idle_ms":99.7,"stall_ms":0.09,"io_percent":14.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":338.36,"idle_ms":137.81,"stall_ms":0.04,"io_percent":23.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.17,"run_ms":53.76,"idle_ms":7.23,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.75,"run_ms":72.75,"idle_ms":31.78,"stall_ms":0.01,"io_percent":28.7,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.34,"run_ms":28.0,"idle_ms":3.96,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.18,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.86,"idle_ms":4.52,"stall_ms":0.0,"io_percent":26.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":37.6,"idle_ms":9.84,"stall_ms":0.01,"io_percent":21.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":49.59,"idle_ms":12.44,"stall_ms":0.02,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":21.47,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.28,"run_ms":36.6,"idle_ms":3.15,"stall_ms":0.01,"io_percent":7.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":69.96,"idle_ms":8.94,"stall_ms":0.01,"io_percent":12.4,"method":"GET","action":"home#top"} | |
{"gc_ms":0.6,"run_ms":69.69,"idle_ms":22.76,"stall_ms":0.01,"io_percent":21.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.07,"run_ms":201.7,"idle_ms":223.67,"stall_ms":0.03,"io_percent":46.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.74,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":32.51,"idle_ms":15.19,"stall_ms":0.01,"io_percent":31.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":23.96,"idle_ms":7.8,"stall_ms":0.0,"io_percent":24.1,"method":"GET","action":"users#show"} | |
{"gc_ms":6.58,"run_ms":223.99,"idle_ms":28.78,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":23.47,"idle_ms":6.76,"stall_ms":0.0,"io_percent":18.5,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.36,"run_ms":26.02,"idle_ms":10.21,"stall_ms":0.01,"io_percent":23.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":28.2,"idle_ms":4.12,"stall_ms":0.02,"io_percent":12.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.99,"run_ms":41.36,"idle_ms":22.2,"stall_ms":223.61,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.08,"run_ms":15.64,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":31.26,"run_ms":244.48,"idle_ms":12.97,"stall_ms":378.1,"io_percent":2.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.74,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.28,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":51.84,"idle_ms":12.0,"stall_ms":0.0,"io_percent":20.8,"method":"GET","action":"users#show"} | |
{"gc_ms":5.04,"run_ms":67.02,"idle_ms":4.35,"stall_ms":0.2,"io_percent":4.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":84.99,"idle_ms":8.92,"stall_ms":0.01,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.0,"idle_ms":6.68,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":3.76,"run_ms":76.59,"idle_ms":4.95,"stall_ms":0.01,"io_percent":5.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.39,"run_ms":9.3,"idle_ms":118.39,"stall_ms":0.22,"io_percent":78.5,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":50.86,"idle_ms":93.81,"stall_ms":0.61,"io_percent":54.5,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":54.12,"idle_ms":49.05,"stall_ms":14.43,"io_percent":18.9,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":42.4,"idle_ms":38.87,"stall_ms":0.64,"io_percent":38.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.84,"idle_ms":184.37,"stall_ms":93.51,"io_percent":58.6,"method":"HEAD"} | |
{"gc_ms":12.86,"run_ms":82.28,"idle_ms":196.29,"stall_ms":0.94,"io_percent":55.3,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.94,"idle_ms":113.99,"stall_ms":21.76,"io_percent":44.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":17.35,"idle_ms":71.51,"stall_ms":305.64,"io_percent":17.5,"method":"HEAD"} | |
{"gc_ms":0.36,"run_ms":110.21,"idle_ms":85.4,"stall_ms":57.7,"io_percent":17.6,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":2.92,"run_ms":69.14,"idle_ms":14.24,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.64,"run_ms":45.25,"idle_ms":51.28,"stall_ms":0.15,"io_percent":44.9,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":1.26,"run_ms":17.51,"idle_ms":225.43,"stall_ms":369.3,"io_percent":37.1,"method":"HEAD"} | |
{"gc_ms":1.79,"run_ms":44.0,"idle_ms":42.58,"stall_ms":24.03,"io_percent":29.6,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.61,"run_ms":48.71,"idle_ms":55.99,"stall_ms":58.04,"io_percent":29.1,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":5.82,"run_ms":96.11,"idle_ms":55.32,"stall_ms":35.08,"io_percent":6.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":66.58,"idle_ms":167.62,"stall_ms":194.7,"io_percent":20.3,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":1.28,"run_ms":4.81,"idle_ms":65.19,"stall_ms":47.88,"io_percent":54.9,"method":"HEAD"} | |
{"gc_ms":0.6,"run_ms":13.4,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.97,"run_ms":4.72,"idle_ms":10.15,"stall_ms":193.33,"io_percent":4.7,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":54.03,"idle_ms":94.81,"stall_ms":297.71,"io_percent":16.3,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":4.38,"idle_ms":22.07,"stall_ms":170.06,"io_percent":10.1,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":40.17,"idle_ms":55.48,"stall_ms":196.13,"io_percent":17.0,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":3.38,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":55.28,"idle_ms":257.57,"stall_ms":63.67,"io_percent":37.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.03,"run_ms":66.05,"idle_ms":220.19,"stall_ms":169.57,"io_percent":25.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.38,"run_ms":26.27,"idle_ms":16.53,"stall_ms":38.54,"io_percent":12.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":61.78,"idle_ms":296.66,"stall_ms":346.29,"io_percent":28.4,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":3.96,"run_ms":61.76,"idle_ms":119.76,"stall_ms":99.21,"io_percent":31.9,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":48.91,"idle_ms":196.97,"stall_ms":515.91,"io_percent":19.6,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.99,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":3.31,"run_ms":53.56,"idle_ms":358.0,"stall_ms":320.7,"io_percent":33.9,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":5.81,"run_ms":43.21,"idle_ms":143.03,"stall_ms":364.57,"io_percent":19.6,"method":"GET","action":"home#index"} | |
{"gc_ms":3.11,"run_ms":54.69,"idle_ms":250.28,"stall_ms":51.49,"io_percent":51.4,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":2.31,"run_ms":51.41,"idle_ms":331.37,"stall_ms":570.06,"io_percent":30.0,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":7.15,"run_ms":52.5,"idle_ms":252.95,"stall_ms":278.51,"io_percent":29.5,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.5,"idle_ms":3.0,"stall_ms":0.0,"io_percent":8.5,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":44.22,"idle_ms":207.42,"stall_ms":147.33,"io_percent":34.4,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":55.67,"idle_ms":152.41,"stall_ms":359.97,"io_percent":24.6,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":2.28,"run_ms":64.58,"idle_ms":5.1,"stall_ms":0.47,"io_percent":4.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.28,"run_ms":37.36,"idle_ms":24.0,"stall_ms":0.01,"io_percent":21.3,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":2.14,"run_ms":29.08,"idle_ms":4.02,"stall_ms":0.06,"io_percent":8.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":35.05,"idle_ms":23.54,"stall_ms":0.01,"io_percent":29.7,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":5.94,"run_ms":211.93,"idle_ms":767.21,"stall_ms":323.79,"io_percent":47.9,"method":"GET","action":"home#category"} | |
{"gc_ms":0.0,"run_ms":31.16,"idle_ms":11.99,"stall_ms":0.01,"io_percent":23.4,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.35,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.63,"idle_ms":0.08,"stall_ms":0.0,"io_percent":1.0,"method":"GET"} | |
{"gc_ms":4.91,"run_ms":54.62,"idle_ms":4.56,"stall_ms":0.08,"io_percent":6.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.91,"run_ms":114.04,"idle_ms":1264.44,"stall_ms":0.04,"io_percent":90.6,"method":"GET","action":"home#recent"} | |
{"gc_ms":0.0,"run_ms":17.01,"idle_ms":4.38,"stall_ms":0.0,"io_percent":13.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":56.59,"idle_ms":7.65,"stall_ms":0.01,"io_percent":7.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.39,"run_ms":27.13,"idle_ms":6.12,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":5.57,"run_ms":189.81,"idle_ms":109.19,"stall_ms":0.03,"io_percent":38.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.67,"run_ms":28.4,"idle_ms":7.46,"stall_ms":0.01,"io_percent":13.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":57.41,"idle_ms":4.67,"stall_ms":142.01,"io_percent":2.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":30.01,"idle_ms":28.47,"stall_ms":0.01,"io_percent":34.2,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.21,"run_ms":23.69,"idle_ms":25.58,"stall_ms":0.01,"io_percent":26.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.56,"run_ms":62.22,"idle_ms":28.42,"stall_ms":0.01,"io_percent":14.2,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":11.46,"run_ms":55.4,"idle_ms":30.87,"stall_ms":0.01,"io_percent":25.0,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":3.06,"idle_ms":6.86,"stall_ms":0.0,"io_percent":69.7,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":33.0,"idle_ms":17.65,"stall_ms":0.01,"io_percent":23.2,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.6,"run_ms":34.34,"idle_ms":33.18,"stall_ms":0.2,"io_percent":28.4,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":15.37,"run_ms":185.66,"idle_ms":2821.22,"stall_ms":297.07,"io_percent":83.2,"method":"HEAD","action":"home#active"} | |
{"gc_ms":0.55,"run_ms":33.72,"idle_ms":70.92,"stall_ms":0.02,"io_percent":54.1,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":33.75,"idle_ms":60.57,"stall_ms":0.01,"io_percent":41.6,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":3.59,"run_ms":38.78,"idle_ms":47.95,"stall_ms":0.02,"io_percent":35.6,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":1.38,"run_ms":55.73,"idle_ms":69.82,"stall_ms":0.03,"io_percent":36.5,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":3.35,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":30.24,"idle_ms":13.71,"stall_ms":0.01,"io_percent":27.7,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":40.28,"idle_ms":19.47,"stall_ms":0.02,"io_percent":26.6,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":4.2,"run_ms":63.87,"idle_ms":18.46,"stall_ms":0.02,"io_percent":20.3,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":29.1,"idle_ms":10.76,"stall_ms":0.01,"io_percent":26.1,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":3.24,"idle_ms":7.63,"stall_ms":0.0,"io_percent":59.7,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":2.89,"idle_ms":4.39,"stall_ms":0.0,"io_percent":57.4,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":39.59,"idle_ms":22.85,"stall_ms":1.4,"io_percent":30.6,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.54,"run_ms":23.21,"idle_ms":4.38,"stall_ms":0.01,"io_percent":10.9,"method":"GET","action":"home#index"} | |
{"gc_ms":8.23,"run_ms":50.69,"idle_ms":28.1,"stall_ms":0.04,"io_percent":34.0,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":5.59,"run_ms":57.35,"idle_ms":24.16,"stall_ms":0.02,"io_percent":27.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":3.12,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":40.14,"idle_ms":40.34,"stall_ms":0.02,"io_percent":43.2,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.93,"run_ms":31.1,"idle_ms":26.5,"stall_ms":0.01,"io_percent":45.2,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":1.99,"run_ms":4.7,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":2.5,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":35.85,"idle_ms":18.38,"stall_ms":0.02,"io_percent":34.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.69,"run_ms":23.4,"idle_ms":4.59,"stall_ms":0.01,"io_percent":19.6,"method":"GET","action":"home#index"} | |
{"gc_ms":10.76,"run_ms":58.24,"idle_ms":4.5,"stall_ms":162.11,"io_percent":2.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":40.44,"idle_ms":16.53,"stall_ms":0.04,"io_percent":29.3,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":2.3,"run_ms":23.05,"idle_ms":3.21,"stall_ms":0.01,"io_percent":13.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.78,"run_ms":26.14,"idle_ms":3.65,"stall_ms":0.01,"io_percent":11.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.66,"run_ms":19.33,"idle_ms":3.43,"stall_ms":102.18,"io_percent":2.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.45,"run_ms":8.77,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.46,"run_ms":12.78,"idle_ms":1.94,"stall_ms":0.0,"io_percent":13.3,"method":"GET","action":"users#show"} | |
{"gc_ms":2.15,"run_ms":45.57,"idle_ms":13.16,"stall_ms":0.01,"io_percent":22.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":8.06,"run_ms":90.26,"idle_ms":10.34,"stall_ms":0.02,"io_percent":10.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.06,"run_ms":36.11,"idle_ms":15.0,"stall_ms":0.01,"io_percent":29.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":14.56,"run_ms":94.89,"idle_ms":17.54,"stall_ms":0.02,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.65,"run_ms":144.93,"idle_ms":31.36,"stall_ms":0.02,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.07,"run_ms":30.76,"idle_ms":14.04,"stall_ms":0.01,"io_percent":31.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.82,"run_ms":153.68,"idle_ms":43.2,"stall_ms":0.03,"io_percent":26.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.3,"idle_ms":3.6,"stall_ms":77.52,"io_percent":3.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":47.71,"idle_ms":13.45,"stall_ms":0.02,"io_percent":22.4,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":21.16,"idle_ms":4.88,"stall_ms":0.01,"io_percent":21.5,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":10.74,"idle_ms":3.3,"stall_ms":0.0,"io_percent":22.3,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":4.77,"run_ms":82.6,"idle_ms":57.05,"stall_ms":0.02,"io_percent":41.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.94,"run_ms":150.96,"idle_ms":83.09,"stall_ms":0.04,"io_percent":40.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":38.41,"idle_ms":3.79,"stall_ms":0.98,"io_percent":8.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.35,"run_ms":46.84,"idle_ms":5.3,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":48.49,"idle_ms":26.62,"stall_ms":0.02,"io_percent":25.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":12.31,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.64,"idle_ms":5.45,"stall_ms":0.0,"io_percent":26.2,"method":"GET","action":"users#show"} | |
{"gc_ms":1.77,"run_ms":60.46,"idle_ms":19.76,"stall_ms":0.02,"io_percent":23.0,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":9.79,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"HEAD"} | |
{"gc_ms":12.0,"run_ms":59.53,"idle_ms":20.68,"stall_ms":0.01,"io_percent":20.9,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":36.95,"idle_ms":3.59,"stall_ms":0.01,"io_percent":8.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.17,"run_ms":7.48,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.29,"run_ms":18.92,"idle_ms":2.9,"stall_ms":0.01,"io_percent":15.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.39,"run_ms":35.58,"idle_ms":12.54,"stall_ms":0.26,"io_percent":23.1,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":1.2,"run_ms":18.1,"idle_ms":2.15,"stall_ms":0.0,"io_percent":6.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.55,"run_ms":32.75,"idle_ms":12.99,"stall_ms":0.01,"io_percent":21.0,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":40.81,"idle_ms":22.45,"stall_ms":0.02,"io_percent":31.0,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":9.25,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":1.1,"run_ms":17.87,"idle_ms":3.01,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.2,"run_ms":11.19,"idle_ms":1.5,"stall_ms":0.01,"io_percent":11.9,"method":"GET","action":"users#show"} | |
{"gc_ms":1.81,"run_ms":56.08,"idle_ms":28.14,"stall_ms":0.06,"io_percent":33.6,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":53.28,"idle_ms":11.75,"stall_ms":0.02,"io_percent":18.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.28,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.44,"run_ms":139.29,"idle_ms":147.73,"stall_ms":0.03,"io_percent":56.7,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":11.36,"idle_ms":2.12,"stall_ms":0.0,"io_percent":15.9,"method":"GET","action":"users#show"} | |
{"gc_ms":12.75,"run_ms":173.18,"idle_ms":32.11,"stall_ms":0.03,"io_percent":17.2,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":39.35,"idle_ms":7.52,"stall_ms":0.01,"io_percent":18.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":9.48,"idle_ms":1.34,"stall_ms":0.0,"io_percent":7.7,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":118.82,"idle_ms":32.36,"stall_ms":0.03,"io_percent":21.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":7.15,"run_ms":52.27,"idle_ms":10.99,"stall_ms":0.01,"io_percent":16.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.52,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.83,"idle_ms":2.37,"stall_ms":0.19,"io_percent":15.5,"method":"GET","action":"users#show"} | |
{"gc_ms":9.28,"run_ms":107.32,"idle_ms":11.51,"stall_ms":0.02,"io_percent":9.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.53,"run_ms":12.02,"idle_ms":2.37,"stall_ms":0.0,"io_percent":16.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":8.41,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":13.43,"idle_ms":2.23,"stall_ms":0.0,"io_percent":14.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.71,"run_ms":24.02,"idle_ms":3.53,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.29,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.6,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":29.7,"idle_ms":11.39,"stall_ms":0.01,"io_percent":28.0,"method":"GET","action":"users#show"} | |
{"gc_ms":1.11,"run_ms":14.72,"idle_ms":0.66,"stall_ms":0.0,"io_percent":4.0,"method":"GET","action":"login#index"} | |
{"gc_ms":9.18,"run_ms":52.57,"idle_ms":2.14,"stall_ms":0.8,"io_percent":3.0,"method":"GET","action":"home#top"} | |
{"gc_ms":4.78,"run_ms":49.49,"idle_ms":4.73,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.89,"run_ms":8.45,"idle_ms":0.05,"stall_ms":105.8,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.67,"run_ms":7.82,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.91,"run_ms":22.47,"idle_ms":3.41,"stall_ms":0.01,"io_percent":15.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.23,"run_ms":9.39,"idle_ms":2.02,"stall_ms":0.0,"io_percent":17.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.36,"run_ms":14.66,"idle_ms":3.03,"stall_ms":0.0,"io_percent":17.3,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":9.0,"run_ms":31.03,"idle_ms":3.84,"stall_ms":0.01,"io_percent":12.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.3,"run_ms":8.65,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.01,"run_ms":14.24,"idle_ms":2.15,"stall_ms":0.0,"io_percent":13.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.28,"run_ms":24.95,"idle_ms":9.72,"stall_ms":0.92,"io_percent":27.7,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":27.33,"idle_ms":3.5,"stall_ms":0.01,"io_percent":11.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":35.31,"idle_ms":3.58,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":24.14,"idle_ms":6.94,"stall_ms":0.01,"io_percent":22.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":19.44,"idle_ms":3.13,"stall_ms":0.01,"io_percent":16.0,"method":"GET","action":"home#index"} | |
{"gc_ms":3.26,"run_ms":38.26,"idle_ms":8.81,"stall_ms":0.24,"io_percent":18.7,"method":"GET","action":"comments#index"} | |
{"gc_ms":5.45,"run_ms":56.25,"idle_ms":16.49,"stall_ms":0.02,"io_percent":22.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.3,"idle_ms":6.68,"stall_ms":69.17,"io_percent":7.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":44.77,"idle_ms":4.02,"stall_ms":0.01,"io_percent":8.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.36,"run_ms":11.34,"idle_ms":1.76,"stall_ms":0.0,"io_percent":13.5,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.86,"run_ms":18.47,"idle_ms":2.87,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":4.93,"run_ms":84.43,"idle_ms":12.49,"stall_ms":0.02,"io_percent":13.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.01,"run_ms":53.72,"idle_ms":213.51,"stall_ms":0.02,"io_percent":80.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.31,"run_ms":18.81,"idle_ms":2.98,"stall_ms":0.01,"io_percent":15.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.38,"run_ms":18.79,"idle_ms":3.62,"stall_ms":0.01,"io_percent":19.2,"method":"GET","action":"home#index"} | |
{"gc_ms":4.61,"run_ms":21.62,"idle_ms":3.1,"stall_ms":0.01,"io_percent":14.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.61,"run_ms":122.79,"idle_ms":155.51,"stall_ms":0.02,"io_percent":61.4,"method":"HEAD","action":"home#multi_tag"} | |
{"gc_ms":1.14,"run_ms":30.9,"idle_ms":10.38,"stall_ms":0.01,"io_percent":25.3,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":30.08,"idle_ms":4.57,"stall_ms":0.01,"io_percent":13.2,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":9.91,"run_ms":103.22,"idle_ms":21.43,"stall_ms":1.73,"io_percent":17.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.17,"run_ms":102.21,"idle_ms":34.43,"stall_ms":0.02,"io_percent":28.7,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":49.66,"idle_ms":6.9,"stall_ms":0.01,"io_percent":13.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.11,"run_ms":28.01,"idle_ms":13.16,"stall_ms":2.42,"io_percent":30.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":35.88,"idle_ms":3.65,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.51,"run_ms":26.67,"idle_ms":3.64,"stall_ms":0.01,"io_percent":13.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.93,"run_ms":34.15,"idle_ms":9.69,"stall_ms":0.01,"io_percent":21.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.21,"run_ms":9.91,"idle_ms":2.17,"stall_ms":0.0,"io_percent":18.1,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.35,"run_ms":30.21,"idle_ms":23.84,"stall_ms":0.02,"io_percent":44.5,"method":"POST","action":"stories#flag"} | |
{"gc_ms":0.0,"run_ms":41.28,"idle_ms":14.34,"stall_ms":0.02,"io_percent":26.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":43.98,"idle_ms":17.68,"stall_ms":0.03,"io_percent":29.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.01,"idle_ms":3.59,"stall_ms":0.01,"io_percent":19.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.34,"idle_ms":3.86,"stall_ms":0.02,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.72,"run_ms":21.18,"idle_ms":3.58,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":12.64,"run_ms":104.16,"idle_ms":63.78,"stall_ms":0.01,"io_percent":36.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":8.17,"run_ms":75.55,"idle_ms":23.41,"stall_ms":0.02,"io_percent":23.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.61,"run_ms":28.71,"idle_ms":87.34,"stall_ms":0.01,"io_percent":75.5,"method":"POST","action":"stories#hide"} | |
{"gc_ms":0.26,"run_ms":16.67,"idle_ms":6.06,"stall_ms":0.01,"io_percent":27.0,"method":"GET"} | |
{"gc_ms":1.68,"run_ms":21.16,"idle_ms":4.89,"stall_ms":0.01,"io_percent":18.9,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":83.22,"idle_ms":26.28,"stall_ms":0.02,"io_percent":24.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.53,"run_ms":27.34,"idle_ms":9.85,"stall_ms":0.07,"io_percent":22.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.37,"run_ms":40.56,"idle_ms":21.46,"stall_ms":0.02,"io_percent":30.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.98,"run_ms":22.18,"idle_ms":3.76,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.69,"idle_ms":3.16,"stall_ms":0.01,"io_percent":18.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.27,"idle_ms":11.48,"stall_ms":0.01,"io_percent":27.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":23.87,"idle_ms":13.14,"stall_ms":0.01,"io_percent":35.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.03,"idle_ms":3.23,"stall_ms":0.0,"io_percent":31.7,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.58,"idle_ms":2.13,"stall_ms":0.0,"io_percent":12.4,"method":"GET","action":"users#show"} | |
{"gc_ms":3.3,"run_ms":56.4,"idle_ms":15.75,"stall_ms":0.01,"io_percent":22.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":35.57,"idle_ms":4.45,"stall_ms":0.01,"io_percent":12.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":13.01,"idle_ms":7.04,"stall_ms":0.01,"io_percent":35.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":2.34,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.86,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.26,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.26,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.05,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.85,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.42,"run_ms":3.43,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.5,"run_ms":2.98,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":1.06,"run_ms":21.33,"idle_ms":3.29,"stall_ms":0.05,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":2.63,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.59,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.36,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.94,"run_ms":3.57,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.09,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":18.77,"idle_ms":3.35,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":2.4,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.36,"idle_ms":0.88,"stall_ms":0.0,"io_percent":8.6,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.59,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":13.83,"idle_ms":6.25,"stall_ms":0.01,"io_percent":31.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.14,"run_ms":23.97,"idle_ms":8.13,"stall_ms":0.01,"io_percent":28.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":28.9,"idle_ms":18.59,"stall_ms":0.01,"io_percent":37.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.05,"run_ms":27.34,"idle_ms":34.54,"stall_ms":0.01,"io_percent":56.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.0,"run_ms":23.04,"idle_ms":3.87,"stall_ms":0.01,"io_percent":12.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.71,"idle_ms":21.2,"stall_ms":0.01,"io_percent":44.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":29.94,"idle_ms":5.21,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":92.65,"idle_ms":145.48,"stall_ms":0.02,"io_percent":49.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.4,"run_ms":23.22,"idle_ms":57.89,"stall_ms":0.01,"io_percent":56.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":25.8,"idle_ms":6.23,"stall_ms":0.05,"io_percent":12.6,"method":"GET","action":"home#index"} | |
{"gc_ms":2.34,"run_ms":44.58,"idle_ms":8.15,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":54.7,"idle_ms":21.48,"stall_ms":0.01,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":275.74,"idle_ms":242.91,"stall_ms":122.34,"io_percent":31.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.67,"run_ms":89.32,"idle_ms":5.56,"stall_ms":3.36,"io_percent":2.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.27,"run_ms":50.37,"idle_ms":128.55,"stall_ms":37.15,"io_percent":30.7,"method":"GET","action":"home#index"} | |
{"gc_ms":9.22,"run_ms":133.76,"idle_ms":446.0,"stall_ms":16.65,"io_percent":60.3,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":48.09,"run_ms":96.17,"idle_ms":27.04,"stall_ms":28.69,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.47,"run_ms":43.07,"idle_ms":19.53,"stall_ms":32.52,"io_percent":6.7,"method":"GET","action":"home#index"} | |
{"gc_ms":3.28,"run_ms":157.59,"idle_ms":205.57,"stall_ms":18.33,"io_percent":20.4,"method":"GET","action":"home#index"} | |
{"gc_ms":10.78,"run_ms":24.24,"idle_ms":65.75,"stall_ms":143.06,"io_percent":22.6,"method":"GET"} | |
{"gc_ms":3.6,"run_ms":108.81,"idle_ms":22.47,"stall_ms":16.73,"io_percent":5.1,"method":"GET","action":"home#index"} | |
{"gc_ms":8.46,"run_ms":55.02,"idle_ms":114.25,"stall_ms":160.17,"io_percent":20.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.52,"run_ms":39.27,"idle_ms":155.6,"stall_ms":56.61,"io_percent":35.4,"method":"GET","action":"home#index"} | |
{"gc_ms":10.85,"run_ms":38.84,"idle_ms":145.35,"stall_ms":556.28,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.42,"run_ms":33.28,"idle_ms":22.58,"stall_ms":93.5,"io_percent":8.0,"method":"GET","action":"home#index"} | |
{"gc_ms":2.75,"run_ms":32.59,"idle_ms":176.73,"stall_ms":71.69,"io_percent":31.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":102.31,"idle_ms":200.46,"stall_ms":344.93,"io_percent":23.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":25.51,"run_ms":252.42,"idle_ms":433.73,"stall_ms":63.67,"io_percent":32.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":22.22,"run_ms":258.84,"idle_ms":534.15,"stall_ms":66.16,"io_percent":37.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.35,"run_ms":139.71,"idle_ms":262.45,"stall_ms":174.04,"io_percent":28.8,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":270.22,"idle_ms":456.2,"stall_ms":380.28,"io_percent":27.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.99,"run_ms":75.86,"idle_ms":271.95,"stall_ms":312.33,"io_percent":31.8,"method":"GET","action":"home#index"} | |
{"gc_ms":13.49,"run_ms":244.11,"idle_ms":761.7,"stall_ms":189.85,"io_percent":39.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":37.79,"idle_ms":311.56,"stall_ms":502.55,"io_percent":35.0,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":3.42,"run_ms":42.25,"idle_ms":487.04,"stall_ms":561.24,"io_percent":38.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.01,"run_ms":51.74,"idle_ms":192.11,"stall_ms":0.76,"io_percent":54.3,"method":"GET","action":"home#index"} | |
{"gc_ms":17.82,"run_ms":236.85,"idle_ms":413.0,"stall_ms":371.58,"io_percent":24.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":36.78,"idle_ms":205.32,"stall_ms":54.17,"io_percent":58.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.91,"run_ms":29.16,"idle_ms":13.4,"stall_ms":0.02,"io_percent":19.6,"method":"GET","action":"home#index"} | |
{"gc_ms":2.91,"run_ms":49.13,"idle_ms":304.6,"stall_ms":171.18,"io_percent":52.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.43,"run_ms":81.52,"idle_ms":155.34,"stall_ms":67.05,"io_percent":34.4,"method":"GET","action":"home#index"} | |
{"gc_ms":10.29,"run_ms":37.94,"idle_ms":199.5,"stall_ms":663.78,"io_percent":20.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.51,"run_ms":42.61,"idle_ms":7.4,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"home#top"} | |
{"gc_ms":0.28,"run_ms":12.77,"idle_ms":64.04,"stall_ms":224.8,"io_percent":20.8,"method":"GET"} | |
{"gc_ms":1.86,"run_ms":48.92,"idle_ms":474.43,"stall_ms":353.07,"io_percent":44.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.91,"run_ms":52.03,"idle_ms":343.71,"stall_ms":707.09,"io_percent":28.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.6,"run_ms":34.4,"idle_ms":166.19,"stall_ms":202.44,"io_percent":33.1,"method":"GET","action":"home#index"} | |
{"gc_ms":7.31,"run_ms":74.86,"idle_ms":227.69,"stall_ms":166.37,"io_percent":41.8,"method":"GET","action":"home#index"} | |
{"gc_ms":3.69,"run_ms":35.79,"idle_ms":230.99,"stall_ms":326.86,"io_percent":36.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.3,"run_ms":28.53,"idle_ms":13.72,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.42,"run_ms":23.88,"idle_ms":3.69,"stall_ms":0.01,"io_percent":11.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.09,"run_ms":44.46,"idle_ms":525.6,"stall_ms":499.66,"io_percent":44.1,"method":"GET","action":"home#index"} | |
{"gc_ms":7.51,"run_ms":193.72,"idle_ms":430.18,"stall_ms":185.16,"io_percent":31.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.8,"run_ms":51.51,"idle_ms":616.44,"stall_ms":706.19,"io_percent":42.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.5,"run_ms":14.94,"idle_ms":7.48,"stall_ms":0.01,"io_percent":20.3,"method":"GET","action":"users#show"} | |
{"gc_ms":10.78,"run_ms":195.62,"idle_ms":900.73,"stall_ms":217.36,"io_percent":60.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.76,"run_ms":57.2,"idle_ms":8.65,"stall_ms":2.43,"io_percent":6.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.47,"run_ms":36.88,"idle_ms":48.56,"stall_ms":0.01,"io_percent":30.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":25.35,"idle_ms":13.63,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.46,"run_ms":23.86,"idle_ms":5.12,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":23.06,"run_ms":184.53,"idle_ms":450.91,"stall_ms":1068.88,"io_percent":22.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":25.21,"idle_ms":6.73,"stall_ms":0.01,"io_percent":18.4,"method":"GET","action":"home#index"} | |
{"gc_ms":23.06,"run_ms":66.42,"idle_ms":157.13,"stall_ms":898.96,"io_percent":13.5,"method":"GET","action":"home#index"} | |
{"gc_ms":23.71,"run_ms":37.53,"idle_ms":194.55,"stall_ms":1078.16,"io_percent":14.4,"method":"GET","action":"home#index"} | |
{"gc_ms":27.43,"run_ms":180.04,"idle_ms":440.52,"stall_ms":1399.95,"io_percent":19.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":27.61,"idle_ms":8.64,"stall_ms":0.01,"io_percent":12.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.86,"idle_ms":7.58,"stall_ms":0.01,"io_percent":26.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":49.79,"idle_ms":4.4,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.65,"run_ms":27.67,"idle_ms":4.58,"stall_ms":0.01,"io_percent":10.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.28,"run_ms":22.61,"idle_ms":3.7,"stall_ms":0.01,"io_percent":14.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.65,"idle_ms":2.85,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.38,"run_ms":14.55,"idle_ms":2.85,"stall_ms":0.0,"io_percent":13.0,"method":"GET","action":"users#show"} | |
{"gc_ms":6.67,"run_ms":37.14,"idle_ms":20.19,"stall_ms":0.01,"io_percent":31.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.87,"idle_ms":1.29,"stall_ms":0.0,"io_percent":8.9,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.42,"idle_ms":2.01,"stall_ms":0.0,"io_percent":6.9,"method":"GET","action":"users#show"} | |
{"gc_ms":2.84,"run_ms":40.93,"idle_ms":23.5,"stall_ms":0.01,"io_percent":31.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.5,"run_ms":24.09,"idle_ms":5.5,"stall_ms":0.01,"io_percent":14.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.88,"run_ms":34.24,"idle_ms":13.67,"stall_ms":0.01,"io_percent":26.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.32,"run_ms":25.42,"idle_ms":6.77,"stall_ms":0.02,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":6.07,"run_ms":54.65,"idle_ms":2.02,"stall_ms":0.0,"io_percent":1.4,"method":"GET","action":"home#top"} | |
{"gc_ms":0.28,"run_ms":24.62,"idle_ms":5.08,"stall_ms":0.01,"io_percent":15.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.07,"idle_ms":3.81,"stall_ms":0.01,"io_percent":14.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.04,"run_ms":24.52,"idle_ms":16.04,"stall_ms":0.01,"io_percent":38.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":20.94,"idle_ms":4.35,"stall_ms":1.6,"io_percent":12.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.52,"idle_ms":21.06,"stall_ms":0.01,"io_percent":37.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.69,"run_ms":32.96,"idle_ms":31.97,"stall_ms":0.01,"io_percent":40.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.6,"run_ms":21.45,"idle_ms":5.19,"stall_ms":0.01,"io_percent":11.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":36.07,"idle_ms":36.8,"stall_ms":1.05,"io_percent":28.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.63,"run_ms":20.23,"idle_ms":3.54,"stall_ms":0.15,"io_percent":14.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.53,"idle_ms":8.15,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":54.82,"idle_ms":5.57,"stall_ms":185.68,"io_percent":2.1,"method":"GET","action":"home#index"} | |
{"gc_ms":8.07,"run_ms":72.15,"idle_ms":75.96,"stall_ms":140.36,"io_percent":20.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.74,"run_ms":185.4,"idle_ms":93.26,"stall_ms":138.0,"io_percent":16.0,"method":"GET","action":"home#top"} | |
{"gc_ms":1.31,"run_ms":49.85,"idle_ms":6.85,"stall_ms":0.01,"io_percent":5.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.65,"idle_ms":10.89,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.4,"run_ms":59.82,"idle_ms":41.42,"stall_ms":12.01,"io_percent":8.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.75,"run_ms":21.25,"idle_ms":6.96,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":13.33,"run_ms":103.57,"idle_ms":92.53,"stall_ms":2.83,"io_percent":20.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":22.27,"run_ms":57.05,"idle_ms":60.62,"stall_ms":0.01,"io_percent":21.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":154.11,"idle_ms":220.48,"stall_ms":0.22,"io_percent":30.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":8.37,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":1.74,"run_ms":83.77,"idle_ms":174.47,"stall_ms":0.03,"io_percent":47.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.23,"run_ms":68.79,"idle_ms":51.79,"stall_ms":723.62,"io_percent":6.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.87,"run_ms":10.23,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":6.6,"run_ms":33.33,"idle_ms":16.38,"stall_ms":0.1,"io_percent":21.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":13.38,"idle_ms":2.19,"stall_ms":0.0,"io_percent":11.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":12.22,"idle_ms":1.79,"stall_ms":0.0,"io_percent":12.0,"method":"GET","action":"users#show"} | |
{"gc_ms":1.86,"run_ms":22.03,"idle_ms":23.35,"stall_ms":138.26,"io_percent":12.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.32,"run_ms":17.8,"idle_ms":2.91,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":27.7,"idle_ms":34.52,"stall_ms":11.85,"io_percent":28.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":17.8,"idle_ms":5.86,"stall_ms":0.01,"io_percent":18.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":44.86,"idle_ms":19.76,"stall_ms":0.01,"io_percent":25.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.35,"run_ms":43.67,"idle_ms":9.74,"stall_ms":0.01,"io_percent":13.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.6,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":13.2,"idle_ms":2.55,"stall_ms":0.0,"io_percent":12.6,"method":"GET","action":"users#show"} | |
{"gc_ms":23.66,"run_ms":17.27,"idle_ms":0.06,"stall_ms":133.97,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":20.75,"idle_ms":6.94,"stall_ms":0.01,"io_percent":13.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.73,"run_ms":27.64,"idle_ms":22.42,"stall_ms":0.01,"io_percent":41.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":17.62,"idle_ms":5.91,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":13.78,"run_ms":148.19,"idle_ms":137.81,"stall_ms":0.03,"io_percent":44.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.39,"run_ms":15.79,"idle_ms":8.15,"stall_ms":0.01,"io_percent":27.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.78,"run_ms":48.07,"idle_ms":4.5,"stall_ms":0.01,"io_percent":7.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.82,"run_ms":26.12,"idle_ms":6.64,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":28.74,"run_ms":55.08,"idle_ms":6.76,"stall_ms":0.01,"io_percent":6.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.54,"run_ms":22.3,"idle_ms":3.59,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.82,"run_ms":38.73,"idle_ms":16.22,"stall_ms":0.06,"io_percent":15.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":28.11,"run_ms":51.9,"idle_ms":4.19,"stall_ms":0.85,"io_percent":3.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.5,"run_ms":38.97,"idle_ms":7.22,"stall_ms":0.01,"io_percent":12.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.8,"idle_ms":2.12,"stall_ms":0.0,"io_percent":10.4,"method":"GET"} | |
{"gc_ms":1.21,"run_ms":33.1,"idle_ms":27.89,"stall_ms":0.01,"io_percent":38.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.56,"run_ms":22.2,"idle_ms":17.22,"stall_ms":0.01,"io_percent":35.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.41,"run_ms":12.33,"idle_ms":5.47,"stall_ms":0.0,"io_percent":20.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.29,"run_ms":11.97,"idle_ms":5.15,"stall_ms":113.64,"io_percent":4.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.73,"run_ms":29.73,"idle_ms":2.85,"stall_ms":0.01,"io_percent":7.3,"method":"GET","action":"home#top"} | |
{"gc_ms":28.55,"run_ms":57.3,"idle_ms":7.3,"stall_ms":0.01,"io_percent":8.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":119.76,"idle_ms":69.28,"stall_ms":2.03,"io_percent":31.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":5.63,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.98,"idle_ms":1.51,"stall_ms":0.0,"io_percent":9.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":19.67,"idle_ms":5.13,"stall_ms":0.01,"io_percent":21.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.36,"run_ms":31.61,"idle_ms":15.12,"stall_ms":0.01,"io_percent":28.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":19.68,"run_ms":60.08,"idle_ms":24.17,"stall_ms":0.5,"io_percent":23.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":21.13,"idle_ms":3.21,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":43.68,"idle_ms":13.29,"stall_ms":1.06,"io_percent":22.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.12,"run_ms":56.28,"idle_ms":8.62,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":105.54,"idle_ms":24.18,"stall_ms":166.87,"io_percent":7.4,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":16.9,"idle_ms":16.73,"stall_ms":0.01,"io_percent":48.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.84,"run_ms":185.38,"idle_ms":117.86,"stall_ms":0.02,"io_percent":39.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.68,"run_ms":21.13,"idle_ms":4.78,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":11.79,"run_ms":60.89,"idle_ms":6.38,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":58.61,"idle_ms":17.27,"stall_ms":0.01,"io_percent":19.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.34,"run_ms":164.05,"idle_ms":104.11,"stall_ms":0.03,"io_percent":40.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":10.58,"run_ms":59.63,"idle_ms":6.64,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":11.34,"run_ms":134.77,"idle_ms":66.41,"stall_ms":0.03,"io_percent":31.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":55.61,"idle_ms":32.6,"stall_ms":122.07,"io_percent":14.3,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":40.21,"idle_ms":29.69,"stall_ms":0.01,"io_percent":37.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.03,"run_ms":28.96,"idle_ms":7.98,"stall_ms":158.82,"io_percent":4.0,"method":"GET","action":"home#index"} | |
{"gc_ms":3.14,"run_ms":47.78,"idle_ms":11.2,"stall_ms":0.01,"io_percent":16.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":52.0,"idle_ms":25.68,"stall_ms":2.13,"io_percent":19.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.81,"run_ms":80.65,"idle_ms":322.65,"stall_ms":1.66,"io_percent":66.2,"method":"POST","action":"comments#create"} | |
{"gc_ms":0.0,"run_ms":19.02,"idle_ms":6.91,"stall_ms":194.83,"io_percent":3.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.19,"run_ms":30.15,"idle_ms":73.29,"stall_ms":0.01,"io_percent":39.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.53,"run_ms":19.37,"idle_ms":4.19,"stall_ms":0.0,"io_percent":14.5,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":50.24,"idle_ms":39.72,"stall_ms":128.29,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.24,"run_ms":32.58,"idle_ms":13.73,"stall_ms":0.05,"io_percent":27.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.74,"run_ms":44.15,"idle_ms":12.9,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":35.06,"run_ms":272.63,"idle_ms":468.52,"stall_ms":0.04,"io_percent":52.9,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":15.18,"idle_ms":5.27,"stall_ms":0.01,"io_percent":26.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":12.17,"idle_ms":2.1,"stall_ms":0.0,"io_percent":14.4,"method":"GET","action":"users#show"} | |
{"gc_ms":3.66,"run_ms":39.19,"idle_ms":3.38,"stall_ms":0.05,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":2.78,"run_ms":10.07,"idle_ms":0.06,"stall_ms":106.09,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":16.92,"idle_ms":2.78,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.97,"idle_ms":3.01,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":5.61,"run_ms":16.53,"idle_ms":2.14,"stall_ms":0.0,"io_percent":11.5,"method":"GET","action":"users#show"} | |
{"gc_ms":1.49,"run_ms":18.7,"idle_ms":2.88,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":3.57,"run_ms":40.31,"idle_ms":4.67,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.9,"run_ms":137.2,"idle_ms":136.31,"stall_ms":0.07,"io_percent":53.5,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.75,"run_ms":26.11,"idle_ms":4.03,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.58,"run_ms":8.41,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":13.81,"idle_ms":2.14,"stall_ms":0.0,"io_percent":13.5,"method":"GET","action":"users#show"} | |
{"gc_ms":2.01,"run_ms":36.98,"idle_ms":2.37,"stall_ms":0.01,"io_percent":5.4,"method":"GET","action":"home#top"} | |
{"gc_ms":4.35,"run_ms":54.18,"idle_ms":3.93,"stall_ms":0.01,"io_percent":4.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.84,"run_ms":38.84,"idle_ms":10.26,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.55,"run_ms":64.03,"idle_ms":37.18,"stall_ms":0.02,"io_percent":32.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":26.62,"idle_ms":5.61,"stall_ms":0.03,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.28,"run_ms":25.98,"idle_ms":3.93,"stall_ms":0.01,"io_percent":12.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.13,"run_ms":33.08,"idle_ms":11.14,"stall_ms":0.01,"io_percent":23.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.36,"run_ms":25.67,"idle_ms":482.94,"stall_ms":0.01,"io_percent":94.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":24.86,"idle_ms":490.61,"stall_ms":0.17,"io_percent":94.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":23.49,"idle_ms":4.89,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.32,"run_ms":34.69,"idle_ms":11.44,"stall_ms":0.01,"io_percent":20.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.96,"run_ms":27.76,"idle_ms":9.43,"stall_ms":0.01,"io_percent":22.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":59.68,"idle_ms":19.44,"stall_ms":0.13,"io_percent":22.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.51,"run_ms":39.88,"idle_ms":120.3,"stall_ms":0.02,"io_percent":70.1,"method":"GET","action":"users#show"} | |
{"gc_ms":1.94,"run_ms":47.45,"idle_ms":14.59,"stall_ms":0.01,"io_percent":22.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":48.79,"idle_ms":17.6,"stall_ms":0.03,"io_percent":25.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":10.97,"idle_ms":3.46,"stall_ms":0.0,"io_percent":21.0,"method":"GET","action":"stories#new"} | |
{"gc_ms":1.37,"run_ms":36.15,"idle_ms":13.8,"stall_ms":0.01,"io_percent":20.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":26.13,"idle_ms":7.94,"stall_ms":0.01,"io_percent":20.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.38,"idle_ms":4.43,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.35,"run_ms":27.59,"idle_ms":8.03,"stall_ms":0.01,"io_percent":19.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.35,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.34,"run_ms":14.65,"idle_ms":2.42,"stall_ms":0.0,"io_percent":12.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":28.93,"idle_ms":4.48,"stall_ms":0.01,"io_percent":12.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.01,"idle_ms":5.79,"stall_ms":0.01,"io_percent":18.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":49.98,"idle_ms":17.87,"stall_ms":166.3,"io_percent":7.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":27.21,"idle_ms":5.4,"stall_ms":0.03,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":34.4,"idle_ms":7.76,"stall_ms":0.01,"io_percent":13.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":59.48,"idle_ms":10.89,"stall_ms":0.01,"io_percent":11.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.53,"idle_ms":1.25,"stall_ms":0.0,"io_percent":4.9,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":23.48,"idle_ms":7.4,"stall_ms":0.01,"io_percent":7.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":21.08,"idle_ms":4.03,"stall_ms":0.0,"io_percent":9.1,"method":"GET","action":"users#show"} | |
{"gc_ms":9.88,"run_ms":75.48,"idle_ms":15.11,"stall_ms":0.02,"io_percent":11.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":26.68,"idle_ms":8.8,"stall_ms":0.01,"io_percent":20.4,"method":"HEAD","action":"home#newest_by_user"} | |
{"gc_ms":0.4,"run_ms":20.49,"idle_ms":6.2,"stall_ms":0.01,"io_percent":20.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.95,"run_ms":9.66,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":55.68,"idle_ms":5.65,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.66,"run_ms":12.69,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":10.6,"run_ms":90.96,"idle_ms":19.97,"stall_ms":0.31,"io_percent":14.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":39.12,"idle_ms":28.75,"stall_ms":0.02,"io_percent":32.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":175.79,"idle_ms":52.62,"stall_ms":0.03,"io_percent":20.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":6.39,"run_ms":70.06,"idle_ms":8.91,"stall_ms":1.92,"io_percent":6.5,"method":"GET","action":"home#index"} | |
{"gc_ms":3.92,"run_ms":64.91,"idle_ms":29.12,"stall_ms":0.02,"io_percent":20.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.9,"run_ms":15.2,"idle_ms":2.31,"stall_ms":0.0,"io_percent":11.8,"method":"GET","action":"users#show"} | |
{"gc_ms":1.03,"run_ms":25.23,"idle_ms":4.1,"stall_ms":126.91,"io_percent":2.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.09,"run_ms":9.74,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.03,"run_ms":17.79,"idle_ms":4.61,"stall_ms":0.05,"io_percent":16.5,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.44,"run_ms":16.44,"idle_ms":4.52,"stall_ms":0.0,"io_percent":19.1,"method":"GET","action":"users#show"} | |
{"gc_ms":1.42,"run_ms":24.84,"idle_ms":3.59,"stall_ms":0.0,"io_percent":9.3,"method":"GET","action":"search#index"} | |
{"gc_ms":0.68,"run_ms":18.26,"idle_ms":19.02,"stall_ms":0.01,"io_percent":46.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.64,"run_ms":15.78,"idle_ms":2.17,"stall_ms":0.0,"io_percent":9.9,"method":"GET","action":"users#show"} | |
{"gc_ms":1.74,"run_ms":30.36,"idle_ms":4.29,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.62,"run_ms":29.83,"idle_ms":4.63,"stall_ms":0.01,"io_percent":12.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.35,"run_ms":91.66,"idle_ms":315.39,"stall_ms":0.03,"io_percent":76.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.71,"run_ms":16.53,"idle_ms":4.14,"stall_ms":0.01,"io_percent":19.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.42,"run_ms":42.38,"idle_ms":3.6,"stall_ms":0.01,"io_percent":8.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":23.1,"idle_ms":2.8,"stall_ms":0.0,"io_percent":10.8,"method":"GET","action":"search#index"} | |
{"gc_ms":1.35,"run_ms":36.33,"idle_ms":9.76,"stall_ms":0.01,"io_percent":20.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.26,"run_ms":19.38,"idle_ms":3.18,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.61,"run_ms":23.79,"idle_ms":4.04,"stall_ms":0.01,"io_percent":13.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.67,"run_ms":25.55,"idle_ms":3.92,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.55,"run_ms":24.15,"idle_ms":4.4,"stall_ms":0.01,"io_percent":13.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.73,"run_ms":133.92,"idle_ms":63.79,"stall_ms":0.02,"io_percent":36.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":13.44,"idle_ms":5.32,"stall_ms":0.01,"io_percent":28.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":17.83,"idle_ms":2.82,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.75,"idle_ms":2.06,"stall_ms":0.0,"io_percent":9.1,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":18.48,"idle_ms":3.72,"stall_ms":0.01,"io_percent":20.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.41,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":2.37,"run_ms":35.21,"idle_ms":10.76,"stall_ms":3.6,"io_percent":19.7,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.22,"run_ms":125.29,"idle_ms":39.3,"stall_ms":0.02,"io_percent":25.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.51,"run_ms":11.52,"idle_ms":3.64,"stall_ms":75.56,"io_percent":4.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":23.21,"idle_ms":13.19,"stall_ms":0.01,"io_percent":31.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.78,"run_ms":41.83,"idle_ms":7.1,"stall_ms":85.8,"io_percent":5.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.62,"idle_ms":4.41,"stall_ms":0.01,"io_percent":19.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.97,"idle_ms":6.52,"stall_ms":0.01,"io_percent":25.6,"method":"GET","action":"home#index"} | |
{"gc_ms":2.35,"run_ms":124.6,"idle_ms":158.07,"stall_ms":0.03,"io_percent":59.7,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":1.88,"run_ms":46.08,"idle_ms":16.22,"stall_ms":0.02,"io_percent":23.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":21.59,"idle_ms":5.21,"stall_ms":0.01,"io_percent":24.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.7,"run_ms":26.19,"idle_ms":8.62,"stall_ms":0.02,"io_percent":27.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.01,"run_ms":20.18,"idle_ms":2.97,"stall_ms":0.01,"io_percent":13.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.05,"run_ms":32.09,"idle_ms":11.19,"stall_ms":0.01,"io_percent":25.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.9,"run_ms":42.53,"idle_ms":3.96,"stall_ms":1.08,"io_percent":8.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.35,"run_ms":22.83,"idle_ms":5.84,"stall_ms":0.01,"io_percent":19.2,"method":"GET","action":"home#index"} | |
{"gc_ms":15.46,"run_ms":160.18,"idle_ms":41.96,"stall_ms":0.03,"io_percent":20.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.12,"run_ms":44.42,"idle_ms":3.37,"stall_ms":0.01,"io_percent":6.6,"method":"GET","action":"home#index"} | |
{"gc_ms":2.38,"run_ms":102.82,"idle_ms":8.97,"stall_ms":0.08,"io_percent":7.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.72,"run_ms":24.12,"idle_ms":3.82,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.47,"idle_ms":2.81,"stall_ms":0.01,"io_percent":15.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.62,"idle_ms":5.58,"stall_ms":0.01,"io_percent":24.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.67,"run_ms":33.13,"idle_ms":11.37,"stall_ms":0.01,"io_percent":23.9,"method":"HEAD","action":"comments#user_threads"} | |
{"gc_ms":1.7,"run_ms":35.59,"idle_ms":6.51,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.81,"run_ms":18.23,"idle_ms":3.08,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.25,"run_ms":17.27,"idle_ms":2.85,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":37.02,"idle_ms":3.2,"stall_ms":0.75,"io_percent":7.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":9.77,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":1.74,"run_ms":116.67,"idle_ms":41.32,"stall_ms":0.02,"io_percent":30.4,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":46.72,"idle_ms":14.9,"stall_ms":0.02,"io_percent":21.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.61,"idle_ms":4.33,"stall_ms":110.62,"io_percent":3.4,"method":"GET","action":"users#show"} | |
{"gc_ms":2.75,"run_ms":159.32,"idle_ms":30.28,"stall_ms":0.03,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":24.66,"idle_ms":4.13,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.86,"run_ms":51.29,"idle_ms":19.6,"stall_ms":0.02,"io_percent":27.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.81,"run_ms":53.97,"idle_ms":4.41,"stall_ms":0.1,"io_percent":8.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":9.35,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":35.22,"idle_ms":17.38,"stall_ms":0.01,"io_percent":28.6,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":9.5,"idle_ms":1.82,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":3.64,"run_ms":164.79,"idle_ms":40.22,"stall_ms":0.03,"io_percent":23.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.0,"idle_ms":1.7,"stall_ms":0.0,"io_percent":12.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":9.36,"idle_ms":0.05,"stall_ms":72.65,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":17.77,"idle_ms":5.67,"stall_ms":0.01,"io_percent":22.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":12.41,"idle_ms":2.05,"stall_ms":0.0,"io_percent":14.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":17.39,"idle_ms":5.13,"stall_ms":0.05,"io_percent":26.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.14,"idle_ms":8.72,"stall_ms":1.39,"io_percent":24.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.3,"run_ms":12.94,"idle_ms":1.44,"stall_ms":0.0,"io_percent":6.0,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":7.52,"run_ms":30.57,"idle_ms":10.38,"stall_ms":0.08,"io_percent":18.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":79.84,"idle_ms":63.9,"stall_ms":0.03,"io_percent":37.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.11,"run_ms":36.63,"idle_ms":16.88,"stall_ms":0.01,"io_percent":31.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":12.18,"idle_ms":1.75,"stall_ms":0.0,"io_percent":10.2,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.22,"run_ms":5.58,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.35,"idle_ms":1.83,"stall_ms":0.0,"io_percent":13.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.33,"run_ms":13.23,"idle_ms":3.08,"stall_ms":0.0,"io_percent":19.1,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":75.58,"idle_ms":98.67,"stall_ms":0.03,"io_percent":56.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.25,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.78,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":15.26,"idle_ms":2.0,"stall_ms":0.0,"io_percent":11.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":10.94,"idle_ms":5.0,"stall_ms":0.0,"io_percent":31.5,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":10.29,"idle_ms":5.49,"stall_ms":0.0,"io_percent":33.4,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.24,"run_ms":16.11,"idle_ms":2.9,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.95,"run_ms":23.59,"idle_ms":3.77,"stall_ms":0.01,"io_percent":16.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.09,"idle_ms":3.54,"stall_ms":0.08,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.47,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.11,"run_ms":18.74,"idle_ms":3.47,"stall_ms":0.01,"io_percent":18.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.74,"idle_ms":1.83,"stall_ms":0.0,"io_percent":9.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":56.73,"idle_ms":306.53,"stall_ms":0.02,"io_percent":84.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.22,"idle_ms":13.45,"stall_ms":0.01,"io_percent":30.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":10.0,"run_ms":54.28,"idle_ms":8.29,"stall_ms":0.07,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.0,"idle_ms":5.19,"stall_ms":0.01,"io_percent":18.4,"method":"GET","action":"home#index"} | |
{"gc_ms":7.38,"run_ms":54.25,"idle_ms":12.41,"stall_ms":0.32,"io_percent":17.9,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":5.28,"run_ms":54.55,"idle_ms":6.38,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":33.46,"idle_ms":3.85,"stall_ms":0.01,"io_percent":11.2,"method":"GET","action":"home#index"} | |
{"gc_ms":11.84,"run_ms":30.96,"idle_ms":4.25,"stall_ms":0.01,"io_percent":12.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":44.8,"idle_ms":15.51,"stall_ms":0.01,"io_percent":25.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.84,"run_ms":39.15,"idle_ms":15.63,"stall_ms":0.01,"io_percent":28.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.77,"run_ms":45.59,"idle_ms":16.04,"stall_ms":0.01,"io_percent":22.4,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":6.84,"run_ms":74.45,"idle_ms":3.69,"stall_ms":0.01,"io_percent":4.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.83,"run_ms":31.55,"idle_ms":10.61,"stall_ms":0.01,"io_percent":19.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.3,"run_ms":22.95,"idle_ms":5.86,"stall_ms":0.07,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":5.02,"run_ms":43.1,"idle_ms":5.78,"stall_ms":0.01,"io_percent":12.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.19,"run_ms":131.89,"idle_ms":81.47,"stall_ms":86.13,"io_percent":30.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":8.41,"run_ms":43.77,"idle_ms":3.48,"stall_ms":0.01,"io_percent":7.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":39.81,"idle_ms":3.49,"stall_ms":0.02,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":6.66,"run_ms":59.5,"idle_ms":89.78,"stall_ms":0.02,"io_percent":60.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.86,"run_ms":55.91,"idle_ms":4.44,"stall_ms":0.01,"io_percent":7.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.71,"run_ms":16.52,"idle_ms":2.79,"stall_ms":0.07,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":3.43,"run_ms":35.81,"idle_ms":3.67,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.25,"run_ms":20.3,"idle_ms":2.87,"stall_ms":0.01,"io_percent":13.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.84,"run_ms":17.3,"idle_ms":2.72,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.92,"run_ms":22.49,"idle_ms":3.48,"stall_ms":0.04,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":5.34,"run_ms":119.74,"idle_ms":37.27,"stall_ms":0.02,"io_percent":28.0,"method":"GET","action":"home#top"} | |
{"gc_ms":3.2,"run_ms":45.16,"idle_ms":4.07,"stall_ms":0.01,"io_percent":8.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.8,"run_ms":23.19,"idle_ms":4.1,"stall_ms":78.31,"io_percent":4.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.45,"run_ms":51.19,"idle_ms":11.11,"stall_ms":0.01,"io_percent":14.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.03,"run_ms":34.56,"idle_ms":3.66,"stall_ms":0.01,"io_percent":10.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.21,"run_ms":15.54,"idle_ms":2.83,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.2,"run_ms":34.96,"idle_ms":3.52,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":3.09,"run_ms":143.58,"idle_ms":47.32,"stall_ms":0.09,"io_percent":28.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.39,"run_ms":33.64,"idle_ms":3.49,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.6,"run_ms":18.85,"idle_ms":2.85,"stall_ms":103.17,"io_percent":2.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.18,"idle_ms":1.86,"stall_ms":0.0,"io_percent":17.0,"method":"GET","action":"users#show"} | |
{"gc_ms":1.71,"run_ms":17.69,"idle_ms":2.97,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.38,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.6,"method":"GET"} | |
{"gc_ms":6.5,"run_ms":70.87,"idle_ms":315.47,"stall_ms":0.02,"io_percent":81.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.93,"run_ms":47.97,"idle_ms":3.64,"stall_ms":0.02,"io_percent":7.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.4,"idle_ms":2.89,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.41,"run_ms":15.82,"idle_ms":2.67,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":32.34,"idle_ms":11.27,"stall_ms":0.01,"io_percent":26.2,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":0.0,"run_ms":20.03,"idle_ms":5.25,"stall_ms":82.2,"io_percent":5.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.68,"run_ms":118.03,"idle_ms":83.85,"stall_ms":0.02,"io_percent":44.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":11.02,"idle_ms":1.75,"stall_ms":114.2,"io_percent":1.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.6,"run_ms":104.01,"idle_ms":33.7,"stall_ms":0.02,"io_percent":29.6,"method":"GET","action":"home#newest"} | |
{"gc_ms":11.41,"run_ms":85.43,"idle_ms":56.87,"stall_ms":0.02,"io_percent":40.2,"method":"GET","action":"home#index"} | |
{"gc_ms":3.58,"run_ms":39.12,"idle_ms":3.56,"stall_ms":0.01,"io_percent":8.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.25,"idle_ms":8.81,"stall_ms":0.01,"io_percent":29.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":113.68,"idle_ms":74.85,"stall_ms":0.02,"io_percent":43.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.11,"run_ms":20.1,"idle_ms":3.09,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.3,"idle_ms":3.1,"stall_ms":0.01,"io_percent":17.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.4,"idle_ms":3.14,"stall_ms":0.24,"io_percent":17.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.68,"run_ms":27.99,"idle_ms":10.02,"stall_ms":0.01,"io_percent":26.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":38.72,"idle_ms":3.61,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":35.96,"idle_ms":3.51,"stall_ms":0.01,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":16.73,"idle_ms":4.11,"stall_ms":0.01,"io_percent":22.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":112.37,"idle_ms":29.36,"stall_ms":0.02,"io_percent":23.9,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":34.95,"idle_ms":3.37,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.35,"run_ms":25.36,"idle_ms":3.81,"stall_ms":0.01,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":6.2,"run_ms":108.83,"idle_ms":11.6,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.31,"run_ms":81.9,"idle_ms":17.55,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.3,"run_ms":21.48,"idle_ms":3.69,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.25,"run_ms":16.56,"idle_ms":2.89,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.17,"idle_ms":3.35,"stall_ms":0.01,"io_percent":18.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.46,"idle_ms":4.25,"stall_ms":0.01,"io_percent":18.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.24,"run_ms":7.67,"idle_ms":0.96,"stall_ms":0.0,"io_percent":11.0,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":32.98,"idle_ms":2.66,"stall_ms":0.01,"io_percent":7.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.21,"idle_ms":4.36,"stall_ms":0.01,"io_percent":19.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":38.92,"idle_ms":14.39,"stall_ms":0.02,"io_percent":23.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.21,"run_ms":40.2,"idle_ms":3.55,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.35,"idle_ms":1.08,"stall_ms":0.0,"io_percent":16.8,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":16.17,"idle_ms":3.06,"stall_ms":0.01,"io_percent":18.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":38.81,"idle_ms":15.98,"stall_ms":0.01,"io_percent":27.9,"method":"GET","action":"comments#index"} | |
{"gc_ms":2.01,"run_ms":13.45,"idle_ms":2.87,"stall_ms":95.98,"io_percent":2.5,"method":"GET","action":"users#show"} | |
{"gc_ms":12.7,"run_ms":99.95,"idle_ms":9.11,"stall_ms":0.01,"io_percent":8.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.71,"run_ms":35.4,"idle_ms":16.36,"stall_ms":0.01,"io_percent":31.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.76,"run_ms":39.17,"idle_ms":2.85,"stall_ms":0.01,"io_percent":7.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":10.64,"idle_ms":1.22,"stall_ms":0.0,"io_percent":9.0,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":4.72,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.75,"run_ms":17.7,"idle_ms":2.91,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":4.13,"run_ms":45.55,"idle_ms":9.35,"stall_ms":0.03,"io_percent":16.6,"method":"GET","action":"users#tree"} | |
{"gc_ms":7.4,"run_ms":47.74,"idle_ms":16.24,"stall_ms":0.02,"io_percent":24.7,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":7.88,"idle_ms":0.6,"stall_ms":0.0,"io_percent":6.5,"method":"HEAD","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":33.71,"idle_ms":14.75,"stall_ms":0.01,"io_percent":30.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.8,"run_ms":20.92,"idle_ms":3.6,"stall_ms":0.0,"io_percent":12.6,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":11.76,"run_ms":37.35,"idle_ms":10.51,"stall_ms":0.01,"io_percent":21.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.11,"idle_ms":3.4,"stall_ms":0.01,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.72,"run_ms":18.56,"idle_ms":3.42,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.97,"run_ms":6.75,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":2.45,"run_ms":32.17,"idle_ms":9.92,"stall_ms":0.01,"io_percent":23.7,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":0.75,"run_ms":9.17,"idle_ms":0.65,"stall_ms":0.0,"io_percent":6.7,"method":"HEAD","action":"login#index"} | |
{"gc_ms":8.63,"run_ms":150.63,"idle_ms":769.49,"stall_ms":1.32,"io_percent":84.4,"method":"HEAD","action":"home#recent"} | |
{"gc_ms":0.23,"run_ms":16.36,"idle_ms":2.92,"stall_ms":0.15,"io_percent":12.7,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":1.04,"run_ms":20.54,"idle_ms":3.51,"stall_ms":0.01,"io_percent":13.0,"method":"GET","action":"home#index"} | |
{"gc_ms":5.64,"run_ms":117.2,"idle_ms":88.33,"stall_ms":0.09,"io_percent":45.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":2.13,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.32,"run_ms":17.3,"idle_ms":3.78,"stall_ms":0.01,"io_percent":20.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.27,"run_ms":7.87,"idle_ms":0.66,"stall_ms":0.0,"io_percent":7.4,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.8,"run_ms":36.05,"idle_ms":9.5,"stall_ms":0.02,"io_percent":19.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.22,"run_ms":11.48,"idle_ms":2.12,"stall_ms":0.0,"io_percent":10.1,"method":"HEAD","action":"users#show"} | |
{"gc_ms":2.16,"run_ms":37.8,"idle_ms":14.99,"stall_ms":0.01,"io_percent":25.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.57,"run_ms":40.46,"idle_ms":3.72,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.59,"run_ms":30.48,"idle_ms":3.67,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":10.5,"idle_ms":0.61,"stall_ms":0.0,"io_percent":4.6,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":6.66,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":3.02,"run_ms":124.82,"idle_ms":81.0,"stall_ms":0.02,"io_percent":41.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.52,"run_ms":12.09,"idle_ms":2.03,"stall_ms":0.0,"io_percent":14.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.31,"run_ms":7.03,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.83,"run_ms":48.78,"idle_ms":11.92,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.98,"run_ms":17.71,"idle_ms":3.36,"stall_ms":77.56,"io_percent":3.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.13,"idle_ms":2.67,"stall_ms":0.0,"io_percent":20.6,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":3.27,"run_ms":37.87,"idle_ms":78.09,"stall_ms":0.01,"io_percent":66.0,"method":"GET","action":"moderations#index"} | |
{"gc_ms":0.39,"run_ms":17.41,"idle_ms":3.28,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.42,"run_ms":12.17,"idle_ms":1.9,"stall_ms":0.0,"io_percent":13.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":10.89,"idle_ms":2.33,"stall_ms":0.0,"io_percent":15.7,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":1.12,"run_ms":32.69,"idle_ms":14.27,"stall_ms":0.01,"io_percent":30.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.29,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.39,"run_ms":7.97,"idle_ms":0.05,"stall_ms":0.0,"io_percent":0.6,"method":"GET"} | |
{"gc_ms":0.77,"run_ms":11.89,"idle_ms":2.04,"stall_ms":0.0,"io_percent":14.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.63,"run_ms":6.58,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.6,"run_ms":11.67,"idle_ms":1.94,"stall_ms":195.97,"io_percent":0.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.39,"run_ms":8.97,"idle_ms":1.73,"stall_ms":0.0,"io_percent":16.3,"method":"HEAD","action":"stories#new"} | |
{"gc_ms":0.76,"run_ms":19.63,"idle_ms":2.15,"stall_ms":0.0,"io_percent":5.3,"method":"GET","action":"users#show"} | |
{"gc_ms":1.71,"run_ms":34.3,"idle_ms":12.35,"stall_ms":0.01,"io_percent":25.5,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":0.19,"run_ms":37.38,"idle_ms":5.34,"stall_ms":0.22,"io_percent":12.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.37,"run_ms":19.81,"idle_ms":4.0,"stall_ms":0.0,"io_percent":17.0,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":1.56,"run_ms":12.75,"idle_ms":6.72,"stall_ms":0.0,"io_percent":22.9,"method":"HEAD","action":"login#index"} | |
{"gc_ms":0.22,"run_ms":21.22,"idle_ms":15.2,"stall_ms":0.01,"io_percent":35.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.34,"run_ms":9.83,"idle_ms":3.82,"stall_ms":0.0,"io_percent":28.2,"method":"GET","action":"stories#new"} | |
{"gc_ms":2.02,"run_ms":45.15,"idle_ms":9.56,"stall_ms":78.58,"io_percent":7.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.21,"run_ms":9.91,"idle_ms":1.0,"stall_ms":0.0,"io_percent":9.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.85,"idle_ms":0.6,"stall_ms":0.0,"io_percent":6.3,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":39.07,"idle_ms":3.93,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.47,"run_ms":50.97,"idle_ms":10.79,"stall_ms":0.02,"io_percent":17.6,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":17.0,"idle_ms":4.17,"stall_ms":0.05,"io_percent":20.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.5,"run_ms":38.43,"idle_ms":3.37,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":10.25,"run_ms":54.55,"idle_ms":7.41,"stall_ms":0.01,"io_percent":11.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":121.05,"idle_ms":220.71,"stall_ms":0.06,"io_percent":68.4,"method":"GET","action":"home#category"} | |
{"gc_ms":0.0,"run_ms":121.81,"idle_ms":467.12,"stall_ms":0.06,"io_percent":82.8,"method":"GET","action":"home#category"} | |
{"gc_ms":6.49,"run_ms":39.41,"idle_ms":15.07,"stall_ms":0.01,"io_percent":27.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.25,"run_ms":30.62,"idle_ms":3.16,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.27,"run_ms":38.21,"idle_ms":14.13,"stall_ms":0.01,"io_percent":27.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.55,"run_ms":17.38,"idle_ms":3.01,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":4.59,"run_ms":60.05,"idle_ms":167.57,"stall_ms":68.82,"io_percent":56.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.65,"run_ms":8.03,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":5.99,"run_ms":26.0,"idle_ms":3.59,"stall_ms":0.01,"io_percent":13.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.22,"run_ms":5.9,"idle_ms":0.05,"stall_ms":79.58,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.79,"idle_ms":1.94,"stall_ms":0.0,"io_percent":16.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.31,"run_ms":15.95,"idle_ms":2.73,"stall_ms":115.55,"io_percent":2.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.63,"run_ms":16.6,"idle_ms":3.07,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.8,"run_ms":22.87,"idle_ms":6.12,"stall_ms":0.01,"io_percent":23.2,"method":"GET","action":"home#index"} | |
{"gc_ms":9.38,"run_ms":29.57,"idle_ms":3.37,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#newest"} | |
{"gc_ms":2.78,"run_ms":127.82,"idle_ms":56.9,"stall_ms":0.02,"io_percent":34.8,"method":"HEAD","action":"home#single_tag"} | |
{"gc_ms":1.51,"run_ms":21.17,"idle_ms":2.11,"stall_ms":0.0,"io_percent":9.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.56,"run_ms":34.85,"idle_ms":11.41,"stall_ms":0.09,"io_percent":25.0,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":4.65,"run_ms":30.65,"idle_ms":2.93,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.4,"run_ms":30.52,"idle_ms":5.67,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.3,"run_ms":18.28,"idle_ms":3.53,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":39.97,"run_ms":93.11,"idle_ms":4.47,"stall_ms":0.01,"io_percent":4.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.28,"run_ms":16.43,"idle_ms":2.75,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":10.15,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.03,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.73,"run_ms":10.32,"idle_ms":1.87,"stall_ms":0.0,"io_percent":15.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":19.4,"idle_ms":2.0,"stall_ms":134.17,"io_percent":1.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.74,"run_ms":43.73,"idle_ms":3.41,"stall_ms":0.06,"io_percent":6.3,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":30.35,"idle_ms":3.4,"stall_ms":64.14,"io_percent":3.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":34.66,"idle_ms":3.48,"stall_ms":1.78,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":34.0,"idle_ms":3.29,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.46,"run_ms":6.47,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":5.45,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":4.66,"run_ms":22.8,"idle_ms":4.06,"stall_ms":0.07,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.79,"run_ms":44.75,"idle_ms":16.3,"stall_ms":0.02,"io_percent":26.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.04,"run_ms":11.7,"idle_ms":2.42,"stall_ms":0.0,"io_percent":15.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.47,"run_ms":12.39,"idle_ms":2.2,"stall_ms":0.0,"io_percent":15.2,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.23,"run_ms":16.0,"idle_ms":2.7,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.28,"run_ms":21.6,"idle_ms":3.25,"stall_ms":0.01,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":2.85,"run_ms":26.63,"idle_ms":3.54,"stall_ms":0.01,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.84,"run_ms":23.67,"idle_ms":3.18,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.98,"run_ms":43.97,"idle_ms":16.33,"stall_ms":0.02,"io_percent":27.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.25,"run_ms":17.55,"idle_ms":3.07,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.3,"run_ms":19.07,"idle_ms":5.13,"stall_ms":0.01,"io_percent":23.8,"method":"GET","action":"home#index"} | |
{"gc_ms":3.97,"run_ms":152.46,"idle_ms":82.75,"stall_ms":3.08,"io_percent":39.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.31,"run_ms":133.24,"idle_ms":76.92,"stall_ms":0.03,"io_percent":38.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":22.85,"idle_ms":3.71,"stall_ms":117.27,"io_percent":2.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.31,"run_ms":8.64,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":1.88,"run_ms":33.47,"idle_ms":18.43,"stall_ms":0.06,"io_percent":33.8,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":2.56,"run_ms":15.82,"idle_ms":2.31,"stall_ms":0.0,"io_percent":12.8,"method":"GET","action":"users#show"} | |
{"gc_ms":2.55,"run_ms":153.03,"idle_ms":86.4,"stall_ms":0.03,"io_percent":40.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.88,"run_ms":70.75,"idle_ms":20.72,"stall_ms":0.02,"io_percent":22.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.63,"idle_ms":2.93,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":3.07,"run_ms":68.48,"idle_ms":47.11,"stall_ms":0.04,"io_percent":39.3,"method":"GET","action":"home#index"} | |
{"gc_ms":3.52,"run_ms":43.78,"idle_ms":2.77,"stall_ms":0.01,"io_percent":6.1,"method":"GET","action":"home#top"} | |
{"gc_ms":1.23,"run_ms":128.76,"idle_ms":49.32,"stall_ms":73.35,"io_percent":20.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":8.5,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":19.8,"idle_ms":3.71,"stall_ms":0.35,"io_percent":17.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":25.35,"idle_ms":5.06,"stall_ms":0.01,"io_percent":14.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.83,"idle_ms":2.93,"stall_ms":0.01,"io_percent":12.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.06,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":33.54,"idle_ms":4.87,"stall_ms":0.15,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":37.19,"idle_ms":12.08,"stall_ms":0.01,"io_percent":21.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.71,"idle_ms":2.02,"stall_ms":0.0,"io_percent":10.7,"method":"GET","action":"users#show"} | |
{"gc_ms":10.05,"run_ms":67.81,"idle_ms":19.02,"stall_ms":0.02,"io_percent":22.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":13.79,"idle_ms":2.82,"stall_ms":0.0,"io_percent":14.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":53.17,"idle_ms":17.17,"stall_ms":0.02,"io_percent":23.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.24,"run_ms":17.57,"idle_ms":2.91,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.82,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":1.72,"run_ms":16.24,"idle_ms":2.15,"stall_ms":0.0,"io_percent":11.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.56,"idle_ms":0.06,"stall_ms":78.61,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":9.6,"run_ms":35.63,"idle_ms":3.74,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.72,"idle_ms":4.77,"stall_ms":0.0,"io_percent":26.9,"method":"GET","action":"users#show"} | |
{"gc_ms":10.13,"run_ms":134.08,"idle_ms":70.5,"stall_ms":0.03,"io_percent":37.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":7.89,"run_ms":110.44,"idle_ms":12.12,"stall_ms":0.02,"io_percent":9.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.49,"run_ms":22.74,"idle_ms":3.35,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":25.38,"idle_ms":3.73,"stall_ms":0.01,"io_percent":13.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":100.05,"idle_ms":9.02,"stall_ms":0.02,"io_percent":8.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":12.54,"run_ms":181.29,"idle_ms":46.01,"stall_ms":0.06,"io_percent":21.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.53,"run_ms":25.7,"idle_ms":2.06,"stall_ms":0.01,"io_percent":8.0,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":23.15,"idle_ms":6.72,"stall_ms":0.01,"io_percent":23.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.69,"run_ms":19.66,"idle_ms":3.28,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.44,"idle_ms":3.7,"stall_ms":0.06,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.35,"run_ms":22.38,"idle_ms":3.53,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.37,"idle_ms":2.89,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":3.46,"run_ms":44.43,"idle_ms":15.0,"stall_ms":0.02,"io_percent":25.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.64,"run_ms":149.0,"idle_ms":102.09,"stall_ms":0.07,"io_percent":45.0,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":1.59,"run_ms":56.42,"idle_ms":12.08,"stall_ms":0.12,"io_percent":15.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":24.61,"idle_ms":3.51,"stall_ms":0.03,"io_percent":14.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.65,"run_ms":19.57,"idle_ms":3.13,"stall_ms":0.17,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.92,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.27,"run_ms":14.85,"idle_ms":2.15,"stall_ms":0.0,"io_percent":12.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":45.88,"idle_ms":6.03,"stall_ms":0.46,"io_percent":12.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.87,"run_ms":154.97,"idle_ms":70.42,"stall_ms":0.03,"io_percent":35.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":6.57,"run_ms":94.92,"idle_ms":125.72,"stall_ms":0.02,"io_percent":57.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.5,"run_ms":6.84,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.24,"run_ms":13.01,"idle_ms":2.02,"stall_ms":0.0,"io_percent":13.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.35,"run_ms":24.63,"idle_ms":3.88,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.52,"run_ms":28.86,"idle_ms":4.57,"stall_ms":0.03,"io_percent":12.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.29,"run_ms":23.02,"idle_ms":3.37,"stall_ms":0.01,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.34,"run_ms":24.18,"idle_ms":3.55,"stall_ms":0.01,"io_percent":14.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.96,"idle_ms":1.11,"stall_ms":0.0,"io_percent":8.3,"method":"GET"} | |
{"gc_ms":0.72,"run_ms":22.89,"idle_ms":5.53,"stall_ms":0.01,"io_percent":21.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.98,"idle_ms":2.78,"stall_ms":0.01,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.73,"run_ms":18.16,"idle_ms":4.03,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.29,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.47,"run_ms":17.08,"idle_ms":2.6,"stall_ms":0.0,"io_percent":13.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.79,"run_ms":12.84,"idle_ms":1.99,"stall_ms":0.0,"io_percent":13.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":83.45,"idle_ms":402.74,"stall_ms":86.19,"io_percent":70.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":50.88,"idle_ms":14.16,"stall_ms":0.01,"io_percent":20.5,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":27.97,"idle_ms":4.92,"stall_ms":118.05,"io_percent":3.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.29,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.66,"run_ms":11.98,"idle_ms":2.02,"stall_ms":0.0,"io_percent":14.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":152.63,"idle_ms":168.69,"stall_ms":0.19,"io_percent":53.3,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":24.28,"idle_ms":3.25,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.64,"idle_ms":6.27,"stall_ms":0.01,"io_percent":19.5,"method":"GET","action":"home#index"} | |
{"gc_ms":4.88,"run_ms":48.39,"idle_ms":18.64,"stall_ms":110.04,"io_percent":10.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.36,"run_ms":44.88,"idle_ms":7.55,"stall_ms":0.01,"io_percent":14.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.78,"run_ms":52.78,"idle_ms":8.98,"stall_ms":0.11,"io_percent":11.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":44.45,"idle_ms":5.28,"stall_ms":0.01,"io_percent":10.9,"method":"GET","action":"home#index"} | |
{"gc_ms":7.65,"run_ms":162.21,"idle_ms":50.53,"stall_ms":0.03,"io_percent":25.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":37.53,"idle_ms":3.47,"stall_ms":0.01,"io_percent":7.4,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":41.5,"idle_ms":14.07,"stall_ms":0.02,"io_percent":24.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":42.73,"idle_ms":4.89,"stall_ms":0.01,"io_percent":10.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":66.1,"idle_ms":61.68,"stall_ms":0.01,"io_percent":47.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":164.08,"idle_ms":48.81,"stall_ms":0.1,"io_percent":23.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":11.84,"run_ms":81.49,"idle_ms":19.61,"stall_ms":0.02,"io_percent":19.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":64.59,"idle_ms":19.19,"stall_ms":0.11,"io_percent":23.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":13.03,"run_ms":62.34,"idle_ms":2.99,"stall_ms":0.01,"io_percent":4.3,"method":"GET","action":"home#top"} | |
{"gc_ms":6.63,"run_ms":141.17,"idle_ms":64.35,"stall_ms":0.03,"io_percent":35.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":11.24,"idle_ms":2.25,"stall_ms":0.0,"io_percent":16.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.59,"run_ms":140.07,"idle_ms":2623.07,"stall_ms":66.81,"io_percent":93.0,"method":"GET","action":"home#active"} | |
{"gc_ms":0.36,"run_ms":22.17,"idle_ms":3.71,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":95.59,"idle_ms":265.36,"stall_ms":0.03,"io_percent":73.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.65,"idle_ms":3.24,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":37.87,"idle_ms":15.49,"stall_ms":0.02,"io_percent":29.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":126.84,"idle_ms":40.26,"stall_ms":0.1,"io_percent":29.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.43,"run_ms":124.75,"idle_ms":33.58,"stall_ms":0.02,"io_percent":24.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":38.74,"idle_ms":12.11,"stall_ms":0.01,"io_percent":19.9,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":1.52,"run_ms":45.99,"idle_ms":3.71,"stall_ms":0.06,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":14.74,"run_ms":165.44,"idle_ms":54.66,"stall_ms":0.07,"io_percent":26.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.53,"run_ms":39.43,"idle_ms":5.48,"stall_ms":0.01,"io_percent":12.9,"method":"GET","action":"home#index"} | |
{"gc_ms":13.02,"run_ms":110.8,"idle_ms":26.17,"stall_ms":0.02,"io_percent":19.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":9.72,"idle_ms":0.74,"stall_ms":0.0,"io_percent":7.1,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.31,"run_ms":18.58,"idle_ms":2.9,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":34.12,"idle_ms":3.71,"stall_ms":0.01,"io_percent":10.6,"method":"GET","action":"home#index"} | |
{"gc_ms":4.51,"run_ms":85.82,"idle_ms":15.44,"stall_ms":0.2,"io_percent":15.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.01,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.61,"run_ms":11.23,"idle_ms":1.83,"stall_ms":0.0,"io_percent":12.6,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.11,"run_ms":19.91,"idle_ms":3.98,"stall_ms":0.01,"io_percent":12.7,"method":"GET","action":"home#index"} | |
{"gc_ms":4.29,"run_ms":43.09,"idle_ms":8.61,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.11,"idle_ms":4.07,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.25,"run_ms":14.8,"idle_ms":3.67,"stall_ms":0.0,"io_percent":17.5,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":48.97,"idle_ms":4.87,"stall_ms":0.08,"io_percent":7.4,"method":"GET","action":"home#index"} | |
{"gc_ms":7.17,"run_ms":49.38,"idle_ms":4.67,"stall_ms":0.01,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.26,"run_ms":31.0,"idle_ms":2.77,"stall_ms":0.01,"io_percent":8.1,"method":"GET","action":"home#top"} | |
{"gc_ms":1.45,"run_ms":42.78,"idle_ms":7.25,"stall_ms":0.01,"io_percent":10.9,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.0,"run_ms":41.52,"idle_ms":17.06,"stall_ms":0.01,"io_percent":29.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.03,"run_ms":118.68,"idle_ms":64.7,"stall_ms":0.02,"io_percent":39.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.31,"run_ms":23.73,"idle_ms":3.77,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":21.28,"run_ms":168.49,"idle_ms":67.74,"stall_ms":0.02,"io_percent":30.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":6.72,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.43,"idle_ms":2.25,"stall_ms":0.0,"io_percent":15.4,"method":"GET","action":"users#show"} | |
{"gc_ms":3.96,"run_ms":35.13,"idle_ms":3.65,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":5.11,"run_ms":118.65,"idle_ms":31.1,"stall_ms":0.02,"io_percent":23.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.51,"run_ms":15.75,"idle_ms":2.7,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.32,"run_ms":18.14,"idle_ms":2.7,"stall_ms":0.02,"io_percent":12.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.64,"run_ms":43.96,"idle_ms":14.1,"stall_ms":0.02,"io_percent":24.0,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":0.0,"run_ms":17.77,"idle_ms":3.44,"stall_ms":0.0,"io_percent":15.4,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.21,"run_ms":19.56,"idle_ms":3.21,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.85,"run_ms":45.57,"idle_ms":11.15,"stall_ms":0.02,"io_percent":19.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":21.92,"idle_ms":3.56,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":50.24,"idle_ms":4.54,"stall_ms":0.07,"io_percent":8.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.97,"run_ms":47.52,"idle_ms":13.35,"stall_ms":0.01,"io_percent":22.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.44,"run_ms":18.01,"idle_ms":7.3,"stall_ms":0.01,"io_percent":32.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.15,"run_ms":19.94,"idle_ms":4.03,"stall_ms":0.01,"io_percent":19.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.61,"run_ms":39.06,"idle_ms":17.62,"stall_ms":0.02,"io_percent":30.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.83,"run_ms":51.17,"idle_ms":19.0,"stall_ms":0.02,"io_percent":26.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.91,"run_ms":37.54,"idle_ms":4.43,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#index"} | |
{"gc_ms":11.69,"run_ms":73.81,"idle_ms":16.04,"stall_ms":0.02,"io_percent":15.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":37.49,"idle_ms":11.14,"stall_ms":0.01,"io_percent":23.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.3,"run_ms":16.37,"idle_ms":2.83,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":5.72,"run_ms":110.21,"idle_ms":137.95,"stall_ms":0.02,"io_percent":59.5,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.74,"run_ms":9.51,"idle_ms":0.85,"stall_ms":0.0,"io_percent":8.2,"method":"GET","action":"login#index"} | |
{"gc_ms":0.49,"run_ms":6.39,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":5.71,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.44,"run_ms":36.12,"idle_ms":9.88,"stall_ms":0.01,"io_percent":20.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":38.89,"idle_ms":14.86,"stall_ms":0.01,"io_percent":27.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.5,"run_ms":10.44,"idle_ms":4.69,"stall_ms":0.0,"io_percent":31.1,"method":"GET"} | |
{"gc_ms":0.37,"run_ms":14.5,"idle_ms":4.08,"stall_ms":0.0,"io_percent":19.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.32,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.49,"idle_ms":2.42,"stall_ms":0.0,"io_percent":20.5,"method":"GET","action":"users#show"} | |
{"gc_ms":1.02,"run_ms":18.14,"idle_ms":8.49,"stall_ms":0.01,"io_percent":36.0,"method":"GET","action":"home#index"} | |
{"gc_ms":15.07,"run_ms":78.53,"idle_ms":19.85,"stall_ms":82.0,"io_percent":11.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.33,"run_ms":19.66,"idle_ms":1.85,"stall_ms":0.0,"io_percent":5.3,"method":"HEAD","action":"users#show"} | |
{"gc_ms":3.21,"run_ms":34.33,"idle_ms":4.15,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.33,"run_ms":42.78,"idle_ms":17.33,"stall_ms":0.02,"io_percent":29.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.78,"run_ms":63.2,"idle_ms":226.92,"stall_ms":0.12,"io_percent":78.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.54,"run_ms":34.74,"idle_ms":3.16,"stall_ms":1.15,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":10.57,"run_ms":126.0,"idle_ms":33.35,"stall_ms":0.02,"io_percent":23.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.84,"run_ms":38.37,"idle_ms":14.29,"stall_ms":0.01,"io_percent":27.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":117.49,"idle_ms":43.67,"stall_ms":0.02,"io_percent":30.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.28,"run_ms":23.32,"idle_ms":3.53,"stall_ms":0.01,"io_percent":12.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.61,"run_ms":21.98,"idle_ms":3.58,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.52,"run_ms":18.25,"idle_ms":3.33,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":3.04,"run_ms":51.15,"idle_ms":11.67,"stall_ms":83.4,"io_percent":8.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":22.07,"idle_ms":3.28,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.41,"run_ms":24.76,"idle_ms":3.51,"stall_ms":0.01,"io_percent":13.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.96,"run_ms":44.62,"idle_ms":17.52,"stall_ms":0.02,"io_percent":25.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.16,"run_ms":6.29,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.34,"run_ms":12.11,"idle_ms":1.95,"stall_ms":0.0,"io_percent":13.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":16.96,"idle_ms":2.83,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.48,"run_ms":40.14,"idle_ms":3.71,"stall_ms":0.01,"io_percent":7.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":13.72,"idle_ms":1.85,"stall_ms":0.0,"io_percent":9.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":15.41,"idle_ms":2.78,"stall_ms":0.01,"io_percent":17.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.25,"run_ms":9.86,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.7,"run_ms":13.03,"idle_ms":1.9,"stall_ms":0.0,"io_percent":12.8,"method":"GET","action":"users#show"} | |
{"gc_ms":1.92,"run_ms":28.79,"idle_ms":9.87,"stall_ms":0.01,"io_percent":24.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.13,"run_ms":45.55,"idle_ms":14.46,"stall_ms":0.01,"io_percent":23.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.43,"run_ms":15.12,"idle_ms":2.07,"stall_ms":0.0,"io_percent":12.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.3,"run_ms":15.12,"idle_ms":2.85,"stall_ms":0.01,"io_percent":18.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":41.85,"idle_ms":3.91,"stall_ms":0.01,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":56.71,"idle_ms":20.16,"stall_ms":0.02,"io_percent":26.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.98,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.08,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.41,"idle_ms":1.63,"stall_ms":0.0,"io_percent":8.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":9.51,"idle_ms":2.14,"stall_ms":0.0,"io_percent":18.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.73,"run_ms":20.69,"idle_ms":4.98,"stall_ms":0.14,"io_percent":22.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.07,"run_ms":41.18,"idle_ms":10.53,"stall_ms":0.01,"io_percent":20.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":22.09,"idle_ms":4.42,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.3,"run_ms":22.9,"idle_ms":3.48,"stall_ms":0.01,"io_percent":14.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.27,"run_ms":16.96,"idle_ms":2.85,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.25,"run_ms":21.09,"idle_ms":3.31,"stall_ms":0.01,"io_percent":14.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":57.71,"idle_ms":23.2,"stall_ms":0.02,"io_percent":28.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.39,"run_ms":6.69,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.32,"run_ms":20.51,"idle_ms":4.07,"stall_ms":0.11,"io_percent":18.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.19,"run_ms":98.14,"idle_ms":30.37,"stall_ms":0.02,"io_percent":23.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.67,"run_ms":54.22,"idle_ms":10.29,"stall_ms":82.99,"io_percent":7.8,"method":"GET","action":"users#tree"} | |
{"gc_ms":2.71,"run_ms":145.96,"idle_ms":94.13,"stall_ms":0.21,"io_percent":44.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.24,"run_ms":7.5,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.81,"run_ms":35.09,"idle_ms":12.11,"stall_ms":0.01,"io_percent":25.9,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.26,"run_ms":19.58,"idle_ms":3.0,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.64,"run_ms":117.97,"idle_ms":9.9,"stall_ms":0.89,"io_percent":7.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.27,"run_ms":130.31,"idle_ms":38.72,"stall_ms":0.87,"io_percent":24.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":14.25,"idle_ms":0.96,"stall_ms":0.0,"io_percent":4.8,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":171.91,"idle_ms":54.93,"stall_ms":0.06,"io_percent":25.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.43,"run_ms":49.35,"idle_ms":20.89,"stall_ms":0.02,"io_percent":29.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":46.62,"idle_ms":11.37,"stall_ms":0.02,"io_percent":19.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":37.99,"idle_ms":10.03,"stall_ms":0.02,"io_percent":20.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":19.3,"idle_ms":3.18,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.92,"idle_ms":3.89,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":8.94,"run_ms":41.9,"idle_ms":3.19,"stall_ms":0.01,"io_percent":7.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.55,"run_ms":17.54,"idle_ms":3.03,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":2.04,"run_ms":31.4,"idle_ms":12.62,"stall_ms":0.01,"io_percent":28.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.91,"idle_ms":2.73,"stall_ms":0.01,"io_percent":15.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.71,"run_ms":7.3,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.44,"run_ms":16.8,"idle_ms":2.88,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.5,"run_ms":11.1,"idle_ms":2.0,"stall_ms":0.0,"io_percent":15.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.38,"run_ms":15.87,"idle_ms":2.85,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.44,"idle_ms":3.18,"stall_ms":0.01,"io_percent":19.3,"method":"GET","action":"home#index"} | |
{"gc_ms":9.94,"run_ms":76.08,"idle_ms":78.86,"stall_ms":0.02,"io_percent":50.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.97,"run_ms":18.22,"idle_ms":16.82,"stall_ms":0.0,"io_percent":45.9,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":5.72,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.83,"run_ms":7.8,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.73,"run_ms":11.46,"idle_ms":2.01,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"users#show"} | |
{"gc_ms":4.26,"run_ms":45.24,"idle_ms":3.75,"stall_ms":0.01,"io_percent":8.0,"method":"GET","action":"home#index"} | |
{"gc_ms":2.94,"run_ms":169.0,"idle_ms":61.98,"stall_ms":0.04,"io_percent":30.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.19,"run_ms":11.93,"idle_ms":1.7,"stall_ms":0.0,"io_percent":10.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":39.34,"idle_ms":16.65,"stall_ms":1.08,"io_percent":28.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":33.02,"idle_ms":3.42,"stall_ms":0.01,"io_percent":10.1,"method":"GET","action":"home#index"} | |
{"gc_ms":6.15,"run_ms":22.5,"idle_ms":2.83,"stall_ms":0.01,"io_percent":11.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.02,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.7,"run_ms":14.73,"idle_ms":1.82,"stall_ms":0.0,"io_percent":8.0,"method":"GET","action":"users#show"} | |
{"gc_ms":4.15,"run_ms":45.15,"idle_ms":8.24,"stall_ms":0.01,"io_percent":14.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.41,"run_ms":14.54,"idle_ms":2.62,"stall_ms":0.01,"io_percent":17.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.96,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.21,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.34,"idle_ms":2.18,"stall_ms":0.0,"io_percent":13.1,"method":"GET","action":"users#show"} | |
{"gc_ms":3.32,"run_ms":67.02,"idle_ms":319.59,"stall_ms":0.02,"io_percent":82.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.14,"run_ms":19.4,"idle_ms":3.56,"stall_ms":0.01,"io_percent":18.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.24,"run_ms":11.77,"idle_ms":2.27,"stall_ms":0.0,"io_percent":16.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.47,"run_ms":31.11,"idle_ms":9.97,"stall_ms":0.2,"io_percent":24.5,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":14.89,"idle_ms":3.17,"stall_ms":0.01,"io_percent":20.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.82,"run_ms":19.05,"idle_ms":2.76,"stall_ms":0.01,"io_percent":11.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.62,"run_ms":23.02,"idle_ms":3.82,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.79,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":13.55,"idle_ms":2.03,"stall_ms":0.0,"io_percent":13.1,"method":"GET","action":"users#show"} | |
{"gc_ms":9.15,"run_ms":44.77,"idle_ms":2.59,"stall_ms":0.01,"io_percent":5.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.23,"run_ms":136.99,"idle_ms":34.69,"stall_ms":0.02,"io_percent":21.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":16.09,"idle_ms":5.83,"stall_ms":0.0,"io_percent":26.6,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":1.69,"run_ms":55.28,"idle_ms":19.74,"stall_ms":0.02,"io_percent":25.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":73.6,"idle_ms":15.91,"stall_ms":0.02,"io_percent":17.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":20.02,"idle_ms":10.27,"stall_ms":0.01,"io_percent":34.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":18.99,"idle_ms":4.84,"stall_ms":65.57,"io_percent":5.5,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":5.55,"idle_ms":0.04,"stall_ms":0.05,"io_percent":0.6,"method":"HEAD"} | |
{"gc_ms":7.7,"run_ms":53.08,"idle_ms":14.78,"stall_ms":0.02,"io_percent":21.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.83,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":12.71,"run_ms":48.46,"idle_ms":5.05,"stall_ms":0.01,"io_percent":9.5,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":11.34,"idle_ms":1.99,"stall_ms":0.0,"io_percent":15.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":12.07,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":1.01,"run_ms":9.23,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":11.5,"run_ms":80.33,"idle_ms":8.78,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.17,"run_ms":11.85,"idle_ms":1.9,"stall_ms":0.0,"io_percent":13.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.94,"run_ms":9.07,"idle_ms":3.23,"stall_ms":0.0,"io_percent":15.4,"method":"GET"} | |
{"gc_ms":1.01,"run_ms":38.39,"idle_ms":7.54,"stall_ms":0.01,"io_percent":14.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.73,"idle_ms":3.02,"stall_ms":77.38,"io_percent":3.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.89,"run_ms":11.19,"idle_ms":1.67,"stall_ms":0.0,"io_percent":13.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.53,"run_ms":18.97,"idle_ms":3.45,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":3.04,"run_ms":28.13,"idle_ms":3.81,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":5.37,"run_ms":68.75,"idle_ms":9.96,"stall_ms":0.02,"io_percent":12.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":20.69,"idle_ms":3.51,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":4.74,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":26.23,"idle_ms":15.3,"stall_ms":79.94,"io_percent":13.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":10.55,"idle_ms":1.88,"stall_ms":0.0,"io_percent":15.3,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":42.66,"idle_ms":4.13,"stall_ms":0.01,"io_percent":9.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.32,"run_ms":32.66,"idle_ms":27.87,"stall_ms":0.03,"io_percent":46.4,"method":"POST","action":"comments#upvote"} | |
{"gc_ms":0.0,"run_ms":31.35,"idle_ms":15.94,"stall_ms":0.01,"io_percent":34.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.56,"run_ms":32.52,"idle_ms":9.5,"stall_ms":0.01,"io_percent":22.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":36.19,"idle_ms":10.6,"stall_ms":0.01,"io_percent":22.9,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":2.36,"run_ms":80.02,"idle_ms":536.98,"stall_ms":0.02,"io_percent":87.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.37,"run_ms":8.11,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":4.17,"run_ms":59.49,"idle_ms":23.65,"stall_ms":0.03,"io_percent":28.6,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":10.14,"idle_ms":2.05,"stall_ms":0.0,"io_percent":16.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":4.81,"idle_ms":0.0,"stall_ms":3.67,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":1.23,"run_ms":7.53,"idle_ms":3.23,"stall_ms":0.0,"io_percent":28.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.83,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":59.85,"idle_ms":169.36,"stall_ms":0.03,"io_percent":73.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.98,"run_ms":23.54,"idle_ms":3.04,"stall_ms":0.01,"io_percent":12.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.86,"idle_ms":2.96,"stall_ms":85.8,"io_percent":3.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":47.27,"idle_ms":4.13,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.55,"idle_ms":9.72,"stall_ms":0.01,"io_percent":23.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.99,"run_ms":24.2,"idle_ms":3.45,"stall_ms":0.01,"io_percent":14.2,"method":"GET","action":"home#index"} | |
{"gc_ms":9.31,"run_ms":54.56,"idle_ms":17.05,"stall_ms":0.02,"io_percent":23.9,"method":"HEAD","action":"home#index"} | |
{"gc_ms":4.05,"run_ms":47.61,"idle_ms":9.14,"stall_ms":0.02,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.66,"run_ms":26.67,"idle_ms":10.69,"stall_ms":0.02,"io_percent":23.5,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":3.9,"run_ms":30.02,"idle_ms":13.89,"stall_ms":1.05,"io_percent":25.2,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.92,"idle_ms":0.73,"stall_ms":0.0,"io_percent":5.9,"method":"HEAD","action":"stories#new"} | |
{"gc_ms":0.96,"run_ms":15.75,"idle_ms":6.85,"stall_ms":0.01,"io_percent":26.8,"method":"HEAD","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":35.72,"idle_ms":16.51,"stall_ms":0.01,"io_percent":30.4,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.6,"idle_ms":0.58,"stall_ms":0.0,"io_percent":5.3,"method":"GET","action":"stories#new"} | |
{"gc_ms":1.49,"run_ms":48.16,"idle_ms":18.43,"stall_ms":0.02,"io_percent":27.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":13.4,"run_ms":118.98,"idle_ms":109.56,"stall_ms":0.02,"io_percent":52.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":8.17,"idle_ms":0.91,"stall_ms":0.0,"io_percent":10.1,"method":"HEAD","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":5.04,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":7.56,"idle_ms":0.74,"stall_ms":0.0,"io_percent":8.9,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":16.61,"idle_ms":0.69,"stall_ms":0.0,"io_percent":2.1,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":43.95,"idle_ms":4.11,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.66,"run_ms":18.71,"idle_ms":2.92,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.27,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.34,"run_ms":23.2,"idle_ms":9.65,"stall_ms":0.01,"io_percent":28.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.47,"run_ms":14.83,"idle_ms":1.95,"stall_ms":0.0,"io_percent":11.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":65.65,"idle_ms":15.81,"stall_ms":0.01,"io_percent":19.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.19,"run_ms":19.86,"idle_ms":3.82,"stall_ms":0.06,"io_percent":12.3,"method":"GET","action":"home#index"} | |
{"gc_ms":7.4,"run_ms":84.46,"idle_ms":8.19,"stall_ms":0.01,"io_percent":8.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.84,"run_ms":10.01,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.86,"run_ms":10.39,"idle_ms":1.57,"stall_ms":0.0,"io_percent":13.0,"method":"GET","action":"users#show"} | |
{"gc_ms":1.31,"run_ms":17.48,"idle_ms":2.79,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.43,"run_ms":18.38,"idle_ms":2.78,"stall_ms":0.01,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.1,"run_ms":8.68,"idle_ms":0.0,"stall_ms":1.1,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":5.35,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.3,"run_ms":20.61,"idle_ms":3.41,"stall_ms":0.01,"io_percent":14.3,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.83,"run_ms":41.46,"idle_ms":11.77,"stall_ms":0.01,"io_percent":21.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":38.74,"idle_ms":11.34,"stall_ms":0.01,"io_percent":20.5,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":1.99,"run_ms":35.4,"idle_ms":11.87,"stall_ms":0.01,"io_percent":25.4,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":2.4,"run_ms":40.6,"idle_ms":11.96,"stall_ms":0.01,"io_percent":22.6,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":0.96,"run_ms":12.04,"idle_ms":2.25,"stall_ms":0.0,"io_percent":12.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.45,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":47.15,"idle_ms":3.95,"stall_ms":0.06,"io_percent":7.7,"method":"GET","action":"home#index"} | |
{"gc_ms":8.46,"run_ms":116.21,"idle_ms":33.53,"stall_ms":0.02,"io_percent":23.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.13,"run_ms":19.67,"idle_ms":7.47,"stall_ms":0.0,"io_percent":20.1,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":18.44,"idle_ms":6.14,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":10.21,"idle_ms":2.15,"stall_ms":0.0,"io_percent":17.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.23,"run_ms":23.49,"idle_ms":3.74,"stall_ms":0.01,"io_percent":11.6,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":36.56,"idle_ms":17.74,"stall_ms":0.01,"io_percent":32.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":114.22,"idle_ms":35.56,"stall_ms":0.02,"io_percent":28.2,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":48.04,"idle_ms":5.49,"stall_ms":0.12,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":70.59,"idle_ms":12.1,"stall_ms":0.01,"io_percent":14.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.67,"run_ms":109.91,"idle_ms":10.38,"stall_ms":0.01,"io_percent":8.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.13,"run_ms":144.96,"idle_ms":136.38,"stall_ms":0.13,"io_percent":50.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.78,"run_ms":23.96,"idle_ms":3.56,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":6.02,"run_ms":135.88,"idle_ms":95.96,"stall_ms":0.03,"io_percent":45.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.98,"run_ms":33.23,"idle_ms":8.29,"stall_ms":0.01,"io_percent":20.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.91,"run_ms":35.27,"idle_ms":31.45,"stall_ms":0.03,"io_percent":47.6,"method":"POST","action":"comments#upvote"} | |
{"gc_ms":0.43,"run_ms":11.61,"idle_ms":0.64,"stall_ms":0.0,"io_percent":5.2,"method":"GET","action":"login#index"} | |
{"gc_ms":0.81,"run_ms":41.85,"idle_ms":15.87,"stall_ms":0.01,"io_percent":27.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":34.45,"idle_ms":3.55,"stall_ms":0.01,"io_percent":10.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.41,"run_ms":25.54,"idle_ms":3.67,"stall_ms":0.23,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.6,"run_ms":62.07,"idle_ms":19.91,"stall_ms":0.02,"io_percent":22.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.73,"run_ms":34.54,"idle_ms":17.97,"stall_ms":0.01,"io_percent":30.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.9,"run_ms":23.99,"idle_ms":3.98,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":4.18,"run_ms":56.67,"idle_ms":16.36,"stall_ms":0.02,"io_percent":22.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.83,"run_ms":40.84,"idle_ms":15.23,"stall_ms":0.01,"io_percent":27.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.8,"run_ms":42.7,"idle_ms":20.67,"stall_ms":0.02,"io_percent":32.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.24,"run_ms":37.09,"idle_ms":17.04,"stall_ms":0.02,"io_percent":31.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":176.22,"idle_ms":84.59,"stall_ms":0.02,"io_percent":34.3,"method":"HEAD","action":"home#multi_tag"} | |
{"gc_ms":1.39,"run_ms":49.97,"idle_ms":12.43,"stall_ms":0.01,"io_percent":15.4,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":33.65,"idle_ms":2.72,"stall_ms":0.01,"io_percent":7.9,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":1.19,"run_ms":43.01,"idle_ms":13.1,"stall_ms":120.33,"io_percent":7.6,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":128.36,"idle_ms":25.24,"stall_ms":0.02,"io_percent":14.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":38.36,"idle_ms":3.42,"stall_ms":0.01,"io_percent":6.7,"method":"HEAD","action":"home#active"} | |
{"gc_ms":0.0,"run_ms":33.31,"idle_ms":9.51,"stall_ms":0.07,"io_percent":21.0,"method":"HEAD","action":"comments#index"} | |
{"gc_ms":0.0,"run_ms":5.77,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.85,"run_ms":36.86,"idle_ms":17.28,"stall_ms":0.01,"io_percent":33.0,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":0.32,"run_ms":17.95,"idle_ms":3.29,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":10.62,"idle_ms":1.77,"stall_ms":0.0,"io_percent":14.3,"method":"GET","action":"users#show"} | |
{"gc_ms":1.07,"run_ms":42.66,"idle_ms":20.59,"stall_ms":81.34,"io_percent":14.1,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":1.02,"run_ms":52.66,"idle_ms":18.63,"stall_ms":0.01,"io_percent":22.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.35,"idle_ms":2.16,"stall_ms":0.0,"io_percent":24.2,"method":"GET"} | |
{"gc_ms":0.6,"run_ms":19.58,"idle_ms":3.01,"stall_ms":0.01,"io_percent":11.6,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.33,"run_ms":12.58,"idle_ms":2.66,"stall_ms":0.0,"io_percent":17.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.96,"run_ms":19.32,"idle_ms":3.73,"stall_ms":0.01,"io_percent":15.5,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":9.97,"idle_ms":3.7,"stall_ms":0.0,"io_percent":19.7,"method":"HEAD","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":39.51,"idle_ms":16.87,"stall_ms":0.01,"io_percent":30.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.32,"run_ms":23.83,"idle_ms":3.52,"stall_ms":0.01,"io_percent":13.1,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.23,"run_ms":16.82,"idle_ms":2.98,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":82.08,"idle_ms":709.84,"stall_ms":114.49,"io_percent":78.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":43.38,"idle_ms":9.58,"stall_ms":0.04,"io_percent":18.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":10.08,"idle_ms":0.6,"stall_ms":0.0,"io_percent":5.6,"method":"HEAD","action":"login#index"} | |
{"gc_ms":1.43,"run_ms":26.18,"idle_ms":3.73,"stall_ms":1.03,"io_percent":10.7,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":28.79,"idle_ms":10.89,"stall_ms":0.01,"io_percent":27.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.39,"run_ms":11.49,"idle_ms":3.51,"stall_ms":0.0,"io_percent":18.1,"method":"GET","action":"stories#new"} | |
{"gc_ms":1.78,"run_ms":31.03,"idle_ms":6.17,"stall_ms":0.01,"io_percent":15.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":13.55,"run_ms":147.65,"idle_ms":82.73,"stall_ms":0.03,"io_percent":38.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":13.21,"run_ms":178.84,"idle_ms":37.68,"stall_ms":0.02,"io_percent":18.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.3,"run_ms":10.62,"idle_ms":0.59,"stall_ms":0.0,"io_percent":4.4,"method":"GET","action":"login#index"} | |
{"gc_ms":73.03,"run_ms":197.48,"idle_ms":820.8,"stall_ms":0.03,"io_percent":81.8,"method":"HEAD","action":"home#recent"} | |
{"gc_ms":1.66,"run_ms":36.88,"idle_ms":19.47,"stall_ms":0.01,"io_percent":34.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.08,"run_ms":30.51,"idle_ms":9.87,"stall_ms":83.5,"io_percent":8.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.24,"run_ms":66.08,"idle_ms":75.61,"stall_ms":0.02,"io_percent":53.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.47,"idle_ms":3.8,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.47,"run_ms":16.72,"idle_ms":3.69,"stall_ms":0.01,"io_percent":17.9,"method":"GET","action":"home#index"} | |
{"gc_ms":14.67,"run_ms":33.44,"idle_ms":2.99,"stall_ms":0.01,"io_percent":8.8,"method":"GET","action":"home#index"} | |
{"gc_ms":3.75,"run_ms":116.55,"idle_ms":61.53,"stall_ms":80.8,"io_percent":24.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.27,"run_ms":18.71,"idle_ms":5.41,"stall_ms":0.18,"io_percent":17.3,"method":"GET","action":"tags#index"} | |
{"gc_ms":1.11,"run_ms":27.46,"idle_ms":5.54,"stall_ms":0.25,"io_percent":13.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.38,"run_ms":31.69,"idle_ms":7.8,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.46,"run_ms":24.37,"idle_ms":12.22,"stall_ms":0.01,"io_percent":33.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":36.76,"idle_ms":15.85,"stall_ms":0.41,"io_percent":29.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":33.21,"idle_ms":17.06,"stall_ms":0.01,"io_percent":34.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":22.64,"idle_ms":3.59,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":4.85,"run_ms":56.81,"idle_ms":4.27,"stall_ms":0.01,"io_percent":7.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":43.52,"idle_ms":3.85,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.04,"run_ms":137.64,"idle_ms":47.95,"stall_ms":0.66,"io_percent":24.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":32.32,"idle_ms":10.42,"stall_ms":0.09,"io_percent":15.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":54.84,"idle_ms":40.57,"stall_ms":0.02,"io_percent":29.1,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":4.96,"run_ms":79.58,"idle_ms":41.11,"stall_ms":0.06,"io_percent":21.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.4,"run_ms":50.14,"idle_ms":24.24,"stall_ms":0.07,"io_percent":18.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.28,"run_ms":9.1,"idle_ms":7.37,"stall_ms":0.01,"io_percent":39.4,"method":"HEAD","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":130.88,"idle_ms":115.92,"stall_ms":0.06,"io_percent":41.8,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":53.13,"run_ms":228.96,"idle_ms":104.01,"stall_ms":0.03,"io_percent":24.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.45,"run_ms":157.53,"idle_ms":49.71,"stall_ms":0.11,"io_percent":18.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.13,"run_ms":93.17,"idle_ms":58.4,"stall_ms":0.04,"io_percent":31.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":21.83,"idle_ms":4.73,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":41.47,"idle_ms":14.08,"stall_ms":0.01,"io_percent":19.5,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":13.99,"idle_ms":0.7,"stall_ms":0.0,"io_percent":3.5,"method":"HEAD","action":"login#index"} | |
{"gc_ms":0.24,"run_ms":6.22,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.4,"idle_ms":2.16,"stall_ms":0.0,"io_percent":14.9,"method":"GET"} | |
{"gc_ms":0.21,"run_ms":14.04,"idle_ms":11.71,"stall_ms":0.4,"io_percent":38.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":17.5,"idle_ms":6.43,"stall_ms":0.0,"io_percent":10.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.57,"run_ms":163.66,"idle_ms":105.09,"stall_ms":113.5,"io_percent":28.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":14.41,"run_ms":182.62,"idle_ms":73.93,"stall_ms":153.33,"io_percent":18.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.52,"run_ms":29.51,"idle_ms":3.39,"stall_ms":0.01,"io_percent":7.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.18,"idle_ms":0.88,"stall_ms":0.0,"io_percent":6.2,"method":"GET","action":"stories#new"} | |
{"gc_ms":13.21,"run_ms":153.3,"idle_ms":55.38,"stall_ms":0.03,"io_percent":29.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":21.59,"idle_ms":5.55,"stall_ms":0.01,"io_percent":20.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.78,"run_ms":6.99,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.2,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.77,"run_ms":11.06,"idle_ms":1.53,"stall_ms":0.0,"io_percent":12.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":8.83,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.62,"run_ms":11.33,"idle_ms":1.3,"stall_ms":0.0,"io_percent":10.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.5,"run_ms":71.78,"idle_ms":164.8,"stall_ms":0.02,"io_percent":68.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":42.12,"idle_ms":15.92,"stall_ms":0.02,"io_percent":27.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.63,"idle_ms":0.85,"stall_ms":0.0,"io_percent":5.4,"method":"GET","action":"login#index"} | |
{"gc_ms":1.02,"run_ms":25.39,"idle_ms":11.39,"stall_ms":90.75,"io_percent":9.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":23.46,"idle_ms":3.95,"stall_ms":0.02,"io_percent":15.2,"method":"GET","action":"home#index"} | |
{"gc_ms":6.33,"run_ms":25.31,"idle_ms":2.98,"stall_ms":91.76,"io_percent":2.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.96,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":4.94,"run_ms":15.41,"idle_ms":2.0,"stall_ms":0.0,"io_percent":11.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":9.95,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.54,"run_ms":12.52,"idle_ms":1.8,"stall_ms":0.0,"io_percent":11.3,"method":"GET","action":"users#show"} | |
{"gc_ms":2.58,"run_ms":22.31,"idle_ms":5.69,"stall_ms":0.01,"io_percent":22.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.08,"run_ms":35.2,"idle_ms":25.06,"stall_ms":0.12,"io_percent":38.9,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":1.02,"run_ms":20.7,"idle_ms":3.45,"stall_ms":101.22,"io_percent":2.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":27.96,"idle_ms":18.2,"stall_ms":121.49,"io_percent":10.9,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":13.15,"idle_ms":1.86,"stall_ms":0.0,"io_percent":10.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.24,"run_ms":22.95,"idle_ms":3.44,"stall_ms":0.01,"io_percent":14.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.9,"run_ms":44.66,"idle_ms":3.21,"stall_ms":0.01,"io_percent":6.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.2,"run_ms":122.49,"idle_ms":32.74,"stall_ms":0.03,"io_percent":24.0,"method":"GET","action":"home#top"} | |
{"gc_ms":1.94,"run_ms":34.86,"idle_ms":4.08,"stall_ms":102.85,"io_percent":3.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.63,"run_ms":24.68,"idle_ms":3.69,"stall_ms":0.01,"io_percent":12.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.29,"run_ms":40.72,"idle_ms":4.25,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":7.56,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.71,"idle_ms":1.8,"stall_ms":0.0,"io_percent":11.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":24.76,"idle_ms":4.98,"stall_ms":0.01,"io_percent":16.7,"method":"HEAD","action":"home#index"} | |
{"gc_ms":2.19,"run_ms":26.22,"idle_ms":3.66,"stall_ms":0.01,"io_percent":13.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.29,"run_ms":44.51,"idle_ms":10.34,"stall_ms":108.63,"io_percent":6.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.04,"idle_ms":0.21,"stall_ms":0.26,"io_percent":1.3,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":10.44,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.25,"idle_ms":1.74,"stall_ms":0.0,"io_percent":7.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":11.76,"idle_ms":1.89,"stall_ms":0.0,"io_percent":10.7,"method":"HEAD","action":"users#show"} | |
{"gc_ms":8.45,"run_ms":32.76,"idle_ms":5.11,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":37.92,"idle_ms":4.6,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.34,"idle_ms":6.08,"stall_ms":0.01,"io_percent":24.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.22,"run_ms":21.68,"idle_ms":4.17,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":30.68,"idle_ms":6.26,"stall_ms":0.15,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.39,"run_ms":48.54,"idle_ms":8.67,"stall_ms":0.01,"io_percent":13.3,"method":"GET","action":"home#index"} | |
{"gc_ms":6.27,"run_ms":40.12,"idle_ms":17.37,"stall_ms":0.01,"io_percent":25.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":116.68,"idle_ms":27.65,"stall_ms":0.02,"io_percent":14.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.61,"run_ms":24.44,"idle_ms":4.13,"stall_ms":0.01,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":3.6,"run_ms":128.32,"idle_ms":37.14,"stall_ms":0.12,"io_percent":21.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":9.99,"run_ms":183.67,"idle_ms":62.97,"stall_ms":0.11,"io_percent":21.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":11.59,"run_ms":60.91,"idle_ms":20.4,"stall_ms":0.01,"io_percent":23.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":23.83,"idle_ms":4.93,"stall_ms":0.01,"io_percent":17.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":24.52,"idle_ms":19.63,"stall_ms":0.01,"io_percent":32.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.8,"run_ms":67.2,"idle_ms":17.88,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.86,"run_ms":40.82,"idle_ms":15.25,"stall_ms":0.01,"io_percent":23.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.79,"run_ms":18.82,"idle_ms":5.96,"stall_ms":0.01,"io_percent":20.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.75,"run_ms":19.7,"idle_ms":4.49,"stall_ms":0.01,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.89,"run_ms":44.23,"idle_ms":15.96,"stall_ms":0.01,"io_percent":18.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.36,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":2.01,"run_ms":13.09,"idle_ms":2.03,"stall_ms":0.0,"io_percent":11.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":26.95,"idle_ms":10.65,"stall_ms":0.01,"io_percent":28.6,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.75,"run_ms":10.38,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.7,"run_ms":13.9,"idle_ms":1.46,"stall_ms":0.0,"io_percent":5.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":32.01,"idle_ms":23.57,"stall_ms":0.01,"io_percent":33.1,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":39.16,"idle_ms":28.41,"stall_ms":0.01,"io_percent":34.2,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":54.33,"idle_ms":14.46,"stall_ms":0.02,"io_percent":13.3,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":17.19,"idle_ms":2.6,"stall_ms":0.0,"io_percent":10.0,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.75,"run_ms":31.3,"idle_ms":12.02,"stall_ms":0.01,"io_percent":21.4,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":1.2,"run_ms":28.6,"idle_ms":13.44,"stall_ms":0.01,"io_percent":28.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":30.65,"idle_ms":13.65,"stall_ms":0.01,"io_percent":31.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.16,"run_ms":63.65,"idle_ms":15.07,"stall_ms":0.01,"io_percent":18.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":26.88,"idle_ms":9.94,"stall_ms":0.01,"io_percent":27.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.46,"idle_ms":4.5,"stall_ms":0.01,"io_percent":17.6,"method":"GET","action":"home#index"} | |
{"gc_ms":7.58,"run_ms":23.4,"idle_ms":2.85,"stall_ms":0.01,"io_percent":10.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.5,"run_ms":41.23,"idle_ms":12.34,"stall_ms":0.02,"io_percent":20.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.01,"run_ms":9.59,"idle_ms":3.2,"stall_ms":0.0,"io_percent":21.1,"method":"GET"} | |
{"gc_ms":0.45,"run_ms":7.59,"idle_ms":8.47,"stall_ms":0.04,"io_percent":47.1,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":27.89,"idle_ms":8.68,"stall_ms":0.02,"io_percent":21.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.44,"run_ms":55.51,"idle_ms":17.29,"stall_ms":0.02,"io_percent":23.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.66,"run_ms":23.98,"idle_ms":2.82,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"home#index"} | |
{"gc_ms":3.5,"run_ms":120.45,"idle_ms":27.35,"stall_ms":0.02,"io_percent":19.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":35.87,"idle_ms":3.66,"stall_ms":0.01,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.94,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.44,"run_ms":11.83,"idle_ms":1.56,"stall_ms":0.0,"io_percent":11.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.26,"run_ms":10.28,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.27,"run_ms":16.21,"idle_ms":2.12,"stall_ms":0.0,"io_percent":9.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.28,"run_ms":16.11,"idle_ms":0.18,"stall_ms":0.04,"io_percent":0.6,"method":"GET"} | |
{"gc_ms":0.25,"run_ms":14.17,"idle_ms":2.29,"stall_ms":0.0,"io_percent":11.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":15.04,"idle_ms":2.01,"stall_ms":0.0,"io_percent":9.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":8.14,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.02,"idle_ms":1.95,"stall_ms":0.0,"io_percent":10.3,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.41,"run_ms":13.48,"idle_ms":2.0,"stall_ms":0.0,"io_percent":10.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.66,"run_ms":12.59,"idle_ms":1.98,"stall_ms":0.0,"io_percent":11.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":72.23,"idle_ms":72.68,"stall_ms":0.02,"io_percent":44.7,"method":"GET","action":"home#index"} | |
{"gc_ms":6.21,"run_ms":45.56,"idle_ms":15.25,"stall_ms":0.01,"io_percent":24.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.74,"run_ms":40.61,"idle_ms":29.15,"stall_ms":0.01,"io_percent":39.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.18,"run_ms":27.94,"idle_ms":16.03,"stall_ms":0.01,"io_percent":33.0,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":1.96,"run_ms":31.26,"idle_ms":20.89,"stall_ms":0.01,"io_percent":38.2,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.26,"run_ms":19.32,"idle_ms":3.83,"stall_ms":0.01,"io_percent":12.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":42.26,"idle_ms":18.6,"stall_ms":0.01,"io_percent":26.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.97,"idle_ms":2.82,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.77,"idle_ms":0.64,"stall_ms":0.0,"io_percent":6.2,"method":"HEAD"} | |
{"gc_ms":9.48,"run_ms":58.55,"idle_ms":15.46,"stall_ms":0.01,"io_percent":19.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.17,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.91,"run_ms":13.24,"idle_ms":1.91,"stall_ms":0.0,"io_percent":12.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.39,"run_ms":22.46,"idle_ms":3.93,"stall_ms":0.07,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.21,"run_ms":15.92,"idle_ms":3.25,"stall_ms":0.05,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":35.52,"idle_ms":9.25,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":11.47,"run_ms":43.63,"idle_ms":6.67,"stall_ms":98.55,"io_percent":4.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.65,"idle_ms":0.94,"stall_ms":0.0,"io_percent":11.0,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.38,"run_ms":16.84,"idle_ms":2.72,"stall_ms":0.01,"io_percent":16.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.56,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.39,"run_ms":13.18,"idle_ms":2.43,"stall_ms":0.0,"io_percent":15.7,"method":"GET","action":"users#show"} | |
{"gc_ms":6.89,"run_ms":179.3,"idle_ms":82.41,"stall_ms":0.04,"io_percent":35.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":34.16,"idle_ms":4.05,"stall_ms":0.01,"io_percent":11.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.1,"run_ms":61.47,"idle_ms":22.17,"stall_ms":0.03,"io_percent":26.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":20.16,"idle_ms":3.18,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.05,"run_ms":30.49,"idle_ms":6.13,"stall_ms":0.01,"io_percent":20.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":107.19,"idle_ms":89.87,"stall_ms":0.03,"io_percent":45.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":41.41,"idle_ms":16.81,"stall_ms":0.01,"io_percent":29.5,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":48.36,"idle_ms":17.07,"stall_ms":0.02,"io_percent":26.1,"method":"HEAD","action":"home#for_origin"} | |
{"gc_ms":1.94,"run_ms":34.41,"idle_ms":14.89,"stall_ms":0.01,"io_percent":30.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.15,"run_ms":47.07,"idle_ms":13.96,"stall_ms":0.02,"io_percent":23.1,"method":"HEAD","action":"home#for_origin"} | |
{"gc_ms":0.0,"run_ms":8.15,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.69,"run_ms":22.82,"idle_ms":5.0,"stall_ms":0.01,"io_percent":17.3,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":0.0,"run_ms":23.67,"idle_ms":4.46,"stall_ms":0.01,"io_percent":16.1,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":0.0,"run_ms":32.1,"idle_ms":13.56,"stall_ms":0.01,"io_percent":30.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":12.31,"idle_ms":0.73,"stall_ms":0.0,"io_percent":5.6,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":50.52,"idle_ms":18.21,"stall_ms":0.02,"io_percent":26.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.29,"idle_ms":1.93,"stall_ms":0.0,"io_percent":10.7,"method":"HEAD","action":"users#show"} | |
{"gc_ms":4.15,"run_ms":45.27,"idle_ms":11.03,"stall_ms":0.01,"io_percent":19.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.56,"run_ms":20.7,"idle_ms":3.22,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":4.69,"run_ms":43.94,"idle_ms":4.83,"stall_ms":0.01,"io_percent":10.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.26,"run_ms":18.63,"idle_ms":3.04,"stall_ms":0.02,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":5.15,"run_ms":42.98,"idle_ms":3.69,"stall_ms":0.01,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.24,"run_ms":20.2,"idle_ms":3.52,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.4,"run_ms":24.77,"idle_ms":8.22,"stall_ms":0.01,"io_percent":25.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.22,"run_ms":8.32,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.4,"method":"HEAD"} | |
{"gc_ms":0.3,"run_ms":33.4,"idle_ms":8.27,"stall_ms":0.01,"io_percent":20.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.4,"run_ms":32.26,"idle_ms":10.02,"stall_ms":0.01,"io_percent":21.7,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.65,"run_ms":10.77,"idle_ms":0.78,"stall_ms":0.25,"io_percent":6.5,"method":"GET"} | |
{"gc_ms":1.34,"run_ms":46.9,"idle_ms":21.34,"stall_ms":0.01,"io_percent":31.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.86,"run_ms":62.94,"idle_ms":10.0,"stall_ms":0.01,"io_percent":13.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.32,"run_ms":18.06,"idle_ms":2.11,"stall_ms":0.0,"io_percent":5.3,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":8.78,"idle_ms":3.33,"stall_ms":0.0,"io_percent":27.0,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.4,"run_ms":9.87,"idle_ms":0.98,"stall_ms":0.0,"io_percent":9.1,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.93,"run_ms":8.35,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":2.95,"run_ms":39.61,"idle_ms":15.89,"stall_ms":0.01,"io_percent":28.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":12.14,"idle_ms":3.37,"stall_ms":0.0,"io_percent":22.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.54,"idle_ms":1.83,"stall_ms":0.0,"io_percent":17.2,"method":"GET","action":"users#show"} | |
{"gc_ms":2.39,"run_ms":43.95,"idle_ms":16.53,"stall_ms":0.02,"io_percent":27.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.99,"idle_ms":2.77,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.41,"run_ms":18.21,"idle_ms":3.02,"stall_ms":0.02,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":5.23,"run_ms":14.88,"idle_ms":0.73,"stall_ms":0.0,"io_percent":4.7,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":22.99,"idle_ms":6.95,"stall_ms":0.01,"io_percent":22.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.76,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":6.15,"run_ms":133.31,"idle_ms":36.4,"stall_ms":0.02,"io_percent":24.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.0,"run_ms":25.97,"idle_ms":6.95,"stall_ms":0.01,"io_percent":20.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.75,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":30.17,"idle_ms":31.32,"stall_ms":63.38,"io_percent":25.7,"method":"POST","action":"comments#upvote"} | |
{"gc_ms":0.48,"run_ms":9.85,"idle_ms":2.09,"stall_ms":1.45,"io_percent":15.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":14.89,"idle_ms":2.74,"stall_ms":0.01,"io_percent":18.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":53.23,"idle_ms":67.15,"stall_ms":0.01,"io_percent":55.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.44,"idle_ms":2.81,"stall_ms":0.01,"io_percent":19.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.03,"idle_ms":5.19,"stall_ms":0.0,"io_percent":27.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.49,"idle_ms":6.1,"stall_ms":0.01,"io_percent":24.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":11.35,"run_ms":112.72,"idle_ms":143.3,"stall_ms":0.02,"io_percent":60.6,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":2.41,"run_ms":35.01,"idle_ms":4.48,"stall_ms":61.96,"io_percent":4.7,"method":"GET","action":"home#index"} | |
{"gc_ms":6.3,"run_ms":38.92,"idle_ms":3.39,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.31,"run_ms":15.85,"idle_ms":2.93,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.44,"run_ms":10.86,"idle_ms":6.12,"stall_ms":0.0,"io_percent":36.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.68,"run_ms":5.49,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.53,"run_ms":8.83,"idle_ms":2.19,"stall_ms":70.84,"io_percent":2.8,"method":"GET","action":"users#show"} | |
{"gc_ms":1.95,"run_ms":32.75,"idle_ms":13.75,"stall_ms":0.01,"io_percent":31.1,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":1.06,"run_ms":31.71,"idle_ms":3.54,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.23,"run_ms":8.17,"idle_ms":0.58,"stall_ms":0.0,"io_percent":6.7,"method":"HEAD"} | |
{"gc_ms":1.36,"run_ms":21.32,"idle_ms":11.47,"stall_ms":0.01,"io_percent":35.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.53,"run_ms":14.73,"idle_ms":2.82,"stall_ms":0.01,"io_percent":19.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.19,"run_ms":24.86,"idle_ms":10.86,"stall_ms":0.01,"io_percent":30.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.37,"run_ms":39.81,"idle_ms":15.75,"stall_ms":0.01,"io_percent":28.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":106.87,"idle_ms":68.28,"stall_ms":0.02,"io_percent":45.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.36,"run_ms":22.32,"idle_ms":4.21,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.23,"run_ms":25.16,"idle_ms":7.01,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.04,"run_ms":42.39,"idle_ms":13.51,"stall_ms":0.01,"io_percent":24.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":19.53,"idle_ms":8.19,"stall_ms":0.01,"io_percent":29.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":31.67,"idle_ms":10.68,"stall_ms":0.01,"io_percent":25.4,"method":"HEAD","action":"comments#user_threads"} | |
{"gc_ms":0.61,"run_ms":32.5,"idle_ms":14.59,"stall_ms":0.01,"io_percent":29.3,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":7.68,"run_ms":120.48,"idle_ms":107.89,"stall_ms":0.02,"io_percent":48.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.33,"run_ms":10.63,"idle_ms":1.6,"stall_ms":0.0,"io_percent":10.2,"method":"GET","action":"users#show"} | |
{"gc_ms":2.04,"run_ms":20.46,"idle_ms":3.17,"stall_ms":72.04,"io_percent":3.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.1,"run_ms":24.03,"idle_ms":6.59,"stall_ms":0.01,"io_percent":21.7,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.27,"run_ms":15.38,"idle_ms":3.44,"stall_ms":0.0,"io_percent":18.8,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":1.32,"run_ms":32.44,"idle_ms":11.16,"stall_ms":0.01,"io_percent":25.8,"method":"HEAD","action":"home#for_origin"} | |
{"gc_ms":0.22,"run_ms":15.68,"idle_ms":2.75,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.09,"run_ms":20.48,"idle_ms":7.86,"stall_ms":83.47,"io_percent":7.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":25.9,"idle_ms":9.44,"stall_ms":0.01,"io_percent":25.7,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":0.47,"run_ms":15.85,"idle_ms":3.13,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.48,"idle_ms":3.77,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":0.0,"run_ms":13.39,"idle_ms":3.12,"stall_ms":0.0,"io_percent":19.1,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":11.23,"idle_ms":5.88,"stall_ms":0.0,"io_percent":32.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.86,"idle_ms":2.89,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.28,"idle_ms":2.65,"stall_ms":0.01,"io_percent":11.3,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":42.82,"idle_ms":4.07,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.67,"idle_ms":2.87,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.31,"run_ms":12.19,"idle_ms":5.83,"stall_ms":0.01,"io_percent":32.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":32.43,"idle_ms":3.98,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.74,"idle_ms":3.06,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.27,"run_ms":17.67,"idle_ms":5.42,"stall_ms":76.86,"io_percent":5.9,"method":"GET","action":"home#index"} | |
{"gc_ms":7.82,"run_ms":115.37,"idle_ms":51.41,"stall_ms":0.02,"io_percent":36.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":14.58,"idle_ms":5.58,"stall_ms":0.0,"io_percent":28.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":30.81,"idle_ms":2.53,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#newest"} | |
{"gc_ms":7.01,"run_ms":32.61,"idle_ms":3.22,"stall_ms":0.01,"io_percent":9.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.06,"run_ms":35.28,"idle_ms":13.53,"stall_ms":0.01,"io_percent":27.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.24,"run_ms":90.4,"idle_ms":18.5,"stall_ms":0.03,"io_percent":17.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.19,"run_ms":45.88,"idle_ms":16.85,"stall_ms":0.01,"io_percent":26.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":32.59,"idle_ms":3.46,"stall_ms":0.05,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.82,"run_ms":102.57,"idle_ms":2599.22,"stall_ms":0.02,"io_percent":96.8,"method":"GET","action":"home#active"} | |
{"gc_ms":0.81,"run_ms":31.58,"idle_ms":14.27,"stall_ms":0.01,"io_percent":31.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.42,"run_ms":33.96,"idle_ms":14.0,"stall_ms":0.01,"io_percent":29.5,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":11.13,"idle_ms":5.85,"stall_ms":0.0,"io_percent":34.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.28,"run_ms":15.17,"idle_ms":3.0,"stall_ms":0.01,"io_percent":19.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.27,"idle_ms":10.51,"stall_ms":0.01,"io_percent":20.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":27.91,"idle_ms":2.4,"stall_ms":0.0,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":4.39,"run_ms":19.23,"idle_ms":2.77,"stall_ms":0.01,"io_percent":14.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.16,"idle_ms":2.9,"stall_ms":0.01,"io_percent":19.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.5,"run_ms":12.71,"idle_ms":5.02,"stall_ms":0.0,"io_percent":28.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":34.4,"idle_ms":39.93,"stall_ms":0.01,"io_percent":54.1,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":26.91,"idle_ms":9.87,"stall_ms":0.01,"io_percent":27.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.27,"run_ms":21.63,"idle_ms":9.87,"stall_ms":0.01,"io_percent":31.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.87,"idle_ms":2.68,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.84,"run_ms":18.91,"idle_ms":2.92,"stall_ms":0.01,"io_percent":15.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":28.35,"idle_ms":7.98,"stall_ms":0.01,"io_percent":22.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.5,"idle_ms":0.06,"stall_ms":65.68,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":31.44,"idle_ms":3.4,"stall_ms":0.01,"io_percent":10.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.17,"idle_ms":2.87,"stall_ms":0.01,"io_percent":18.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.23,"idle_ms":1.69,"stall_ms":0.0,"io_percent":15.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":22.05,"idle_ms":10.44,"stall_ms":0.01,"io_percent":29.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.77,"idle_ms":2.72,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":24.97,"idle_ms":2.9,"stall_ms":62.18,"io_percent":3.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":53.88,"idle_ms":16.96,"stall_ms":0.01,"io_percent":24.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.68,"idle_ms":3.56,"stall_ms":0.01,"io_percent":20.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.89,"idle_ms":2.67,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.33,"run_ms":7.26,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.57,"idle_ms":1.84,"stall_ms":0.0,"io_percent":16.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":11.21,"idle_ms":5.6,"stall_ms":0.0,"io_percent":33.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":17.52,"idle_ms":8.04,"stall_ms":0.01,"io_percent":31.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.53,"run_ms":28.28,"idle_ms":12.37,"stall_ms":0.01,"io_percent":30.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":36.44,"run_ms":94.79,"idle_ms":250.7,"stall_ms":66.39,"io_percent":61.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.2,"idle_ms":2.81,"stall_ms":0.0,"io_percent":20.1,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":12.46,"run_ms":117.18,"idle_ms":77.33,"stall_ms":0.04,"io_percent":45.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":6.48,"run_ms":18.44,"idle_ms":3.14,"stall_ms":0.0,"io_percent":9.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":45.62,"idle_ms":16.38,"stall_ms":0.01,"io_percent":22.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.04,"run_ms":34.95,"idle_ms":14.94,"stall_ms":0.01,"io_percent":30.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.87,"run_ms":16.87,"idle_ms":5.27,"stall_ms":0.15,"io_percent":22.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.27,"run_ms":6.84,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.21,"run_ms":12.18,"idle_ms":3.55,"stall_ms":0.0,"io_percent":22.5,"method":"GET","action":"users#show"} | |
{"gc_ms":7.42,"run_ms":20.69,"idle_ms":6.39,"stall_ms":0.0,"io_percent":23.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.9,"run_ms":30.6,"idle_ms":3.36,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.81,"run_ms":21.36,"idle_ms":3.28,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.97,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.98,"idle_ms":1.49,"stall_ms":0.0,"io_percent":11.0,"method":"GET","action":"users#show"} | |
{"gc_ms":2.51,"run_ms":86.88,"idle_ms":72.2,"stall_ms":0.14,"io_percent":46.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":6.23,"idle_ms":0.05,"stall_ms":0.0,"io_percent":0.8,"method":"GET"} | |
{"gc_ms":12.15,"run_ms":22.79,"idle_ms":1.43,"stall_ms":0.0,"io_percent":5.9,"method":"GET","action":"users#show"} | |
{"gc_ms":7.25,"run_ms":39.77,"idle_ms":13.97,"stall_ms":67.13,"io_percent":12.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.8,"run_ms":18.08,"idle_ms":3.0,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":14.86,"run_ms":33.0,"idle_ms":2.79,"stall_ms":0.01,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.7,"run_ms":33.33,"idle_ms":7.24,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.21,"idle_ms":2.74,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.05,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.71,"idle_ms":2.16,"stall_ms":170.89,"io_percent":1.2,"method":"GET","action":"users#show"} | |
{"gc_ms":2.21,"run_ms":40.05,"idle_ms":4.16,"stall_ms":0.02,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.54,"run_ms":36.95,"idle_ms":14.21,"stall_ms":0.01,"io_percent":27.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.69,"run_ms":43.48,"idle_ms":4.24,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":24.64,"idle_ms":3.83,"stall_ms":0.17,"io_percent":15.5,"method":"GET","action":"home#index"} | |
{"gc_ms":3.3,"run_ms":73.11,"idle_ms":319.81,"stall_ms":0.01,"io_percent":81.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":175.28,"idle_ms":34.3,"stall_ms":0.02,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":35.96,"idle_ms":9.48,"stall_ms":0.01,"io_percent":20.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":35.01,"idle_ms":3.75,"stall_ms":70.34,"io_percent":3.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":35.17,"idle_ms":3.71,"stall_ms":0.01,"io_percent":10.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":38.25,"idle_ms":7.68,"stall_ms":0.14,"io_percent":16.8,"method":"HEAD","action":"comments#index"} | |
{"gc_ms":7.48,"run_ms":32.39,"idle_ms":9.62,"stall_ms":0.01,"io_percent":23.1,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":30.0,"idle_ms":9.92,"stall_ms":0.01,"io_percent":25.1,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.42,"run_ms":30.97,"idle_ms":11.74,"stall_ms":0.01,"io_percent":27.8,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":1.35,"run_ms":26.24,"idle_ms":8.89,"stall_ms":0.01,"io_percent":25.5,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.34,"run_ms":5.87,"idle_ms":0.0,"stall_ms":4.44,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":22.33,"idle_ms":3.72,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":2.12,"run_ms":18.23,"idle_ms":2.96,"stall_ms":82.69,"io_percent":3.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.83,"idle_ms":3.05,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.97,"idle_ms":2.91,"stall_ms":0.31,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.56,"run_ms":24.49,"idle_ms":10.06,"stall_ms":0.01,"io_percent":29.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":10.67,"run_ms":78.56,"idle_ms":21.44,"stall_ms":0.02,"io_percent":21.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.58,"run_ms":47.96,"idle_ms":3.67,"stall_ms":0.01,"io_percent":7.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.89,"idle_ms":2.76,"stall_ms":0.01,"io_percent":18.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":35.4,"idle_ms":10.4,"stall_ms":0.01,"io_percent":23.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":26.81,"idle_ms":4.21,"stall_ms":0.01,"io_percent":15.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.61,"run_ms":45.38,"idle_ms":52.44,"stall_ms":0.01,"io_percent":53.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":25.61,"idle_ms":10.04,"stall_ms":0.01,"io_percent":28.6,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.3,"run_ms":8.92,"idle_ms":0.61,"stall_ms":0.0,"io_percent":6.5,"method":"GET","action":"login#index"} | |
{"gc_ms":0.55,"run_ms":21.36,"idle_ms":9.65,"stall_ms":0.01,"io_percent":31.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.81,"idle_ms":2.77,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.69,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":20.02,"run_ms":43.68,"idle_ms":3.88,"stall_ms":0.01,"io_percent":8.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":36.91,"idle_ms":4.18,"stall_ms":0.07,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.49,"run_ms":45.93,"idle_ms":12.53,"stall_ms":0.02,"io_percent":21.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":23.57,"run_ms":75.97,"idle_ms":18.32,"stall_ms":0.39,"io_percent":19.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.61,"run_ms":53.2,"idle_ms":5.64,"stall_ms":0.01,"io_percent":10.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.4,"idle_ms":230.56,"stall_ms":0.0,"io_percent":94.2,"method":"GET","action":"home#newest"} | |
{"gc_ms":12.2,"run_ms":89.2,"idle_ms":1180.77,"stall_ms":0.03,"io_percent":92.9,"method":"GET","action":"home#recent"} | |
{"gc_ms":0.0,"run_ms":21.1,"idle_ms":0.96,"stall_ms":0.2,"io_percent":4.4,"method":"GET"} | |
{"gc_ms":0.95,"run_ms":28.71,"idle_ms":1.01,"stall_ms":0.01,"io_percent":3.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":431.66,"idle_ms":424.18,"stall_ms":88.52,"io_percent":80.5,"method":"POST","action":"login#login"} | |
{"gc_ms":0.35,"run_ms":42.35,"idle_ms":5.68,"stall_ms":0.01,"io_percent":13.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.46,"idle_ms":5.55,"stall_ms":0.01,"io_percent":22.1,"method":"GET"} | |
{"gc_ms":7.34,"run_ms":181.58,"idle_ms":57.05,"stall_ms":0.43,"io_percent":25.0,"method":"GET","action":"home#index"} | |
{"gc_ms":4.37,"run_ms":226.85,"idle_ms":24.8,"stall_ms":0.04,"io_percent":9.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":37.67,"idle_ms":0.07,"stall_ms":0.06,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":45.31,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":4.53,"run_ms":372.08,"idle_ms":87.34,"stall_ms":0.34,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":55.62,"idle_ms":2.35,"stall_ms":0.01,"io_percent":3.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":54.47,"idle_ms":0.85,"stall_ms":0.0,"io_percent":1.5,"method":"GET","action":"stories#new"} | |
{"gc_ms":11.04,"run_ms":350.38,"idle_ms":30.86,"stall_ms":0.07,"io_percent":8.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":563.95,"idle_ms":65.65,"stall_ms":0.06,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.88,"run_ms":95.96,"idle_ms":14.91,"stall_ms":0.01,"io_percent":14.6,"method":"GET","action":"home#index"} | |
{"gc_ms":2.12,"run_ms":112.38,"idle_ms":8.38,"stall_ms":6.13,"io_percent":6.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":37.12,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":9.83,"run_ms":139.91,"idle_ms":11.6,"stall_ms":1.52,"io_percent":7.8,"method":"GET","action":"comments#index"} | |
{"gc_ms":4.98,"run_ms":110.84,"idle_ms":5.77,"stall_ms":0.0,"io_percent":2.7,"method":"GET","action":"users#show"} | |
{"gc_ms":8.2,"run_ms":174.03,"idle_ms":88.86,"stall_ms":3.6,"io_percent":31.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.59,"idle_ms":0.1,"stall_ms":0.02,"io_percent":0.5,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":13.6,"idle_ms":30.21,"stall_ms":136.64,"io_percent":13.1,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":15.89,"idle_ms":81.79,"stall_ms":207.52,"io_percent":25.1,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":14.56,"idle_ms":17.89,"stall_ms":215.26,"io_percent":6.5,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":133.2,"idle_ms":91.77,"stall_ms":128.76,"io_percent":18.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":58.22,"idle_ms":102.46,"stall_ms":275.76,"io_percent":19.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":155.43,"idle_ms":118.73,"stall_ms":51.84,"io_percent":18.7,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":42.44,"idle_ms":31.87,"stall_ms":198.44,"io_percent":7.8,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":122.82,"idle_ms":82.04,"stall_ms":54.88,"io_percent":17.0,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":159.15,"idle_ms":49.35,"stall_ms":1.44,"io_percent":9.4,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":78.41,"idle_ms":68.52,"stall_ms":186.53,"io_percent":13.1,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":7.16,"run_ms":191.85,"idle_ms":80.23,"stall_ms":41.09,"io_percent":13.3,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":5.97,"run_ms":52.78,"idle_ms":32.52,"stall_ms":904.67,"io_percent":3.3,"method":"HEAD"} | |
{"gc_ms":15.55,"run_ms":174.74,"idle_ms":184.65,"stall_ms":201.12,"io_percent":19.8,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":11.17,"run_ms":135.21,"idle_ms":40.26,"stall_ms":58.4,"io_percent":10.3,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":7.92,"run_ms":179.91,"idle_ms":97.86,"stall_ms":216.66,"io_percent":10.6,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":33.61,"run_ms":122.93,"idle_ms":87.72,"stall_ms":8.85,"io_percent":27.4,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":34.2,"run_ms":120.4,"idle_ms":64.97,"stall_ms":0.17,"io_percent":20.6,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":2.73,"run_ms":82.17,"idle_ms":50.95,"stall_ms":0.02,"io_percent":19.9,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":200.64,"idle_ms":95.76,"stall_ms":351.84,"io_percent":9.1,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":3.26,"run_ms":132.45,"idle_ms":191.9,"stall_ms":0.22,"io_percent":39.4,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":7.41,"run_ms":85.59,"idle_ms":12.49,"stall_ms":0.01,"io_percent":6.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":94.41,"idle_ms":88.23,"stall_ms":179.83,"io_percent":17.0,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":95.87,"idle_ms":182.58,"stall_ms":251.57,"io_percent":28.5,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":217.26,"idle_ms":184.67,"stall_ms":451.77,"io_percent":17.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":16.15,"run_ms":150.85,"idle_ms":11.88,"stall_ms":0.13,"io_percent":5.4,"method":"GET","action":"home#index"} | |
{"gc_ms":71.34,"run_ms":126.1,"idle_ms":104.28,"stall_ms":1099.01,"io_percent":7.5,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":71.34,"run_ms":268.38,"idle_ms":189.82,"stall_ms":794.94,"io_percent":11.8,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":313.83,"idle_ms":180.62,"stall_ms":282.82,"io_percent":17.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":31.22,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":5.64,"run_ms":144.08,"idle_ms":46.1,"stall_ms":0.05,"io_percent":24.3,"method":"POST","action":"comments#upvote"} | |
{"gc_ms":4.74,"run_ms":65.08,"idle_ms":5.76,"stall_ms":0.01,"io_percent":8.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":56.37,"idle_ms":0.05,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":4.78,"run_ms":286.98,"idle_ms":12.09,"stall_ms":3.46,"io_percent":4.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":87.64,"idle_ms":12.15,"stall_ms":0.01,"io_percent":12.0,"method":"GET","action":"users#show"} | |
{"gc_ms":6.19,"run_ms":91.26,"idle_ms":11.7,"stall_ms":0.01,"io_percent":10.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":257.17,"idle_ms":22.59,"stall_ms":0.04,"io_percent":8.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":14.11,"run_ms":240.71,"idle_ms":17.83,"stall_ms":0.04,"io_percent":6.8,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":68.25,"run_ms":214.35,"idle_ms":13.14,"stall_ms":494.19,"io_percent":1.9,"method":"GET","action":"home#index"} | |
{"gc_ms":72.89,"run_ms":138.62,"idle_ms":10.06,"stall_ms":178.59,"io_percent":3.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.91,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"HEAD"} | |
{"gc_ms":37.59,"run_ms":152.53,"idle_ms":29.3,"stall_ms":1.06,"io_percent":12.7,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":3.27,"run_ms":104.54,"idle_ms":35.73,"stall_ms":34.38,"io_percent":13.6,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.02,"idle_ms":7.26,"stall_ms":0.01,"io_percent":16.1,"method":"HEAD"} | |
{"gc_ms":5.05,"run_ms":13.78,"idle_ms":5.48,"stall_ms":0.01,"io_percent":12.2,"method":"HEAD"} | |
{"gc_ms":3.06,"run_ms":8.81,"idle_ms":10.3,"stall_ms":54.62,"io_percent":11.9,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":7.6,"idle_ms":1.77,"stall_ms":25.16,"io_percent":3.0,"method":"HEAD"} | |
{"gc_ms":9.96,"run_ms":151.09,"idle_ms":21.15,"stall_ms":40.85,"io_percent":6.9,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":3.34,"run_ms":8.56,"idle_ms":37.39,"stall_ms":27.09,"io_percent":47.1,"method":"HEAD"} | |
{"gc_ms":3.73,"run_ms":15.9,"idle_ms":5.81,"stall_ms":101.25,"io_percent":4.0,"method":"HEAD"} | |
{"gc_ms":3.03,"run_ms":19.26,"idle_ms":84.75,"stall_ms":181.79,"io_percent":28.0,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":9.4,"idle_ms":26.61,"stall_ms":300.68,"io_percent":7.4,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":123.68,"idle_ms":72.53,"stall_ms":6.63,"io_percent":18.5,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":1.28,"run_ms":83.55,"idle_ms":99.51,"stall_ms":20.48,"io_percent":25.9,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":3.8,"run_ms":144.79,"idle_ms":83.38,"stall_ms":86.91,"io_percent":13.9,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":11.39,"run_ms":174.25,"idle_ms":65.89,"stall_ms":59.83,"io_percent":10.9,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":10.95,"run_ms":138.57,"idle_ms":129.61,"stall_ms":85.33,"io_percent":27.8,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":9.17,"run_ms":101.07,"idle_ms":110.99,"stall_ms":133.19,"io_percent":24.6,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":12.72,"idle_ms":15.2,"stall_ms":0.02,"io_percent":34.8,"method":"HEAD"} | |
{"gc_ms":1.7,"run_ms":71.91,"idle_ms":43.53,"stall_ms":181.58,"io_percent":10.7,"method":"HEAD","action":"home#index"} | |
{"gc_ms":6.14,"run_ms":105.5,"idle_ms":28.02,"stall_ms":4.87,"io_percent":9.4,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":5.84,"run_ms":93.33,"idle_ms":66.48,"stall_ms":26.42,"io_percent":16.5,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":11.82,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"HEAD"} | |
{"gc_ms":18.09,"run_ms":101.92,"idle_ms":257.42,"stall_ms":236.82,"io_percent":34.4,"method":"POST","action":"stories#flag"} | |
{"gc_ms":19.25,"run_ms":197.22,"idle_ms":144.6,"stall_ms":366.1,"io_percent":16.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":24.27,"run_ms":171.45,"idle_ms":57.34,"stall_ms":184.58,"io_percent":8.5,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":1.27,"run_ms":21.24,"idle_ms":0.02,"stall_ms":137.29,"io_percent":0.0,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":136.39,"idle_ms":79.46,"stall_ms":102.72,"io_percent":15.7,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":9.83,"run_ms":89.99,"idle_ms":5.48,"stall_ms":0.02,"io_percent":2.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":98.17,"idle_ms":52.09,"stall_ms":5.46,"io_percent":12.5,"method":"HEAD","action":"home#index"} | |
{"gc_ms":1.93,"run_ms":119.93,"idle_ms":40.28,"stall_ms":404.2,"io_percent":5.9,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":9.71,"run_ms":113.75,"idle_ms":89.14,"stall_ms":313.61,"io_percent":11.7,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":16.14,"run_ms":182.55,"idle_ms":58.79,"stall_ms":2.36,"io_percent":9.5,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":37.26,"run_ms":297.22,"idle_ms":2454.31,"stall_ms":183.82,"io_percent":81.8,"method":"GET","action":"home#active"} | |
{"gc_ms":30.19,"run_ms":403.61,"idle_ms":198.79,"stall_ms":547.67,"io_percent":13.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":9.96,"run_ms":77.42,"idle_ms":40.75,"stall_ms":277.62,"io_percent":9.3,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":52.01,"idle_ms":3.9,"stall_ms":0.01,"io_percent":4.8,"method":"HEAD","action":"users#show"} | |
{"gc_ms":2.85,"run_ms":547.41,"idle_ms":159.83,"stall_ms":10.27,"io_percent":11.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":16.69,"run_ms":210.95,"idle_ms":91.53,"stall_ms":748.97,"io_percent":7.4,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":16.69,"run_ms":198.79,"idle_ms":86.04,"stall_ms":742.0,"io_percent":7.2,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":7.6,"run_ms":98.95,"idle_ms":13.87,"stall_ms":363.53,"io_percent":2.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.26,"idle_ms":2.97,"stall_ms":0.01,"io_percent":14.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":59.23,"idle_ms":3.44,"stall_ms":110.03,"io_percent":2.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":33.35,"idle_ms":3.84,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":14.19,"run_ms":129.18,"idle_ms":79.11,"stall_ms":0.06,"io_percent":40.4,"method":"GET","action":"home#category"} | |
{"gc_ms":20.4,"run_ms":168.57,"idle_ms":417.11,"stall_ms":0.15,"io_percent":72.2,"method":"GET","action":"home#category"} | |
{"gc_ms":8.25,"run_ms":116.61,"idle_ms":140.0,"stall_ms":0.02,"io_percent":58.2,"method":"GET","action":"home#category"} | |
{"gc_ms":1.19,"run_ms":23.1,"idle_ms":3.82,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.07,"run_ms":16.79,"idle_ms":3.0,"stall_ms":0.01,"io_percent":17.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.41,"run_ms":16.09,"idle_ms":2.65,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":4.94,"run_ms":61.78,"idle_ms":246.92,"stall_ms":0.01,"io_percent":77.9,"method":"GET","action":"home#index"} | |
{"gc_ms":7.45,"run_ms":140.42,"idle_ms":132.15,"stall_ms":0.03,"io_percent":54.2,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":11.38,"idle_ms":0.74,"stall_ms":0.0,"io_percent":6.0,"method":"GET","action":"login#index"} | |
{"gc_ms":0.62,"run_ms":15.54,"idle_ms":2.94,"stall_ms":0.01,"io_percent":18.9,"method":"GET","action":"home#index"} | |
{"gc_ms":8.7,"run_ms":121.33,"idle_ms":137.14,"stall_ms":0.02,"io_percent":56.0,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":1.26,"run_ms":18.92,"idle_ms":3.1,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":25.0,"idle_ms":9.63,"stall_ms":0.69,"io_percent":27.5,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":26.94,"idle_ms":9.99,"stall_ms":0.24,"io_percent":25.5,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":31.77,"idle_ms":13.9,"stall_ms":0.01,"io_percent":30.7,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":2.39,"run_ms":28.63,"idle_ms":10.28,"stall_ms":0.01,"io_percent":26.6,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.86,"run_ms":27.45,"idle_ms":10.88,"stall_ms":0.01,"io_percent":28.7,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":29.62,"idle_ms":4.52,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":40.07,"idle_ms":16.3,"stall_ms":0.01,"io_percent":28.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.94,"run_ms":6.59,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.28,"run_ms":10.29,"idle_ms":1.88,"stall_ms":0.0,"io_percent":15.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":9.92,"idle_ms":2.88,"stall_ms":0.0,"io_percent":22.8,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.44,"run_ms":16.48,"idle_ms":2.88,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":102.12,"idle_ms":25.87,"stall_ms":0.02,"io_percent":20.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.28,"run_ms":13.52,"idle_ms":1.8,"stall_ms":0.0,"io_percent":11.8,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":15.45,"idle_ms":2.71,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":34.02,"idle_ms":3.61,"stall_ms":0.01,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.88,"run_ms":18.22,"idle_ms":2.79,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":16.9,"run_ms":71.05,"idle_ms":14.51,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":5.55,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":1.33,"run_ms":8.49,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.28,"run_ms":13.29,"idle_ms":1.88,"stall_ms":0.0,"io_percent":12.4,"method":"GET","action":"users#show"} | |
{"gc_ms":3.83,"run_ms":37.88,"idle_ms":3.61,"stall_ms":0.15,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.17,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.75,"run_ms":12.24,"idle_ms":1.39,"stall_ms":0.0,"io_percent":10.3,"method":"GET","action":"users#show"} | |
{"gc_ms":2.57,"run_ms":102.67,"idle_ms":55.5,"stall_ms":0.02,"io_percent":40.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":40.08,"idle_ms":12.47,"stall_ms":0.01,"io_percent":24.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.87,"run_ms":62.66,"idle_ms":15.46,"stall_ms":0.02,"io_percent":19.9,"method":"GET","action":"home#index"} | |
{"gc_ms":4.08,"run_ms":125.95,"idle_ms":105.4,"stall_ms":0.02,"io_percent":49.1,"method":"GET","action":"home#category"} | |
{"gc_ms":0.0,"run_ms":29.88,"idle_ms":3.82,"stall_ms":0.01,"io_percent":12.5,"method":"GET","action":"home#index"} | |
{"gc_ms":7.29,"run_ms":25.94,"idle_ms":2.92,"stall_ms":0.01,"io_percent":11.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.34,"run_ms":8.66,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.81,"run_ms":11.89,"idle_ms":1.95,"stall_ms":0.0,"io_percent":12.7,"method":"GET","action":"users#show"} | |
{"gc_ms":34.14,"run_ms":207.66,"idle_ms":35.64,"stall_ms":0.02,"io_percent":14.5,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":5.65,"run_ms":208.7,"idle_ms":41.95,"stall_ms":0.04,"io_percent":18.8,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":44.73,"idle_ms":4.61,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":10.02,"run_ms":156.71,"idle_ms":71.21,"stall_ms":1.24,"io_percent":34.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":20.51,"run_ms":161.57,"idle_ms":26.4,"stall_ms":0.02,"io_percent":12.6,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":5.27,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":14.01,"run_ms":147.54,"idle_ms":32.29,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":14.8,"run_ms":183.4,"idle_ms":70.21,"stall_ms":0.02,"io_percent":30.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.18,"run_ms":8.94,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":0.39,"run_ms":12.28,"idle_ms":2.82,"stall_ms":0.0,"io_percent":18.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.72,"run_ms":19.27,"idle_ms":7.51,"stall_ms":0.01,"io_percent":31.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.77,"run_ms":21.64,"idle_ms":3.41,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":201.64,"run_ms":383.94,"idle_ms":38.02,"stall_ms":0.79,"io_percent":9.0,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":2.86,"run_ms":139.5,"idle_ms":73.11,"stall_ms":0.03,"io_percent":36.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.68,"run_ms":39.84,"idle_ms":12.01,"stall_ms":126.89,"io_percent":6.9,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":1.38,"run_ms":49.07,"idle_ms":20.9,"stall_ms":0.02,"io_percent":27.8,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":1.38,"run_ms":40.11,"idle_ms":17.51,"stall_ms":0.01,"io_percent":32.0,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":25.41,"idle_ms":3.76,"stall_ms":0.01,"io_percent":14.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.91,"run_ms":46.76,"idle_ms":19.41,"stall_ms":0.02,"io_percent":29.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":14.2,"run_ms":125.1,"idle_ms":43.56,"stall_ms":0.02,"io_percent":25.7,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.33,"run_ms":21.2,"idle_ms":3.09,"stall_ms":0.01,"io_percent":14.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.6,"run_ms":78.8,"idle_ms":40.89,"stall_ms":0.02,"io_percent":34.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.15,"run_ms":46.43,"idle_ms":14.36,"stall_ms":0.01,"io_percent":23.7,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":153.47,"idle_ms":33.23,"stall_ms":93.48,"io_percent":12.9,"method":"GET","action":"home#index"} | |
{"gc_ms":12.74,"run_ms":54.77,"idle_ms":15.89,"stall_ms":0.01,"io_percent":22.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.42,"run_ms":24.91,"idle_ms":10.91,"stall_ms":0.01,"io_percent":30.7,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.76,"run_ms":20.1,"idle_ms":3.23,"stall_ms":84.1,"io_percent":3.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.21,"run_ms":31.55,"idle_ms":3.45,"stall_ms":0.01,"io_percent":7.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":141.39,"idle_ms":677.81,"stall_ms":0.13,"io_percent":82.7,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":12.7,"idle_ms":2.28,"stall_ms":0.0,"io_percent":13.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":63.49,"idle_ms":18.03,"stall_ms":0.13,"io_percent":20.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.72,"run_ms":48.61,"idle_ms":21.69,"stall_ms":0.01,"io_percent":29.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.04,"run_ms":76.64,"idle_ms":23.0,"stall_ms":0.01,"io_percent":22.6,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":1.27,"run_ms":41.55,"idle_ms":13.88,"stall_ms":0.01,"io_percent":25.4,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":0.0,"run_ms":23.12,"idle_ms":3.93,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.97,"run_ms":18.99,"idle_ms":3.02,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":44.91,"idle_ms":4.46,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#newest"} | |
{"gc_ms":1.38,"run_ms":74.71,"idle_ms":300.03,"stall_ms":0.03,"io_percent":80.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.92,"idle_ms":3.35,"stall_ms":0.01,"io_percent":18.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.1,"idle_ms":3.71,"stall_ms":0.01,"io_percent":18.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.4,"run_ms":41.33,"idle_ms":10.65,"stall_ms":0.01,"io_percent":20.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.21,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":3.33,"run_ms":42.93,"idle_ms":15.18,"stall_ms":0.01,"io_percent":26.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":11.3,"idle_ms":1.86,"stall_ms":0.0,"io_percent":14.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":39.02,"idle_ms":17.18,"stall_ms":0.14,"io_percent":30.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":20.86,"idle_ms":3.56,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.17,"idle_ms":2.79,"stall_ms":0.01,"io_percent":18.4,"method":"GET","action":"home#index"} | |
{"gc_ms":8.05,"run_ms":40.42,"idle_ms":3.51,"stall_ms":0.06,"io_percent":8.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":37.34,"idle_ms":16.56,"stall_ms":0.01,"io_percent":31.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.2,"idle_ms":2.75,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.39,"idle_ms":3.41,"stall_ms":0.01,"io_percent":18.5,"method":"GET","action":"home#index"} | |
{"gc_ms":14.78,"run_ms":147.92,"idle_ms":62.74,"stall_ms":0.03,"io_percent":32.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":9.71,"run_ms":136.96,"idle_ms":34.47,"stall_ms":0.04,"io_percent":21.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.82,"run_ms":24.47,"idle_ms":3.73,"stall_ms":0.33,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.35,"run_ms":6.66,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":4.33,"run_ms":49.53,"idle_ms":3.65,"stall_ms":0.01,"io_percent":7.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.35,"run_ms":6.01,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.13,"idle_ms":2.36,"stall_ms":0.01,"io_percent":12.1,"method":"GET","action":"users#show"} | |
{"gc_ms":9.6,"run_ms":76.76,"idle_ms":449.21,"stall_ms":0.02,"io_percent":85.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.28,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.27,"run_ms":16.18,"idle_ms":2.97,"stall_ms":0.01,"io_percent":18.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.62,"run_ms":43.14,"idle_ms":16.03,"stall_ms":0.01,"io_percent":27.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":21.26,"idle_ms":3.65,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.01,"run_ms":28.26,"idle_ms":11.06,"stall_ms":0.15,"io_percent":24.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":25.44,"idle_ms":12.41,"stall_ms":0.01,"io_percent":33.1,"method":"GET","action":"users#show"} | |
{"gc_ms":1.88,"run_ms":31.09,"idle_ms":15.44,"stall_ms":0.01,"io_percent":31.1,"method":"GET","action":"users#show"} | |
{"gc_ms":4.32,"run_ms":40.79,"idle_ms":5.15,"stall_ms":0.06,"io_percent":11.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":3.46,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":7.83,"idle_ms":1.36,"stall_ms":0.0,"io_percent":12.2,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":1.0,"run_ms":23.68,"idle_ms":11.06,"stall_ms":82.04,"io_percent":9.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":49.49,"idle_ms":71.58,"stall_ms":0.01,"io_percent":55.0,"method":"GET","action":"filters#index"} | |
{"gc_ms":0.0,"run_ms":23.65,"idle_ms":3.51,"stall_ms":0.01,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.75,"run_ms":55.33,"idle_ms":2.93,"stall_ms":1.74,"io_percent":4.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":2.9,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.41,"run_ms":6.53,"idle_ms":0.07,"stall_ms":112.2,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.52,"run_ms":10.1,"idle_ms":1.75,"stall_ms":0.0,"io_percent":14.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.37,"run_ms":9.35,"idle_ms":3.1,"stall_ms":0.05,"io_percent":23.5,"method":"GET","action":"comments#redirect_from_short_id"} | |
{"gc_ms":0.0,"run_ms":7.38,"idle_ms":0.02,"stall_ms":0.07,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.05,"idle_ms":1.53,"stall_ms":0.0,"io_percent":13.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.19,"run_ms":34.1,"idle_ms":5.74,"stall_ms":0.26,"io_percent":15.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.1,"run_ms":16.75,"idle_ms":2.88,"stall_ms":0.27,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.61,"run_ms":25.21,"idle_ms":14.1,"stall_ms":0.01,"io_percent":33.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":24.76,"idle_ms":21.99,"stall_ms":0.01,"io_percent":41.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":25.29,"idle_ms":11.16,"stall_ms":0.01,"io_percent":30.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.92,"run_ms":24.49,"idle_ms":15.45,"stall_ms":0.01,"io_percent":30.3,"method":"GET","action":"users#show"} | |
{"gc_ms":5.59,"run_ms":130.84,"idle_ms":122.69,"stall_ms":0.02,"io_percent":52.9,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":8.12,"run_ms":49.63,"idle_ms":17.09,"stall_ms":0.01,"io_percent":25.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":2.33,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.46,"run_ms":19.98,"idle_ms":8.63,"stall_ms":0.06,"io_percent":30.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":2.21,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.09,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":18.57,"idle_ms":3.8,"stall_ms":0.01,"io_percent":20.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.32,"run_ms":7.98,"idle_ms":0.69,"stall_ms":0.0,"io_percent":8.0,"method":"HEAD","action":"stories#new"} | |
{"gc_ms":0.53,"run_ms":11.08,"idle_ms":1.36,"stall_ms":76.17,"io_percent":1.5,"method":"HEAD","action":"login#index"} | |
{"gc_ms":1.73,"run_ms":63.18,"idle_ms":264.01,"stall_ms":0.04,"io_percent":80.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.59,"run_ms":8.9,"idle_ms":0.73,"stall_ms":0.01,"io_percent":5.3,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.84,"run_ms":3.25,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.4,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":21.16,"idle_ms":20.78,"stall_ms":0.01,"io_percent":46.1,"method":"GET","action":"users#show"} | |
{"gc_ms":1.56,"run_ms":23.84,"idle_ms":17.11,"stall_ms":1.66,"io_percent":33.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.06,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":1.26,"run_ms":26.56,"idle_ms":30.49,"stall_ms":0.01,"io_percent":53.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.82,"run_ms":29.73,"idle_ms":15.4,"stall_ms":0.02,"io_percent":25.8,"method":"GET","action":"tags#index"} | |
{"gc_ms":1.36,"run_ms":65.4,"idle_ms":32.24,"stall_ms":1.28,"io_percent":30.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":126.02,"idle_ms":381.11,"stall_ms":0.02,"io_percent":72.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":2.39,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.32,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.97,"idle_ms":0.7,"stall_ms":0.0,"io_percent":7.3,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":2.21,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.74,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.62,"run_ms":11.51,"idle_ms":2.01,"stall_ms":0.0,"io_percent":14.9,"method":"GET","action":"users#show"} | |
{"gc_ms":2.65,"run_ms":129.28,"idle_ms":729.64,"stall_ms":93.81,"io_percent":77.7,"method":"GET","action":"home#recent"} | |
{"gc_ms":3.45,"run_ms":37.17,"idle_ms":3.58,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.44,"run_ms":6.67,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.29,"run_ms":9.55,"idle_ms":2.0,"stall_ms":0.0,"io_percent":17.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.97,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":60.8,"idle_ms":433.0,"stall_ms":0.02,"io_percent":87.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.73,"run_ms":31.76,"idle_ms":18.7,"stall_ms":0.01,"io_percent":34.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.37,"run_ms":20.77,"idle_ms":9.51,"stall_ms":0.01,"io_percent":31.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":10.98,"idle_ms":3.18,"stall_ms":0.0,"io_percent":18.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":37.09,"idle_ms":7.13,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.51,"run_ms":73.1,"idle_ms":364.56,"stall_ms":0.18,"io_percent":83.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.07,"run_ms":34.24,"idle_ms":12.22,"stall_ms":157.56,"io_percent":6.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.18,"idle_ms":2.75,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.6,"run_ms":16.49,"idle_ms":2.81,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.32,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.21,"run_ms":11.65,"idle_ms":1.83,"stall_ms":0.0,"io_percent":13.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":16.75,"idle_ms":2.84,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.47,"idle_ms":0.74,"stall_ms":0.0,"io_percent":10.3,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.54,"run_ms":11.63,"idle_ms":2.89,"stall_ms":0.0,"io_percent":20.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.4,"idle_ms":3.87,"stall_ms":0.01,"io_percent":23.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.27,"run_ms":8.66,"idle_ms":0.81,"stall_ms":0.0,"io_percent":8.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":17.82,"idle_ms":2.99,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.24,"run_ms":17.17,"idle_ms":2.84,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.34,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.38,"idle_ms":2.17,"stall_ms":0.0,"io_percent":17.4,"method":"GET","action":"users#show"} | |
{"gc_ms":8.9,"run_ms":67.04,"idle_ms":69.2,"stall_ms":0.02,"io_percent":51.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.89,"run_ms":44.53,"idle_ms":16.87,"stall_ms":0.02,"io_percent":27.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.62,"run_ms":17.53,"idle_ms":3.97,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":3.13,"run_ms":39.25,"idle_ms":16.02,"stall_ms":0.01,"io_percent":24.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.07,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.73,"run_ms":17.83,"idle_ms":3.18,"stall_ms":0.01,"io_percent":17.8,"method":"GET","action":"home#index"} | |
{"gc_ms":5.56,"run_ms":25.86,"idle_ms":10.0,"stall_ms":0.01,"io_percent":28.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.72,"idle_ms":0.74,"stall_ms":0.0,"io_percent":8.8,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":6.71,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.88,"run_ms":6.65,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.15,"idle_ms":1.87,"stall_ms":0.0,"io_percent":17.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":8.71,"idle_ms":1.73,"stall_ms":0.0,"io_percent":16.7,"method":"GET","action":"users#show"} | |
{"gc_ms":1.84,"run_ms":32.95,"idle_ms":10.97,"stall_ms":0.01,"io_percent":25.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":33.47,"idle_ms":10.55,"stall_ms":0.01,"io_percent":22.2,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":34.22,"idle_ms":3.78,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.33,"run_ms":30.09,"idle_ms":3.79,"stall_ms":0.01,"io_percent":7.8,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":15.78,"run_ms":162.36,"idle_ms":33.14,"stall_ms":0.02,"io_percent":19.1,"method":"GET","action":"home#top"} | |
{"gc_ms":1.35,"run_ms":42.4,"idle_ms":12.16,"stall_ms":0.01,"io_percent":22.5,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":1.02,"run_ms":18.21,"idle_ms":3.06,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.59,"idle_ms":1.68,"stall_ms":0.0,"io_percent":16.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.54,"idle_ms":0.72,"stall_ms":0.0,"io_percent":9.9,"method":"HEAD","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":16.97,"idle_ms":3.21,"stall_ms":0.01,"io_percent":16.1,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.22,"run_ms":11.09,"idle_ms":0.77,"stall_ms":0.0,"io_percent":6.5,"method":"HEAD","action":"login#index"} | |
{"gc_ms":2.33,"run_ms":55.8,"idle_ms":21.75,"stall_ms":0.01,"io_percent":28.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.92,"idle_ms":0.69,"stall_ms":0.0,"io_percent":8.1,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.44,"run_ms":14.82,"idle_ms":3.14,"stall_ms":0.0,"io_percent":17.6,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.82,"run_ms":12.22,"idle_ms":0.8,"stall_ms":0.0,"io_percent":6.2,"method":"GET","action":"login#index"} | |
{"gc_ms":4.14,"run_ms":75.34,"idle_ms":24.09,"stall_ms":0.02,"io_percent":24.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.28,"run_ms":16.39,"idle_ms":2.66,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.24,"run_ms":12.23,"idle_ms":2.11,"stall_ms":0.0,"io_percent":14.8,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.15,"run_ms":20.25,"idle_ms":2.99,"stall_ms":0.01,"io_percent":14.0,"method":"GET","action":"home#index"} | |
{"gc_ms":3.1,"run_ms":41.82,"idle_ms":10.26,"stall_ms":71.57,"io_percent":7.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.59,"idle_ms":3.15,"stall_ms":0.01,"io_percent":20.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.26,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":4.93,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.14,"idle_ms":2.7,"stall_ms":0.01,"io_percent":17.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":36.41,"idle_ms":10.63,"stall_ms":0.01,"io_percent":22.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.32,"run_ms":7.77,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.31,"run_ms":16.39,"idle_ms":2.79,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.82,"idle_ms":3.03,"stall_ms":0.01,"io_percent":17.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.88,"run_ms":9.69,"idle_ms":1.02,"stall_ms":0.0,"io_percent":9.6,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":35.44,"idle_ms":16.39,"stall_ms":87.42,"io_percent":12.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":9.71,"idle_ms":2.31,"stall_ms":0.0,"io_percent":19.4,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.68,"run_ms":31.51,"idle_ms":14.16,"stall_ms":0.01,"io_percent":29.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.36,"run_ms":20.67,"idle_ms":3.36,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.89,"idle_ms":0.03,"stall_ms":0.04,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.31,"idle_ms":2.66,"stall_ms":0.01,"io_percent":17.3,"method":"HEAD","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.7,"idle_ms":2.27,"stall_ms":0.0,"io_percent":15.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":127.79,"idle_ms":143.68,"stall_ms":74.9,"io_percent":44.4,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":18.57,"idle_ms":3.67,"stall_ms":0.01,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.34,"run_ms":31.48,"idle_ms":3.53,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.61,"run_ms":16.32,"idle_ms":2.77,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.75,"idle_ms":2.94,"stall_ms":0.01,"io_percent":18.6,"method":"GET","action":"home#index"} | |
{"gc_ms":12.3,"run_ms":129.37,"idle_ms":54.1,"stall_ms":0.03,"io_percent":32.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.21,"run_ms":7.03,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.95,"idle_ms":1.46,"stall_ms":0.0,"io_percent":11.8,"method":"GET","action":"users#show"} | |
{"gc_ms":2.75,"run_ms":58.5,"idle_ms":17.75,"stall_ms":0.02,"io_percent":19.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.25,"run_ms":17.03,"idle_ms":2.84,"stall_ms":0.01,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":60.67,"idle_ms":107.23,"stall_ms":0.02,"io_percent":64.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.21,"run_ms":17.01,"idle_ms":2.84,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.23,"run_ms":8.39,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.26,"run_ms":7.84,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.57,"run_ms":6.69,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.67,"run_ms":10.16,"idle_ms":1.61,"stall_ms":0.0,"io_percent":13.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.58,"run_ms":11.63,"idle_ms":3.98,"stall_ms":0.03,"io_percent":25.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.56,"run_ms":11.24,"idle_ms":2.16,"stall_ms":0.0,"io_percent":16.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.6,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":13.95,"idle_ms":4.26,"stall_ms":0.0,"io_percent":23.7,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.41,"run_ms":18.37,"idle_ms":3.02,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":5.3,"run_ms":166.04,"idle_ms":48.75,"stall_ms":0.17,"io_percent":24.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":34.89,"idle_ms":3.52,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.63,"idle_ms":2.92,"stall_ms":88.42,"io_percent":2.9,"method":"GET","action":"home#index"} | |
{"gc_ms":15.38,"run_ms":141.26,"idle_ms":37.51,"stall_ms":0.02,"io_percent":22.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":41.25,"idle_ms":5.82,"stall_ms":0.01,"io_percent":13.3,"method":"GET","action":"home#index"} | |
{"gc_ms":2.24,"run_ms":124.77,"idle_ms":86.07,"stall_ms":0.02,"io_percent":43.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":14.56,"run_ms":154.68,"idle_ms":38.7,"stall_ms":0.02,"io_percent":21.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":18.03,"idle_ms":2.92,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":178.75,"idle_ms":100.63,"stall_ms":0.04,"io_percent":38.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":9.95,"run_ms":37.87,"idle_ms":13.34,"stall_ms":0.01,"io_percent":26.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.29,"run_ms":9.1,"idle_ms":0.04,"stall_ms":0.04,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.22,"idle_ms":3.03,"stall_ms":0.01,"io_percent":19.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.2,"run_ms":7.93,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":2.81,"run_ms":117.38,"idle_ms":45.33,"stall_ms":0.09,"io_percent":31.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":5.94,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.84,"run_ms":31.25,"idle_ms":3.33,"stall_ms":0.01,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.1,"idle_ms":4.04,"stall_ms":117.26,"io_percent":3.1,"method":"HEAD","action":"users#show"} | |
{"gc_ms":1.65,"run_ms":22.74,"idle_ms":3.34,"stall_ms":0.01,"io_percent":12.3,"method":"GET","action":"home#index"} | |
{"gc_ms":7.44,"run_ms":137.99,"idle_ms":158.01,"stall_ms":0.12,"io_percent":54.7,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":2.79,"run_ms":16.81,"idle_ms":2.1,"stall_ms":0.04,"io_percent":10.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.96,"run_ms":17.78,"idle_ms":3.88,"stall_ms":0.01,"io_percent":20.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.08,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.66,"run_ms":15.32,"idle_ms":4.0,"stall_ms":0.0,"io_percent":21.1,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":5.66,"run_ms":87.98,"idle_ms":68.27,"stall_ms":0.01,"io_percent":45.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.73,"run_ms":14.06,"idle_ms":1.95,"stall_ms":0.0,"io_percent":12.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.3,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":8.99,"run_ms":23.53,"idle_ms":1.8,"stall_ms":0.0,"io_percent":7.1,"method":"GET","action":"users#show"} | |
{"gc_ms":2.04,"run_ms":26.73,"idle_ms":11.37,"stall_ms":0.01,"io_percent":30.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.74,"run_ms":36.4,"idle_ms":3.56,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.78,"run_ms":17.26,"idle_ms":2.74,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.09,"run_ms":9.77,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.08,"run_ms":19.89,"idle_ms":3.2,"stall_ms":0.01,"io_percent":15.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.92,"run_ms":12.31,"idle_ms":1.97,"stall_ms":0.0,"io_percent":13.8,"method":"GET","action":"users#show"} | |
{"gc_ms":1.78,"run_ms":28.15,"idle_ms":18.29,"stall_ms":0.01,"io_percent":39.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.5,"run_ms":18.87,"idle_ms":3.09,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.63,"run_ms":129.66,"idle_ms":57.75,"stall_ms":0.03,"io_percent":34.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.29,"run_ms":71.26,"idle_ms":110.58,"stall_ms":0.02,"io_percent":61.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.48,"run_ms":6.26,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":2.25,"run_ms":31.11,"idle_ms":3.65,"stall_ms":0.08,"io_percent":11.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.2,"run_ms":10.6,"idle_ms":2.0,"stall_ms":98.33,"io_percent":1.9,"method":"GET","action":"users#show"} | |
{"gc_ms":1.4,"run_ms":35.13,"idle_ms":9.35,"stall_ms":0.01,"io_percent":21.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.69,"run_ms":137.21,"idle_ms":36.2,"stall_ms":79.42,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.39,"run_ms":109.71,"idle_ms":34.4,"stall_ms":0.02,"io_percent":25.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":11.52,"idle_ms":2.56,"stall_ms":0.0,"io_percent":18.4,"method":"GET","action":"users#show"} | |
{"gc_ms":7.34,"run_ms":42.32,"idle_ms":3.76,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.04,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":59.0,"idle_ms":82.36,"stall_ms":0.03,"io_percent":58.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.89,"run_ms":18.44,"idle_ms":2.89,"stall_ms":0.0,"io_percent":13.6,"method":"HEAD","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":19.31,"idle_ms":4.18,"stall_ms":0.01,"io_percent":20.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.72,"idle_ms":9.76,"stall_ms":0.01,"io_percent":30.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":9.22,"idle_ms":2.0,"stall_ms":0.0,"io_percent":17.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":15.64,"idle_ms":2.96,"stall_ms":0.01,"io_percent":18.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.17,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.08,"run_ms":13.65,"idle_ms":2.18,"stall_ms":0.0,"io_percent":12.7,"method":"GET","action":"users#show"} | |
{"gc_ms":2.02,"run_ms":22.75,"idle_ms":3.58,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.86,"idle_ms":0.04,"stall_ms":73.32,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.62,"run_ms":16.42,"idle_ms":2.95,"stall_ms":0.01,"io_percent":17.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.91,"run_ms":13.57,"idle_ms":2.12,"stall_ms":0.0,"io_percent":13.6,"method":"GET","action":"users#show"} | |
{"gc_ms":1.9,"run_ms":19.75,"idle_ms":2.88,"stall_ms":0.06,"io_percent":14.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.44,"run_ms":22.31,"idle_ms":3.79,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.92,"run_ms":26.74,"idle_ms":4.47,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":5.17,"run_ms":121.85,"idle_ms":32.68,"stall_ms":0.02,"io_percent":23.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.73,"run_ms":40.29,"idle_ms":15.81,"stall_ms":0.01,"io_percent":28.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.05,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.23,"run_ms":23.13,"idle_ms":3.77,"stall_ms":0.01,"io_percent":14.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.65,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.96,"run_ms":13.52,"idle_ms":2.15,"stall_ms":0.0,"io_percent":13.8,"method":"GET","action":"users#show"} | |
{"gc_ms":2.14,"run_ms":59.0,"idle_ms":18.14,"stall_ms":0.01,"io_percent":19.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.22,"run_ms":6.91,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.24,"run_ms":12.5,"idle_ms":1.44,"stall_ms":0.0,"io_percent":10.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.29,"run_ms":8.29,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":22.42,"idle_ms":17.39,"stall_ms":0.01,"io_percent":43.8,"method":"GET","action":"search#index"} | |
{"gc_ms":0.0,"run_ms":11.71,"idle_ms":1.59,"stall_ms":0.0,"io_percent":11.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":16.59,"idle_ms":2.76,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.19,"run_ms":15.37,"idle_ms":2.89,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":13.31,"run_ms":166.7,"idle_ms":80.7,"stall_ms":0.02,"io_percent":36.2,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":176.73,"run_ms":346.13,"idle_ms":31.6,"stall_ms":0.02,"io_percent":8.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.02,"run_ms":14.89,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":1.05,"run_ms":11.14,"idle_ms":1.95,"stall_ms":0.0,"io_percent":15.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.7,"run_ms":6.65,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.39,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.92,"idle_ms":2.2,"stall_ms":0.0,"io_percent":18.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":17.92,"idle_ms":5.73,"stall_ms":0.01,"io_percent":28.6,"method":"GET","action":"home#index"} | |
{"gc_ms":5.38,"run_ms":67.08,"idle_ms":306.52,"stall_ms":0.02,"io_percent":82.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.99,"idle_ms":3.15,"stall_ms":0.01,"io_percent":19.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.69,"idle_ms":9.98,"stall_ms":0.01,"io_percent":30.7,"method":"GET","action":"comments#edit"} | |
{"gc_ms":0.0,"run_ms":105.47,"idle_ms":35.05,"stall_ms":0.02,"io_percent":28.9,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.48,"run_ms":14.72,"idle_ms":2.68,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.94,"run_ms":22.98,"idle_ms":10.11,"stall_ms":0.01,"io_percent":30.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.37,"run_ms":33.55,"idle_ms":4.52,"stall_ms":0.01,"io_percent":12.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.23,"run_ms":18.2,"idle_ms":2.73,"stall_ms":0.01,"io_percent":14.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":24.24,"idle_ms":12.99,"stall_ms":0.01,"io_percent":34.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.71,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.22,"run_ms":5.54,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.5,"idle_ms":1.7,"stall_ms":0.0,"io_percent":13.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.22,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.05,"idle_ms":2.7,"stall_ms":0.01,"io_percent":19.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.34,"run_ms":11.78,"idle_ms":1.93,"stall_ms":0.07,"io_percent":12.7,"method":"GET","action":"users#show"} | |
{"gc_ms":1.89,"run_ms":28.19,"idle_ms":16.62,"stall_ms":0.01,"io_percent":34.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.71,"run_ms":7.08,"idle_ms":2.2,"stall_ms":0.0,"io_percent":23.8,"method":"HEAD"} | |
{"gc_ms":0.62,"run_ms":17.28,"idle_ms":3.09,"stall_ms":0.08,"io_percent":17.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.98,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.34,"run_ms":11.97,"idle_ms":1.63,"stall_ms":0.0,"io_percent":12.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.46,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.16,"run_ms":37.04,"idle_ms":15.63,"stall_ms":0.01,"io_percent":30.4,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":0.89,"run_ms":12.26,"idle_ms":1.96,"stall_ms":0.0,"io_percent":13.8,"method":"GET","action":"users#show"} | |
{"gc_ms":1.35,"run_ms":33.06,"idle_ms":3.57,"stall_ms":0.08,"io_percent":10.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.08,"run_ms":18.22,"idle_ms":3.65,"stall_ms":117.6,"io_percent":2.7,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.06,"run_ms":6.98,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":2.15,"run_ms":139.47,"idle_ms":89.88,"stall_ms":0.03,"io_percent":45.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.2,"run_ms":125.6,"idle_ms":30.78,"stall_ms":0.21,"io_percent":19.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":31.5,"idle_ms":31.88,"stall_ms":0.02,"io_percent":49.9,"method":"PATCH","action":"comments#update"} | |
{"gc_ms":0.87,"run_ms":13.87,"idle_ms":2.47,"stall_ms":0.0,"io_percent":15.3,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.34,"run_ms":24.78,"idle_ms":3.83,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.47,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.33,"run_ms":10.65,"idle_ms":1.86,"stall_ms":72.32,"io_percent":2.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":14.2,"idle_ms":2.69,"stall_ms":0.01,"io_percent":18.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.37,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":11.38,"run_ms":125.73,"idle_ms":55.84,"stall_ms":0.02,"io_percent":33.6,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":9.26,"run_ms":22.17,"idle_ms":1.83,"stall_ms":0.0,"io_percent":6.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.09,"run_ms":9.8,"idle_ms":1.62,"stall_ms":0.0,"io_percent":14.3,"method":"GET","action":"users#show"} | |
{"gc_ms":5.27,"run_ms":122.4,"idle_ms":29.93,"stall_ms":0.02,"io_percent":21.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":12.66,"run_ms":138.36,"idle_ms":98.92,"stall_ms":0.12,"io_percent":46.9,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.86,"run_ms":66.29,"idle_ms":429.78,"stall_ms":0.02,"io_percent":84.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.24,"run_ms":62.34,"idle_ms":25.89,"stall_ms":0.02,"io_percent":29.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.29,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.38,"idle_ms":1.72,"stall_ms":0.0,"io_percent":15.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.41,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.67,"idle_ms":1.72,"stall_ms":109.89,"io_percent":1.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.44,"run_ms":6.11,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.91,"idle_ms":1.6,"stall_ms":0.0,"io_percent":10.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":8.14,"idle_ms":0.04,"stall_ms":71.82,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.73,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.64,"idle_ms":0.02,"stall_ms":0.04,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":2.26,"run_ms":105.83,"idle_ms":82.94,"stall_ms":1.03,"io_percent":47.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.25,"run_ms":9.24,"idle_ms":4.6,"stall_ms":0.0,"io_percent":33.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":28.15,"idle_ms":2.8,"stall_ms":0.14,"io_percent":8.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":105.24,"idle_ms":81.66,"stall_ms":0.02,"io_percent":47.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.8,"run_ms":65.28,"idle_ms":15.51,"stall_ms":0.02,"io_percent":18.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.21,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.26,"idle_ms":1.94,"stall_ms":0.0,"io_percent":17.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.82,"run_ms":136.7,"idle_ms":67.38,"stall_ms":0.02,"io_percent":36.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":9.81,"run_ms":46.06,"idle_ms":4.04,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.37,"idle_ms":2.89,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":140.31,"idle_ms":150.03,"stall_ms":0.03,"io_percent":56.0,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":1.78,"run_ms":25.37,"idle_ms":3.82,"stall_ms":0.01,"io_percent":14.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.33,"idle_ms":2.89,"stall_ms":0.01,"io_percent":18.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.21,"run_ms":35.93,"idle_ms":6.65,"stall_ms":0.21,"io_percent":16.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":13.34,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":38.73,"idle_ms":7.47,"stall_ms":1.2,"io_percent":13.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":10.53,"run_ms":54.17,"idle_ms":6.01,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":38.0,"idle_ms":14.53,"stall_ms":0.02,"io_percent":27.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.58,"run_ms":18.16,"idle_ms":2.87,"stall_ms":0.01,"io_percent":15.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.12,"run_ms":7.67,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.47,"run_ms":16.22,"idle_ms":2.95,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.94,"run_ms":15.23,"idle_ms":2.52,"stall_ms":0.0,"io_percent":12.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.15,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.85,"idle_ms":0.66,"stall_ms":0.0,"io_percent":7.2,"method":"GET","action":"stories#new"} | |
{"gc_ms":1.39,"run_ms":10.45,"idle_ms":1.69,"stall_ms":70.25,"io_percent":2.2,"method":"GET","action":"users#show"} | |
{"gc_ms":13.26,"run_ms":120.98,"idle_ms":58.93,"stall_ms":0.02,"io_percent":36.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.29,"run_ms":40.38,"idle_ms":16.72,"stall_ms":0.01,"io_percent":29.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.39,"run_ms":13.98,"idle_ms":2.67,"stall_ms":0.01,"io_percent":19.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.2,"idle_ms":3.69,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":42.54,"idle_ms":15.08,"stall_ms":0.01,"io_percent":26.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.57,"run_ms":33.12,"idle_ms":3.73,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.8,"run_ms":7.16,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.02,"run_ms":36.15,"idle_ms":17.12,"stall_ms":0.01,"io_percent":31.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.69,"run_ms":10.71,"idle_ms":2.15,"stall_ms":0.0,"io_percent":16.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":27.21,"idle_ms":22.82,"stall_ms":0.01,"io_percent":45.9,"method":"GET","action":"search#index"} | |
{"gc_ms":1.04,"run_ms":7.33,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.61,"run_ms":10.97,"idle_ms":1.83,"stall_ms":0.0,"io_percent":11.9,"method":"GET","action":"users#show"} | |
{"gc_ms":3.53,"run_ms":27.15,"idle_ms":11.31,"stall_ms":0.01,"io_percent":29.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.3,"run_ms":35.61,"idle_ms":3.46,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":4.81,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":1.41,"run_ms":69.23,"idle_ms":20.12,"stall_ms":0.01,"io_percent":20.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.93,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.02,"run_ms":11.63,"idle_ms":2.71,"stall_ms":0.0,"io_percent":19.0,"method":"GET","action":"users#show"} | |
{"gc_ms":5.84,"run_ms":12.07,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.1,"method":"HEAD"} | |
{"gc_ms":6.41,"run_ms":107.12,"idle_ms":24.92,"stall_ms":0.02,"io_percent":21.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.9,"run_ms":11.13,"idle_ms":2.01,"stall_ms":0.0,"io_percent":15.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.92,"run_ms":20.13,"idle_ms":10.55,"stall_ms":0.01,"io_percent":34.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.77,"run_ms":34.25,"idle_ms":3.37,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.33,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.08,"run_ms":35.21,"idle_ms":12.1,"stall_ms":0.01,"io_percent":25.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.72,"run_ms":10.05,"idle_ms":2.09,"stall_ms":0.0,"io_percent":17.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.86,"run_ms":39.63,"idle_ms":9.53,"stall_ms":0.01,"io_percent":19.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":10.27,"idle_ms":0.79,"stall_ms":0.0,"io_percent":7.1,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":5.89,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":23.94,"idle_ms":10.99,"stall_ms":0.01,"io_percent":31.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.39,"run_ms":127.96,"idle_ms":66.07,"stall_ms":0.06,"io_percent":38.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.54,"run_ms":30.6,"idle_ms":3.35,"stall_ms":0.01,"io_percent":10.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.79,"idle_ms":3.68,"stall_ms":0.01,"io_percent":18.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.87,"run_ms":13.09,"idle_ms":2.08,"stall_ms":0.0,"io_percent":10.9,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":53.42,"idle_ms":19.29,"stall_ms":0.82,"io_percent":26.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.14,"idle_ms":3.13,"stall_ms":106.62,"io_percent":2.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.61,"run_ms":34.6,"idle_ms":16.04,"stall_ms":0.01,"io_percent":31.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.23,"run_ms":13.12,"idle_ms":2.3,"stall_ms":0.0,"io_percent":14.8,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.28,"run_ms":12.57,"idle_ms":2.18,"stall_ms":0.0,"io_percent":14.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":16.19,"idle_ms":2.83,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":9.83,"run_ms":43.47,"idle_ms":3.35,"stall_ms":0.01,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":34.36,"idle_ms":3.39,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.53,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":10.33,"run_ms":112.85,"idle_ms":102.84,"stall_ms":0.02,"io_percent":51.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.47,"run_ms":15.26,"idle_ms":2.61,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.77,"run_ms":22.05,"idle_ms":3.48,"stall_ms":0.02,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":3.29,"run_ms":40.95,"idle_ms":4.1,"stall_ms":0.01,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.43,"run_ms":32.32,"idle_ms":2.62,"stall_ms":0.01,"io_percent":7.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":30.55,"idle_ms":2.64,"stall_ms":0.29,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":3.18,"run_ms":33.88,"idle_ms":3.44,"stall_ms":0.07,"io_percent":9.9,"method":"GET","action":"home#index"} | |
{"gc_ms":7.08,"run_ms":41.51,"idle_ms":3.63,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.2,"run_ms":10.04,"idle_ms":2.28,"stall_ms":0.0,"io_percent":18.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.89,"run_ms":25.72,"idle_ms":2.14,"stall_ms":0.01,"io_percent":8.3,"method":"GET","action":"home#top"} | |
{"gc_ms":0.35,"run_ms":16.95,"idle_ms":2.67,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":4.75,"run_ms":96.15,"idle_ms":39.5,"stall_ms":0.1,"io_percent":32.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.51,"run_ms":43.87,"idle_ms":10.21,"stall_ms":81.8,"io_percent":7.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":120.52,"run_ms":249.4,"idle_ms":61.16,"stall_ms":0.13,"io_percent":19.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":109.31,"idle_ms":41.17,"stall_ms":0.02,"io_percent":27.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.24,"run_ms":16.93,"idle_ms":2.89,"stall_ms":108.8,"io_percent":2.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.15,"run_ms":97.41,"idle_ms":60.36,"stall_ms":0.02,"io_percent":40.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":41.89,"idle_ms":17.56,"stall_ms":0.01,"io_percent":29.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":34.77,"idle_ms":3.44,"stall_ms":70.16,"io_percent":3.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.6,"run_ms":25.54,"idle_ms":12.7,"stall_ms":0.01,"io_percent":33.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.38,"run_ms":9.87,"idle_ms":3.46,"stall_ms":0.33,"io_percent":21.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":24.81,"idle_ms":6.84,"stall_ms":0.02,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":39.4,"idle_ms":6.99,"stall_ms":0.01,"io_percent":12.1,"method":"GET","action":"home#index"} | |
{"gc_ms":5.32,"run_ms":149.91,"idle_ms":76.31,"stall_ms":0.02,"io_percent":37.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":13.87,"run_ms":137.03,"idle_ms":67.65,"stall_ms":91.01,"io_percent":25.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":95.81,"idle_ms":44.86,"stall_ms":0.02,"io_percent":31.7,"method":"HEAD","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":10.33,"idle_ms":3.35,"stall_ms":68.0,"io_percent":4.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":30.99,"idle_ms":3.11,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":12.6,"run_ms":87.47,"idle_ms":37.57,"stall_ms":77.73,"io_percent":19.7,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":122.16,"idle_ms":41.89,"stall_ms":0.02,"io_percent":29.7,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":37.9,"idle_ms":3.88,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.57,"idle_ms":3.17,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.62,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.94,"idle_ms":5.54,"stall_ms":0.0,"io_percent":20.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":17.88,"idle_ms":2.97,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.58,"run_ms":152.77,"idle_ms":160.01,"stall_ms":0.04,"io_percent":56.2,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":11.21,"run_ms":129.18,"idle_ms":81.88,"stall_ms":0.03,"io_percent":43.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.3,"run_ms":16.95,"idle_ms":2.97,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":6.01,"run_ms":83.25,"idle_ms":81.51,"stall_ms":0.02,"io_percent":49.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":37.99,"idle_ms":4.3,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":4.27,"run_ms":116.84,"idle_ms":39.26,"stall_ms":0.04,"io_percent":28.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.89,"run_ms":59.06,"idle_ms":19.1,"stall_ms":0.01,"io_percent":24.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":2.88,"idle_ms":9.19,"stall_ms":6.56,"io_percent":44.6,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.91,"idle_ms":14.31,"stall_ms":0.01,"io_percent":83.7,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.9,"idle_ms":2.21,"stall_ms":0.0,"io_percent":13.9,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.55,"idle_ms":21.29,"stall_ms":0.01,"io_percent":85.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.68,"idle_ms":17.52,"stall_ms":0.01,"io_percent":74.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.54,"idle_ms":16.71,"stall_ms":16.65,"io_percent":44.7,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.07,"idle_ms":28.91,"stall_ms":0.01,"io_percent":60.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":8.14,"idle_ms":28.42,"stall_ms":12.32,"io_percent":53.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":16.1,"idle_ms":22.62,"stall_ms":4.88,"io_percent":39.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":20.02,"idle_ms":31.43,"stall_ms":11.7,"io_percent":37.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":32.95,"idle_ms":50.92,"stall_ms":0.02,"io_percent":47.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.08,"run_ms":37.74,"idle_ms":37.44,"stall_ms":0.02,"io_percent":32.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":22.55,"run_ms":69.09,"idle_ms":33.76,"stall_ms":0.01,"io_percent":25.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.29,"run_ms":47.51,"idle_ms":10.56,"stall_ms":0.01,"io_percent":14.3,"method":"GET","action":"home#index"} | |
{"gc_ms":2.08,"run_ms":22.19,"idle_ms":3.3,"stall_ms":0.01,"io_percent":14.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":2.71,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.39,"run_ms":3.06,"idle_ms":1.08,"stall_ms":0.0,"io_percent":16.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.0,"idle_ms":3.23,"stall_ms":0.0,"io_percent":51.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.05,"idle_ms":1.2,"stall_ms":0.0,"io_percent":15.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.47,"idle_ms":6.63,"stall_ms":0.0,"io_percent":58.8,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.8,"idle_ms":13.02,"stall_ms":0.0,"io_percent":81.8,"method":"GET"} | |
{"gc_ms":0.21,"run_ms":2.9,"idle_ms":8.67,"stall_ms":0.0,"io_percent":64.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.52,"idle_ms":6.83,"stall_ms":0.0,"io_percent":66.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.52,"idle_ms":6.87,"stall_ms":0.0,"io_percent":72.9,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.8,"idle_ms":5.98,"stall_ms":0.0,"io_percent":67.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.79,"idle_ms":8.7,"stall_ms":1.32,"io_percent":76.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.28,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.69,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.75,"idle_ms":21.83,"stall_ms":0.0,"io_percent":89.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.29,"idle_ms":3.22,"stall_ms":0.0,"io_percent":33.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.4,"idle_ms":4.31,"stall_ms":0.09,"io_percent":45.9,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.27,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.31,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.09,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.21,"idle_ms":12.55,"stall_ms":1.01,"io_percent":56.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.51,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.61,"idle_ms":6.07,"stall_ms":1.77,"io_percent":45.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.97,"idle_ms":6.67,"stall_ms":3.93,"io_percent":41.7,"method":"GET"} | |
{"gc_ms":1.11,"run_ms":3.14,"idle_ms":7.64,"stall_ms":6.02,"io_percent":42.7,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.18,"idle_ms":13.17,"stall_ms":4.18,"io_percent":41.9,"method":"GET"} | |
{"gc_ms":1.11,"run_ms":4.23,"idle_ms":3.56,"stall_ms":2.85,"io_percent":24.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.63,"idle_ms":6.18,"stall_ms":3.42,"io_percent":50.9,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":7.45,"idle_ms":8.59,"stall_ms":0.24,"io_percent":31.0,"method":"GET"} | |
{"gc_ms":1.11,"run_ms":3.19,"idle_ms":13.51,"stall_ms":12.49,"io_percent":39.6,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.9,"idle_ms":8.95,"stall_ms":0.0,"io_percent":74.8,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.37,"idle_ms":14.37,"stall_ms":22.73,"io_percent":33.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.28,"idle_ms":21.13,"stall_ms":0.01,"io_percent":87.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.57,"idle_ms":19.61,"stall_ms":3.99,"io_percent":66.9,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":7.96,"idle_ms":13.86,"stall_ms":0.06,"io_percent":50.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.46,"idle_ms":29.01,"stall_ms":0.01,"io_percent":90.0,"method":"GET"} | |
{"gc_ms":0.26,"run_ms":3.18,"idle_ms":1.07,"stall_ms":0.0,"io_percent":17.8,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.57,"idle_ms":25.14,"stall_ms":15.52,"io_percent":57.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":4.96,"idle_ms":28.19,"stall_ms":0.04,"io_percent":82.8,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":3.1,"idle_ms":32.31,"stall_ms":8.62,"io_percent":74.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":2.49,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.61,"idle_ms":2.76,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.64,"run_ms":37.5,"idle_ms":3.61,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.13,"run_ms":16.41,"idle_ms":2.71,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.39,"idle_ms":2.87,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":3.27,"run_ms":84.91,"idle_ms":36.72,"stall_ms":101.24,"io_percent":17.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":14.38,"idle_ms":2.65,"stall_ms":0.01,"io_percent":18.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.72,"run_ms":73.29,"idle_ms":9.96,"stall_ms":0.01,"io_percent":12.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":19.75,"idle_ms":8.62,"stall_ms":0.01,"io_percent":27.1,"method":"GET","action":"comments#index"} | |
{"gc_ms":1.11,"run_ms":18.26,"idle_ms":2.95,"stall_ms":0.01,"io_percent":13.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.05,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":61.96,"idle_ms":207.67,"stall_ms":0.02,"io_percent":77.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":63.2,"idle_ms":191.29,"stall_ms":0.02,"io_percent":74.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.81,"idle_ms":3.0,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":16.31,"idle_ms":2.88,"stall_ms":0.01,"io_percent":17.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.74,"idle_ms":10.78,"stall_ms":0.01,"io_percent":32.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":22.04,"idle_ms":5.64,"stall_ms":72.97,"io_percent":5.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.11,"run_ms":23.18,"idle_ms":3.72,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.91,"idle_ms":13.95,"stall_ms":0.06,"io_percent":30.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.42,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":16.87,"idle_ms":2.68,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":4.68,"run_ms":14.55,"idle_ms":1.82,"stall_ms":0.0,"io_percent":11.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":56.05,"idle_ms":17.62,"stall_ms":0.01,"io_percent":24.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.07,"run_ms":18.41,"idle_ms":2.85,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.7,"run_ms":6.06,"idle_ms":0.04,"stall_ms":68.13,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":3.99,"run_ms":34.84,"idle_ms":3.54,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.73,"idle_ms":1.91,"stall_ms":0.0,"io_percent":16.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.66,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":2.2,"run_ms":33.16,"idle_ms":3.52,"stall_ms":0.01,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.3,"run_ms":31.04,"idle_ms":2.71,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.92,"idle_ms":8.46,"stall_ms":0.01,"io_percent":31.1,"method":"GET","action":"users#show"} | |
{"gc_ms":1.22,"run_ms":32.42,"idle_ms":3.82,"stall_ms":0.13,"io_percent":11.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.58,"idle_ms":0.0,"stall_ms":0.0,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":17.54,"idle_ms":2.98,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.17,"run_ms":16.79,"idle_ms":3.22,"stall_ms":0.01,"io_percent":18.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.33,"run_ms":21.69,"idle_ms":3.38,"stall_ms":0.01,"io_percent":15.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":35.86,"idle_ms":3.59,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.15,"idle_ms":2.61,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":30.69,"idle_ms":3.55,"stall_ms":0.01,"io_percent":11.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":28.48,"idle_ms":10.82,"stall_ms":0.01,"io_percent":28.0,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":1.33,"run_ms":17.84,"idle_ms":3.32,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":34.89,"idle_ms":20.31,"stall_ms":0.01,"io_percent":37.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.58,"run_ms":33.62,"idle_ms":12.87,"stall_ms":0.01,"io_percent":27.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.34,"run_ms":19.94,"idle_ms":3.66,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":9.78,"run_ms":38.35,"idle_ms":3.71,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":5.81,"idle_ms":0.06,"stall_ms":107.18,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.21,"idle_ms":2.18,"stall_ms":0.0,"io_percent":17.2,"method":"GET","action":"users#show"} | |
{"gc_ms":6.03,"run_ms":23.47,"idle_ms":3.03,"stall_ms":0.01,"io_percent":12.9,"method":"GET","action":"home#index"} | |
{"gc_ms":4.34,"run_ms":63.12,"idle_ms":20.29,"stall_ms":0.02,"io_percent":24.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.13,"run_ms":35.87,"idle_ms":16.18,"stall_ms":0.01,"io_percent":31.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.52,"idle_ms":2.69,"stall_ms":0.06,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.38,"idle_ms":2.85,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.83,"idle_ms":0.77,"stall_ms":0.0,"io_percent":5.7,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.82,"run_ms":41.28,"idle_ms":5.6,"stall_ms":0.01,"io_percent":13.3,"method":"GET","action":"home#index"} | |
{"gc_ms":2.63,"run_ms":126.66,"idle_ms":44.16,"stall_ms":0.02,"io_percent":27.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.99,"run_ms":40.48,"idle_ms":16.95,"stall_ms":0.02,"io_percent":29.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.38,"run_ms":10.34,"idle_ms":1.5,"stall_ms":0.0,"io_percent":12.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.36,"run_ms":26.0,"idle_ms":10.31,"stall_ms":0.01,"io_percent":28.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":15.03,"idle_ms":2.68,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.16,"idle_ms":0.94,"stall_ms":0.0,"io_percent":6.6,"method":"GET","action":"login#index"} | |
{"gc_ms":0.69,"run_ms":10.12,"idle_ms":1.96,"stall_ms":0.0,"io_percent":15.9,"method":"GET","action":"users#show"} | |
{"gc_ms":4.1,"run_ms":20.27,"idle_ms":2.69,"stall_ms":0.01,"io_percent":13.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":99.82,"idle_ms":113.16,"stall_ms":0.02,"io_percent":54.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.17,"run_ms":41.9,"idle_ms":10.08,"stall_ms":0.01,"io_percent":18.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.28,"run_ms":40.94,"idle_ms":18.29,"stall_ms":0.01,"io_percent":31.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.29,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":39.09,"idle_ms":16.94,"stall_ms":0.02,"io_percent":30.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.3,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.23,"run_ms":42.72,"idle_ms":66.15,"stall_ms":0.02,"io_percent":61.1,"method":"POST","action":"comments#create"} | |
{"gc_ms":0.0,"run_ms":10.98,"idle_ms":2.26,"stall_ms":0.0,"io_percent":17.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.21,"run_ms":9.78,"idle_ms":2.11,"stall_ms":0.0,"io_percent":17.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.25,"run_ms":5.33,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.07,"idle_ms":1.96,"stall_ms":0.0,"io_percent":13.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":13.05,"idle_ms":3.75,"stall_ms":0.0,"io_percent":22.0,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":15.33,"run_ms":138.27,"idle_ms":37.99,"stall_ms":82.41,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.59,"run_ms":126.97,"idle_ms":44.66,"stall_ms":0.24,"io_percent":27.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.83,"run_ms":36.29,"idle_ms":15.4,"stall_ms":0.01,"io_percent":28.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.56,"idle_ms":2.87,"stall_ms":94.08,"io_percent":2.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":32.92,"idle_ms":14.27,"stall_ms":0.01,"io_percent":29.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.74,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":125.71,"idle_ms":35.83,"stall_ms":77.23,"io_percent":16.8,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":8.93,"idle_ms":1.91,"stall_ms":0.0,"io_percent":17.5,"method":"GET","action":"users#show"} | |
{"gc_ms":8.5,"run_ms":39.41,"idle_ms":3.27,"stall_ms":0.01,"io_percent":8.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":33.27,"idle_ms":14.9,"stall_ms":0.01,"io_percent":31.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.11,"run_ms":8.05,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.93,"run_ms":18.11,"idle_ms":8.85,"stall_ms":0.01,"io_percent":33.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.95,"run_ms":8.36,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.93,"idle_ms":4.03,"stall_ms":0.0,"io_percent":23.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":51.75,"idle_ms":17.91,"stall_ms":0.02,"io_percent":25.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.99,"run_ms":41.69,"idle_ms":4.23,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"home#index"} | |
{"gc_ms":5.61,"run_ms":78.51,"idle_ms":323.77,"stall_ms":0.17,"io_percent":80.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.26,"idle_ms":0.95,"stall_ms":0.0,"io_percent":8.3,"method":"HEAD"} | |
{"gc_ms":1.55,"run_ms":60.87,"idle_ms":111.69,"stall_ms":0.02,"io_percent":65.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.96,"idle_ms":2.93,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.32,"run_ms":35.87,"idle_ms":3.65,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.53,"run_ms":32.92,"idle_ms":3.61,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":35.15,"idle_ms":3.51,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":4.93,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":55.63,"idle_ms":195.63,"stall_ms":0.01,"io_percent":77.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.87,"idle_ms":1.02,"stall_ms":0.0,"io_percent":10.3,"method":"GET","action":"login#index"} | |
{"gc_ms":0.55,"run_ms":9.68,"idle_ms":4.81,"stall_ms":138.36,"io_percent":3.2,"method":"GET","action":"users#show"} | |
{"gc_ms":4.5,"run_ms":63.7,"idle_ms":360.68,"stall_ms":0.03,"io_percent":84.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.12,"run_ms":17.43,"idle_ms":169.95,"stall_ms":0.01,"io_percent":90.8,"method":"GET","action":"comments#reply"} | |
{"gc_ms":0.92,"run_ms":22.3,"idle_ms":6.81,"stall_ms":0.01,"io_percent":23.5,"method":"GET","action":"comments#reply"} | |
{"gc_ms":0.0,"run_ms":9.56,"idle_ms":1.42,"stall_ms":0.0,"io_percent":13.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.28,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":25.19,"idle_ms":3.18,"stall_ms":0.01,"io_percent":11.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":5.23,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":17.2,"idle_ms":8.57,"stall_ms":0.01,"io_percent":33.6,"method":"GET","action":"comments#edit"} | |
{"gc_ms":0.0,"run_ms":10.61,"idle_ms":6.29,"stall_ms":0.0,"io_percent":36.2,"method":"GET","action":"users#show"} | |
{"gc_ms":5.62,"run_ms":36.98,"idle_ms":2.67,"stall_ms":0.06,"io_percent":7.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.34,"run_ms":10.73,"idle_ms":2.05,"stall_ms":154.88,"io_percent":1.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.26,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":33.99,"idle_ms":3.56,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.43,"idle_ms":1.62,"stall_ms":0.0,"io_percent":16.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":15.46,"idle_ms":2.8,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"home#index"} | |
{"gc_ms":5.82,"run_ms":28.67,"idle_ms":10.82,"stall_ms":0.01,"io_percent":27.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":8.17,"run_ms":44.4,"idle_ms":13.46,"stall_ms":0.01,"io_percent":23.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.58,"run_ms":21.51,"idle_ms":9.92,"stall_ms":0.01,"io_percent":31.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.21,"run_ms":39.85,"idle_ms":4.23,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.86,"idle_ms":3.38,"stall_ms":0.01,"io_percent":18.7,"method":"GET","action":"home#index"} | |
{"gc_ms":7.31,"run_ms":38.88,"idle_ms":3.4,"stall_ms":0.01,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.98,"run_ms":10.81,"idle_ms":1.83,"stall_ms":0.0,"io_percent":14.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.69,"run_ms":16.65,"idle_ms":2.78,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.8,"run_ms":16.27,"idle_ms":2.74,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.31,"idle_ms":11.08,"stall_ms":0.01,"io_percent":32.2,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":5.8,"idle_ms":0.81,"stall_ms":0.0,"io_percent":12.3,"method":"HEAD","action":"stories#new"} | |
{"gc_ms":1.74,"run_ms":30.99,"idle_ms":11.97,"stall_ms":0.01,"io_percent":28.2,"method":"HEAD","action":"home#for_origin"} | |
{"gc_ms":1.86,"run_ms":32.16,"idle_ms":3.42,"stall_ms":0.01,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.58,"run_ms":9.35,"idle_ms":0.62,"stall_ms":0.0,"io_percent":6.3,"method":"HEAD","action":"login#index"} | |
{"gc_ms":0.83,"run_ms":16.53,"idle_ms":3.47,"stall_ms":0.0,"io_percent":17.5,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":0.0,"run_ms":5.87,"idle_ms":0.6,"stall_ms":0.0,"io_percent":9.3,"method":"GET","action":"stories#new"} | |
{"gc_ms":2.31,"run_ms":45.42,"idle_ms":4.44,"stall_ms":0.26,"io_percent":9.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.66,"run_ms":21.23,"idle_ms":43.49,"stall_ms":0.01,"io_percent":67.5,"method":"PATCH","action":"comments#update"} | |
{"gc_ms":0.31,"run_ms":11.0,"idle_ms":0.79,"stall_ms":0.0,"io_percent":6.7,"method":"GET","action":"login#index"} | |
{"gc_ms":1.17,"run_ms":17.86,"idle_ms":3.23,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.71,"run_ms":34.63,"idle_ms":12.5,"stall_ms":0.01,"io_percent":26.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.24,"run_ms":15.45,"idle_ms":2.78,"stall_ms":0.01,"io_percent":17.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.55,"run_ms":22.32,"idle_ms":165.25,"stall_ms":0.01,"io_percent":88.2,"method":"GET","action":"comments#reply"} | |
{"gc_ms":2.28,"run_ms":38.17,"idle_ms":14.38,"stall_ms":0.01,"io_percent":26.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":18.34,"idle_ms":3.99,"stall_ms":0.01,"io_percent":21.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.06,"run_ms":30.37,"idle_ms":3.25,"stall_ms":0.01,"io_percent":10.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.59,"run_ms":16.69,"idle_ms":2.81,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.3,"run_ms":54.09,"idle_ms":17.12,"stall_ms":0.99,"io_percent":23.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.32,"idle_ms":0.04,"stall_ms":70.58,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":1.57,"run_ms":11.06,"idle_ms":1.96,"stall_ms":0.0,"io_percent":13.9,"method":"GET","action":"users#show"} | |
{"gc_ms":2.2,"run_ms":32.91,"idle_ms":3.37,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":30.91,"idle_ms":3.56,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.25,"run_ms":5.6,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":17.18,"idle_ms":3.64,"stall_ms":0.01,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.9,"idle_ms":1.63,"stall_ms":0.0,"io_percent":14.2,"method":"GET","action":"users#show"} | |
{"gc_ms":1.45,"run_ms":22.06,"idle_ms":9.06,"stall_ms":0.01,"io_percent":29.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.23,"run_ms":45.19,"idle_ms":4.21,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.46,"run_ms":18.26,"idle_ms":3.18,"stall_ms":74.36,"io_percent":3.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":64.49,"idle_ms":258.75,"stall_ms":0.01,"io_percent":80.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.72,"idle_ms":3.17,"stall_ms":69.12,"io_percent":3.9,"method":"GET","action":"home#index"} | |
{"gc_ms":7.26,"run_ms":47.06,"idle_ms":12.07,"stall_ms":0.01,"io_percent":20.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.08,"run_ms":75.78,"idle_ms":20.98,"stall_ms":0.02,"io_percent":21.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.52,"idle_ms":2.89,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.69,"idle_ms":1.12,"stall_ms":0.0,"io_percent":5.6,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.73,"idle_ms":5.05,"stall_ms":0.0,"io_percent":30.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.29,"run_ms":14.1,"idle_ms":2.2,"stall_ms":0.45,"io_percent":7.4,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":44.51,"idle_ms":5.1,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.3,"run_ms":11.64,"idle_ms":2.23,"stall_ms":0.0,"io_percent":16.2,"method":"HEAD","action":"users#show"} | |
{"gc_ms":11.79,"run_ms":111.7,"idle_ms":27.87,"stall_ms":69.9,"io_percent":13.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.79,"run_ms":25.51,"idle_ms":10.18,"stall_ms":0.01,"io_percent":28.8,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.61,"run_ms":41.01,"idle_ms":15.16,"stall_ms":0.01,"io_percent":27.2,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.66,"run_ms":100.75,"idle_ms":45.55,"stall_ms":0.02,"io_percent":34.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":31.08,"idle_ms":3.51,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":8.65,"run_ms":43.98,"idle_ms":13.67,"stall_ms":0.02,"io_percent":23.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.2,"idle_ms":0.04,"stall_ms":73.63,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":3.81,"run_ms":36.37,"idle_ms":3.56,"stall_ms":0.13,"io_percent":9.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.92,"run_ms":64.97,"idle_ms":301.7,"stall_ms":0.03,"io_percent":82.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.09,"run_ms":124.64,"idle_ms":38.63,"stall_ms":0.02,"io_percent":27.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.91,"run_ms":10.33,"idle_ms":1.99,"stall_ms":0.0,"io_percent":16.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":21.51,"idle_ms":10.94,"stall_ms":0.01,"io_percent":34.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.41,"run_ms":37.86,"idle_ms":3.62,"stall_ms":0.12,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.48,"run_ms":28.77,"idle_ms":7.45,"stall_ms":0.01,"io_percent":20.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":40.91,"idle_ms":14.04,"stall_ms":0.01,"io_percent":22.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.45,"run_ms":37.81,"idle_ms":3.35,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.09,"run_ms":34.89,"idle_ms":9.17,"stall_ms":0.01,"io_percent":21.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":31.61,"idle_ms":3.59,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":34.66,"idle_ms":4.06,"stall_ms":0.1,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.54,"run_ms":17.96,"idle_ms":2.85,"stall_ms":0.17,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.28,"run_ms":28.01,"idle_ms":10.22,"stall_ms":0.02,"io_percent":25.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":9.15,"run_ms":84.51,"idle_ms":18.78,"stall_ms":0.02,"io_percent":18.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.25,"run_ms":35.06,"idle_ms":9.77,"stall_ms":0.01,"io_percent":21.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.05,"run_ms":17.0,"idle_ms":2.74,"stall_ms":0.01,"io_percent":16.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":4.76,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.93,"run_ms":6.88,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.79,"run_ms":12.0,"idle_ms":3.55,"stall_ms":0.0,"io_percent":23.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.48,"run_ms":17.91,"idle_ms":2.99,"stall_ms":71.16,"io_percent":3.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.35,"run_ms":21.71,"idle_ms":3.68,"stall_ms":0.06,"io_percent":13.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":38.11,"idle_ms":3.57,"stall_ms":0.01,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":10.57,"run_ms":119.53,"idle_ms":2452.44,"stall_ms":0.02,"io_percent":96.0,"method":"GET","action":"home#active"} | |
{"gc_ms":1.71,"run_ms":21.72,"idle_ms":6.72,"stall_ms":132.14,"io_percent":4.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.63,"run_ms":7.49,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.37,"run_ms":15.98,"idle_ms":2.81,"stall_ms":0.01,"io_percent":17.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":30.19,"idle_ms":3.32,"stall_ms":0.01,"io_percent":10.7,"method":"GET","action":"home#index"} | |
{"gc_ms":3.86,"run_ms":35.88,"idle_ms":3.36,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.42,"idle_ms":1.64,"stall_ms":0.0,"io_percent":13.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":9.09,"idle_ms":1.99,"stall_ms":0.0,"io_percent":18.1,"method":"GET","action":"users#show"} | |
{"gc_ms":1.05,"run_ms":27.59,"idle_ms":8.25,"stall_ms":69.93,"io_percent":8.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.92,"run_ms":19.05,"idle_ms":2.77,"stall_ms":0.01,"io_percent":14.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.42,"run_ms":75.13,"idle_ms":15.34,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.45,"run_ms":25.53,"idle_ms":4.04,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":45.83,"run_ms":92.91,"idle_ms":16.58,"stall_ms":0.01,"io_percent":15.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":20.08,"run_ms":41.97,"idle_ms":3.18,"stall_ms":0.01,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":4.24,"run_ms":42.75,"idle_ms":15.9,"stall_ms":0.01,"io_percent":27.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.94,"run_ms":37.65,"idle_ms":2.5,"stall_ms":0.01,"io_percent":6.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":7.23,"idle_ms":0.57,"stall_ms":0.0,"io_percent":7.3,"method":"GET","action":"stories#new"} | |
{"gc_ms":13.37,"run_ms":12.66,"idle_ms":0.07,"stall_ms":84.28,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":1.28,"run_ms":37.48,"idle_ms":10.05,"stall_ms":0.01,"io_percent":20.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.68,"run_ms":20.77,"idle_ms":3.06,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.95,"run_ms":35.56,"idle_ms":3.5,"stall_ms":71.0,"io_percent":3.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.62,"run_ms":11.43,"idle_ms":3.49,"stall_ms":0.0,"io_percent":19.3,"method":"GET","action":"users#show"} | |
{"gc_ms":1.24,"run_ms":35.56,"idle_ms":4.66,"stall_ms":0.01,"io_percent":10.5,"method":"GET","action":"home#index"} | |
{"gc_ms":44.65,"run_ms":87.59,"idle_ms":3.5,"stall_ms":0.01,"io_percent":4.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.43,"run_ms":6.62,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.38,"idle_ms":2.9,"stall_ms":0.01,"io_percent":18.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.45,"run_ms":10.79,"idle_ms":1.76,"stall_ms":0.0,"io_percent":14.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":31.65,"idle_ms":3.74,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.72,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.26,"run_ms":10.12,"idle_ms":1.77,"stall_ms":0.0,"io_percent":14.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":9.31,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.52,"run_ms":11.06,"idle_ms":1.67,"stall_ms":0.0,"io_percent":12.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.67,"run_ms":11.37,"idle_ms":1.79,"stall_ms":0.0,"io_percent":13.7,"method":"HEAD","action":"users#show"} | |
{"gc_ms":1.73,"run_ms":37.21,"idle_ms":2.64,"stall_ms":0.01,"io_percent":7.0,"method":"GET","action":"home#active"} | |
{"gc_ms":9.99,"run_ms":53.7,"idle_ms":25.91,"stall_ms":0.07,"io_percent":29.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.84,"idle_ms":2.85,"stall_ms":69.88,"io_percent":3.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.53,"idle_ms":0.72,"stall_ms":0.0,"io_percent":7.7,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":10.58,"idle_ms":196.64,"stall_ms":0.0,"io_percent":93.9,"method":"GET","action":"home#newest"} | |
{"gc_ms":6.41,"run_ms":45.37,"idle_ms":15.13,"stall_ms":0.01,"io_percent":25.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.7,"run_ms":42.13,"idle_ms":3.21,"stall_ms":0.06,"io_percent":7.5,"method":"GET","action":"home#active"} | |
{"gc_ms":0.44,"run_ms":8.32,"idle_ms":0.09,"stall_ms":0.0,"io_percent":1.1,"method":"GET"} | |
{"gc_ms":0.42,"run_ms":9.16,"idle_ms":1.16,"stall_ms":0.0,"io_percent":11.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":65.57,"idle_ms":262.36,"stall_ms":0.03,"io_percent":80.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.47,"run_ms":17.9,"idle_ms":3.16,"stall_ms":0.16,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.87,"run_ms":13.64,"idle_ms":2.99,"stall_ms":0.0,"io_percent":17.9,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":1.75,"run_ms":33.15,"idle_ms":17.1,"stall_ms":0.01,"io_percent":34.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":55.17,"idle_ms":316.66,"stall_ms":0.02,"io_percent":85.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.68,"run_ms":37.55,"idle_ms":8.92,"stall_ms":0.01,"io_percent":19.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.84,"run_ms":33.77,"idle_ms":3.54,"stall_ms":0.01,"io_percent":10.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.21,"run_ms":6.37,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.43,"idle_ms":1.66,"stall_ms":0.0,"io_percent":15.1,"method":"GET","action":"users#show"} | |
{"gc_ms":1.48,"run_ms":33.61,"idle_ms":15.86,"stall_ms":0.01,"io_percent":32.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":87.46,"idle_ms":45.64,"stall_ms":0.02,"io_percent":38.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":10.15,"run_ms":51.27,"idle_ms":14.15,"stall_ms":0.06,"io_percent":17.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.1,"run_ms":21.31,"idle_ms":5.27,"stall_ms":4.11,"io_percent":12.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.39,"run_ms":20.65,"idle_ms":7.53,"stall_ms":0.01,"io_percent":20.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.45,"run_ms":87.55,"idle_ms":49.3,"stall_ms":0.01,"io_percent":30.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.41,"run_ms":111.36,"idle_ms":75.31,"stall_ms":0.02,"io_percent":36.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":12.08,"run_ms":142.01,"idle_ms":101.38,"stall_ms":0.03,"io_percent":47.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":9.09,"run_ms":128.69,"idle_ms":38.57,"stall_ms":109.22,"io_percent":12.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.55,"run_ms":123.29,"idle_ms":75.78,"stall_ms":0.02,"io_percent":34.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":22.33,"idle_ms":3.95,"stall_ms":0.02,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.22,"run_ms":40.41,"idle_ms":11.64,"stall_ms":0.01,"io_percent":22.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.55,"run_ms":6.18,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.7,"method":"GET"} | |
{"gc_ms":0.41,"run_ms":10.63,"idle_ms":1.52,"stall_ms":0.0,"io_percent":12.5,"method":"GET","action":"users#show"} | |
{"gc_ms":8.65,"run_ms":54.74,"idle_ms":16.5,"stall_ms":0.01,"io_percent":24.1,"method":"HEAD","action":"home#for_domain"} | |
{"gc_ms":2.69,"run_ms":115.37,"idle_ms":51.19,"stall_ms":0.02,"io_percent":34.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.46,"run_ms":29.13,"idle_ms":2.1,"stall_ms":0.01,"io_percent":7.2,"method":"GET","action":"home#top"} | |
{"gc_ms":0.82,"run_ms":22.99,"idle_ms":3.64,"stall_ms":0.01,"io_percent":13.9,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.26,"run_ms":41.78,"idle_ms":10.28,"stall_ms":0.02,"io_percent":19.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.87,"idle_ms":3.23,"stall_ms":0.01,"io_percent":19.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.39,"run_ms":109.67,"idle_ms":102.58,"stall_ms":105.43,"io_percent":33.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":36.02,"idle_ms":3.62,"stall_ms":0.08,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.25,"run_ms":16.28,"idle_ms":2.84,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.04,"run_ms":38.12,"idle_ms":3.56,"stall_ms":0.01,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":7.01,"run_ms":86.38,"idle_ms":519.45,"stall_ms":108.21,"io_percent":73.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.33,"run_ms":7.78,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.96,"idle_ms":1.92,"stall_ms":0.0,"io_percent":15.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.57,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":27.96,"idle_ms":8.43,"stall_ms":0.01,"io_percent":23.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.02,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.7,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.93,"idle_ms":1.94,"stall_ms":0.0,"io_percent":14.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.63,"run_ms":12.15,"idle_ms":2.05,"stall_ms":0.0,"io_percent":12.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.37,"run_ms":14.93,"idle_ms":2.67,"stall_ms":0.07,"io_percent":17.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.94,"run_ms":16.62,"idle_ms":2.86,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":7.85,"run_ms":72.78,"idle_ms":56.49,"stall_ms":0.02,"io_percent":43.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":70.86,"idle_ms":17.68,"stall_ms":0.02,"io_percent":20.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.96,"run_ms":34.31,"idle_ms":11.69,"stall_ms":0.01,"io_percent":24.7,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":0.0,"run_ms":11.17,"idle_ms":1.78,"stall_ms":0.0,"io_percent":13.9,"method":"GET","action":"users#show"} | |
{"gc_ms":3.73,"run_ms":128.68,"idle_ms":60.26,"stall_ms":0.04,"io_percent":35.3,"method":"HEAD","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":26.8,"idle_ms":2.74,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":15.44,"idle_ms":2.94,"stall_ms":0.01,"io_percent":19.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.69,"idle_ms":2.71,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.09,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.66,"run_ms":10.43,"idle_ms":2.21,"stall_ms":0.0,"io_percent":17.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":29.13,"idle_ms":3.44,"stall_ms":0.01,"io_percent":11.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.1,"idle_ms":2.63,"stall_ms":69.2,"io_percent":3.4,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":20.29,"idle_ms":3.96,"stall_ms":0.01,"io_percent":19.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":107.07,"idle_ms":24.26,"stall_ms":0.02,"io_percent":20.8,"method":"GET","action":"home#index"} | |
{"gc_ms":5.59,"run_ms":46.23,"idle_ms":14.63,"stall_ms":0.02,"io_percent":24.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.3,"run_ms":9.88,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":3.41,"run_ms":73.36,"idle_ms":322.75,"stall_ms":0.63,"io_percent":79.5,"method":"GET","action":"home#index"} | |
{"gc_ms":7.65,"run_ms":79.87,"idle_ms":305.17,"stall_ms":0.02,"io_percent":79.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":13.42,"idle_ms":1.88,"stall_ms":0.0,"io_percent":12.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":16.71,"idle_ms":2.84,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":20.17,"idle_ms":3.2,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":2.99,"run_ms":82.95,"idle_ms":12.34,"stall_ms":0.02,"io_percent":12.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":72.1,"idle_ms":13.9,"stall_ms":0.02,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.25,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":160.22,"idle_ms":36.24,"stall_ms":0.03,"io_percent":20.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":26.36,"idle_ms":3.85,"stall_ms":0.01,"io_percent":6.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.69,"run_ms":14.68,"idle_ms":3.46,"stall_ms":0.01,"io_percent":11.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":9.19,"idle_ms":0.04,"stall_ms":153.63,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":4.73,"run_ms":139.84,"idle_ms":83.41,"stall_ms":0.03,"io_percent":30.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.85,"run_ms":148.32,"idle_ms":101.57,"stall_ms":0.03,"io_percent":36.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":15.53,"run_ms":171.55,"idle_ms":86.72,"stall_ms":0.1,"io_percent":28.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":150.76,"idle_ms":144.49,"stall_ms":0.03,"io_percent":44.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.24,"run_ms":19.5,"idle_ms":3.61,"stall_ms":0.01,"io_percent":18.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.26,"run_ms":14.81,"idle_ms":1.87,"stall_ms":0.0,"io_percent":11.3,"method":"GET","action":"users#show"} | |
{"gc_ms":2.79,"run_ms":207.0,"idle_ms":44.15,"stall_ms":0.03,"io_percent":16.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":13.86,"run_ms":138.49,"idle_ms":3.75,"stall_ms":0.01,"io_percent":2.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.7,"run_ms":72.57,"idle_ms":14.91,"stall_ms":0.02,"io_percent":17.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":41.98,"idle_ms":21.97,"stall_ms":0.01,"io_percent":21.6,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":46.94,"idle_ms":5.57,"stall_ms":0.01,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":169.71,"idle_ms":86.9,"stall_ms":0.03,"io_percent":30.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":63.85,"run_ms":280.59,"idle_ms":145.89,"stall_ms":0.02,"io_percent":21.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":74.87,"idle_ms":2.27,"stall_ms":85.6,"io_percent":0.5,"method":"GET","action":"login#index"} | |
{"gc_ms":2.49,"run_ms":57.68,"idle_ms":2.29,"stall_ms":170.55,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":17.74,"run_ms":892.11,"idle_ms":357.93,"stall_ms":111.39,"io_percent":15.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":30.02,"idle_ms":241.37,"stall_ms":204.9,"io_percent":35.0,"method":"GET"} | |
{"gc_ms":1.45,"run_ms":23.08,"idle_ms":219.32,"stall_ms":318.46,"io_percent":32.5,"method":"GET","action":"users#show"} | |
{"gc_ms":11.91,"run_ms":434.74,"idle_ms":347.12,"stall_ms":143.27,"io_percent":13.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":548.04,"idle_ms":807.18,"stall_ms":289.58,"io_percent":26.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":70.01,"run_ms":152.96,"idle_ms":118.93,"stall_ms":1238.77,"io_percent":6.7,"method":"GET","action":"home#index"} | |
{"gc_ms":6.46,"run_ms":208.56,"idle_ms":451.83,"stall_ms":691.73,"io_percent":25.3,"method":"GET","action":"home#index"} | |
{"gc_ms":71.08,"run_ms":277.68,"idle_ms":411.83,"stall_ms":541.11,"io_percent":18.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.66,"run_ms":273.12,"idle_ms":334.79,"stall_ms":70.72,"io_percent":18.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.0,"run_ms":46.8,"idle_ms":485.52,"stall_ms":32.04,"io_percent":84.7,"method":"GET","action":"home#index"} | |
{"gc_ms":4.08,"run_ms":264.52,"idle_ms":670.32,"stall_ms":0.51,"io_percent":39.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.46,"run_ms":81.8,"idle_ms":252.87,"stall_ms":1564.06,"io_percent":12.8,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":1.45,"run_ms":37.99,"idle_ms":423.38,"stall_ms":57.29,"io_percent":80.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":45.93,"idle_ms":309.16,"stall_ms":670.59,"io_percent":27.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.61,"run_ms":411.02,"idle_ms":1055.47,"stall_ms":1369.05,"io_percent":32.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":275.38,"idle_ms":435.99,"stall_ms":63.18,"io_percent":19.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":32.68,"idle_ms":22.31,"stall_ms":0.02,"io_percent":14.6,"method":"GET","action":"home#index"} | |
{"gc_ms":6.33,"run_ms":90.26,"idle_ms":737.39,"stall_ms":116.03,"io_percent":58.6,"method":"GET","action":"home#index"} | |
{"gc_ms":9.89,"run_ms":411.49,"idle_ms":1083.42,"stall_ms":514.48,"io_percent":32.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.78,"run_ms":39.37,"idle_ms":536.88,"stall_ms":572.82,"io_percent":46.6,"method":"GET","action":"home#index"} | |
{"gc_ms":7.25,"run_ms":120.32,"idle_ms":451.42,"stall_ms":0.11,"io_percent":54.9,"method":"GET","action":"home#index"} | |
{"gc_ms":7.78,"run_ms":142.64,"idle_ms":912.3,"stall_ms":633.81,"io_percent":42.9,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":2.3,"run_ms":142.56,"idle_ms":741.92,"stall_ms":492.39,"io_percent":47.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.54,"run_ms":66.41,"idle_ms":76.31,"stall_ms":606.98,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.05,"run_ms":34.9,"idle_ms":18.73,"stall_ms":0.01,"io_percent":25.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":216.26,"idle_ms":757.2,"stall_ms":952.45,"io_percent":34.1,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.89,"run_ms":15.32,"idle_ms":0.73,"stall_ms":0.0,"io_percent":3.0,"method":"GET"} | |
{"gc_ms":0.71,"run_ms":13.46,"idle_ms":3.35,"stall_ms":0.0,"io_percent":16.2,"method":"GET"} | |
{"gc_ms":8.95,"run_ms":63.67,"idle_ms":26.44,"stall_ms":0.02,"io_percent":27.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.42,"run_ms":21.78,"idle_ms":6.3,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.9,"run_ms":58.59,"idle_ms":15.35,"stall_ms":0.68,"io_percent":14.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":27.62,"idle_ms":5.2,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.55,"run_ms":26.72,"idle_ms":5.72,"stall_ms":3.27,"io_percent":12.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":56.18,"idle_ms":7.64,"stall_ms":123.2,"io_percent":4.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.2,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.36,"idle_ms":1.86,"stall_ms":0.0,"io_percent":10.8,"method":"GET","action":"users#show"} | |
{"gc_ms":2.1,"run_ms":140.17,"idle_ms":85.27,"stall_ms":0.03,"io_percent":32.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":9.81,"idle_ms":0.07,"stall_ms":181.47,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":1.19,"run_ms":32.77,"idle_ms":14.55,"stall_ms":0.01,"io_percent":25.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":61.2,"idle_ms":23.99,"stall_ms":0.01,"io_percent":23.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":19.66,"idle_ms":6.08,"stall_ms":0.06,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.22,"run_ms":18.76,"idle_ms":6.09,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":7.32,"run_ms":33.76,"idle_ms":5.74,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.21,"run_ms":23.38,"idle_ms":14.64,"stall_ms":0.01,"io_percent":20.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.35,"run_ms":23.33,"idle_ms":4.22,"stall_ms":0.01,"io_percent":14.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":53.86,"idle_ms":18.13,"stall_ms":0.01,"io_percent":22.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.37,"run_ms":24.91,"idle_ms":3.71,"stall_ms":0.24,"io_percent":12.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.36,"run_ms":8.33,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":5.97,"run_ms":181.09,"idle_ms":64.48,"stall_ms":0.06,"io_percent":21.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.27,"run_ms":13.4,"idle_ms":4.59,"stall_ms":0.0,"io_percent":23.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":16.65,"idle_ms":4.96,"stall_ms":110.0,"io_percent":3.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.8,"run_ms":22.74,"idle_ms":5.47,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.47,"run_ms":7.83,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.5,"run_ms":14.35,"idle_ms":5.95,"stall_ms":0.0,"io_percent":29.8,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":6.84,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.32,"run_ms":20.37,"idle_ms":4.33,"stall_ms":0.0,"io_percent":6.1,"method":"GET","action":"users#show"} | |
{"gc_ms":1.03,"run_ms":14.05,"idle_ms":17.75,"stall_ms":0.01,"io_percent":40.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.89,"run_ms":20.97,"idle_ms":4.79,"stall_ms":0.16,"io_percent":12.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.3,"run_ms":123.91,"idle_ms":38.15,"stall_ms":0.02,"io_percent":16.1,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":52.73,"idle_ms":64.58,"stall_ms":0.02,"io_percent":25.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":8.85,"run_ms":49.05,"idle_ms":15.63,"stall_ms":0.13,"io_percent":22.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":26.28,"idle_ms":4.83,"stall_ms":0.01,"io_percent":11.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.99,"run_ms":84.03,"idle_ms":25.94,"stall_ms":0.02,"io_percent":20.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.06,"run_ms":21.32,"idle_ms":3.03,"stall_ms":0.01,"io_percent":11.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":27.77,"idle_ms":15.9,"stall_ms":0.01,"io_percent":34.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.35,"run_ms":53.08,"idle_ms":17.42,"stall_ms":0.01,"io_percent":22.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.15,"run_ms":27.57,"idle_ms":10.83,"stall_ms":0.01,"io_percent":28.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.65,"run_ms":39.65,"idle_ms":30.33,"stall_ms":0.01,"io_percent":36.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":106.85,"idle_ms":48.62,"stall_ms":1.68,"io_percent":31.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":18.14,"idle_ms":2.97,"stall_ms":0.01,"io_percent":12.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.86,"idle_ms":0.73,"stall_ms":0.0,"io_percent":4.9,"method":"GET","action":"stories#new"} | |
{"gc_ms":5.87,"run_ms":50.45,"idle_ms":30.38,"stall_ms":0.01,"io_percent":20.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.35,"run_ms":162.48,"idle_ms":45.21,"stall_ms":0.02,"io_percent":14.9,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.62,"run_ms":22.32,"idle_ms":5.23,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.15,"run_ms":9.24,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.91,"run_ms":15.11,"idle_ms":3.97,"stall_ms":0.0,"io_percent":18.9,"method":"GET","action":"users#show"} | |
{"gc_ms":4.76,"run_ms":112.36,"idle_ms":35.66,"stall_ms":0.04,"io_percent":22.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":9.02,"run_ms":56.01,"idle_ms":17.28,"stall_ms":0.01,"io_percent":19.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.31,"run_ms":24.42,"idle_ms":10.8,"stall_ms":0.01,"io_percent":26.6,"method":"GET","action":"users#show"} | |
{"gc_ms":4.68,"run_ms":87.15,"idle_ms":304.75,"stall_ms":0.03,"io_percent":73.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.08,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.73,"run_ms":14.53,"idle_ms":6.8,"stall_ms":0.0,"io_percent":24.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.83,"run_ms":44.26,"idle_ms":6.37,"stall_ms":0.01,"io_percent":10.6,"method":"GET","action":"home#index"} | |
{"gc_ms":7.23,"run_ms":32.77,"idle_ms":10.59,"stall_ms":0.27,"io_percent":18.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.62,"run_ms":23.91,"idle_ms":3.4,"stall_ms":0.01,"io_percent":10.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.37,"run_ms":25.29,"idle_ms":16.72,"stall_ms":0.01,"io_percent":32.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.92,"run_ms":27.76,"idle_ms":12.4,"stall_ms":0.01,"io_percent":28.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":10.4,"idle_ms":2.01,"stall_ms":0.0,"io_percent":15.0,"method":"HEAD","action":"users#show"} | |
{"gc_ms":5.35,"run_ms":150.67,"idle_ms":45.58,"stall_ms":0.03,"io_percent":22.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.59,"run_ms":7.68,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.92,"run_ms":14.25,"idle_ms":3.56,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.72,"run_ms":28.58,"idle_ms":3.19,"stall_ms":0.01,"io_percent":8.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.02,"idle_ms":2.3,"stall_ms":84.82,"io_percent":2.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":22.58,"idle_ms":7.76,"stall_ms":0.01,"io_percent":23.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":8.39,"run_ms":113.35,"idle_ms":70.3,"stall_ms":0.03,"io_percent":43.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.99,"run_ms":8.32,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":22.84,"idle_ms":6.38,"stall_ms":129.9,"io_percent":3.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":122.43,"idle_ms":50.24,"stall_ms":0.02,"io_percent":29.2,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":36.9,"idle_ms":18.47,"stall_ms":0.02,"io_percent":25.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.74,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":25.18,"idle_ms":3.85,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.58,"run_ms":18.1,"idle_ms":2.17,"stall_ms":0.0,"io_percent":7.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.89,"run_ms":51.55,"idle_ms":10.58,"stall_ms":0.15,"io_percent":11.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.82,"idle_ms":3.58,"stall_ms":103.17,"io_percent":3.1,"method":"GET","action":"users#show"} | |
{"gc_ms":3.48,"run_ms":56.2,"idle_ms":4.12,"stall_ms":0.01,"io_percent":5.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.5,"run_ms":47.74,"idle_ms":13.41,"stall_ms":0.02,"io_percent":20.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.68,"run_ms":19.76,"idle_ms":3.17,"stall_ms":148.44,"io_percent":1.9,"method":"GET","action":"home#index"} | |
{"gc_ms":4.18,"run_ms":76.45,"idle_ms":450.29,"stall_ms":0.13,"io_percent":83.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.65,"run_ms":30.63,"idle_ms":9.76,"stall_ms":0.01,"io_percent":24.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.32,"run_ms":55.17,"idle_ms":4.44,"stall_ms":0.01,"io_percent":5.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":34.39,"idle_ms":3.34,"stall_ms":0.01,"io_percent":9.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.28,"run_ms":7.69,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":22.77,"idle_ms":3.72,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.04,"run_ms":13.53,"idle_ms":3.12,"stall_ms":0.0,"io_percent":18.8,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":127.18,"idle_ms":91.33,"stall_ms":0.03,"io_percent":45.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":20.12,"idle_ms":3.79,"stall_ms":0.01,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":3.52,"run_ms":40.32,"idle_ms":3.66,"stall_ms":0.01,"io_percent":8.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.18,"idle_ms":2.7,"stall_ms":0.01,"io_percent":17.8,"method":"GET","action":"home#index"} | |
{"gc_ms":64.97,"run_ms":117.06,"idle_ms":5.3,"stall_ms":0.01,"io_percent":4.4,"method":"GET","action":"home#index"} | |
{"gc_ms":10.64,"run_ms":17.99,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":1.84,"run_ms":26.27,"idle_ms":7.07,"stall_ms":0.01,"io_percent":20.7,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":24.56,"run_ms":43.97,"idle_ms":2.94,"stall_ms":0.01,"io_percent":6.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":16.81,"idle_ms":2.95,"stall_ms":0.01,"io_percent":17.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.77,"run_ms":11.57,"idle_ms":1.6,"stall_ms":0.0,"io_percent":10.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.16,"run_ms":41.04,"idle_ms":4.71,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.88,"run_ms":17.59,"idle_ms":2.77,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":141.96,"idle_ms":27.38,"stall_ms":0.03,"io_percent":16.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":42.6,"run_ms":103.27,"idle_ms":392.34,"stall_ms":0.02,"io_percent":78.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.85,"run_ms":22.76,"idle_ms":4.35,"stall_ms":0.03,"io_percent":18.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.56,"run_ms":22.21,"idle_ms":3.18,"stall_ms":0.01,"io_percent":14.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.78,"run_ms":45.77,"idle_ms":3.07,"stall_ms":0.41,"io_percent":6.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.4,"run_ms":61.21,"idle_ms":86.85,"stall_ms":0.02,"io_percent":61.0,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":1.8,"run_ms":104.08,"idle_ms":321.86,"stall_ms":0.04,"io_percent":75.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":47.22,"idle_ms":6.28,"stall_ms":215.41,"io_percent":2.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.32,"run_ms":35.27,"idle_ms":12.5,"stall_ms":0.01,"io_percent":24.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":10.45,"idle_ms":0.2,"stall_ms":134.12,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":13.97,"idle_ms":1.0,"stall_ms":0.0,"io_percent":5.6,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":15.95,"idle_ms":2.31,"stall_ms":0.19,"io_percent":10.6,"method":"GET","action":"users#show"} | |
{"gc_ms":2.03,"run_ms":35.15,"idle_ms":11.18,"stall_ms":0.01,"io_percent":22.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":58.37,"idle_ms":17.03,"stall_ms":0.02,"io_percent":22.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":9.3,"idle_ms":0.05,"stall_ms":0.0,"io_percent":0.6,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.52,"idle_ms":2.49,"stall_ms":0.0,"io_percent":14.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":19.54,"idle_ms":3.05,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":12.79,"idle_ms":1.17,"stall_ms":0.0,"io_percent":8.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.68,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":1.67,"run_ms":43.38,"idle_ms":4.12,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.96,"run_ms":16.02,"idle_ms":3.39,"stall_ms":0.0,"io_percent":17.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":10.21,"idle_ms":1.19,"stall_ms":0.0,"io_percent":8.8,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":11.3,"idle_ms":0.86,"stall_ms":0.0,"io_percent":7.1,"method":"GET","action":"login#index"} | |
{"gc_ms":0.84,"run_ms":34.29,"idle_ms":11.61,"stall_ms":0.01,"io_percent":25.4,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.57,"run_ms":19.66,"idle_ms":3.49,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":3.61,"run_ms":148.35,"idle_ms":132.09,"stall_ms":0.02,"io_percent":47.3,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.45,"run_ms":8.76,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.7,"run_ms":10.79,"idle_ms":2.22,"stall_ms":0.0,"io_percent":17.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":15.82,"idle_ms":2.64,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.68,"run_ms":41.52,"idle_ms":3.57,"stall_ms":0.01,"io_percent":8.3,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":6.87,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.76,"idle_ms":1.76,"stall_ms":0.0,"io_percent":16.8,"method":"GET","action":"users#show"} | |
{"gc_ms":4.31,"run_ms":25.59,"idle_ms":12.92,"stall_ms":0.01,"io_percent":33.6,"method":"GET","action":"users#show"} | |
{"gc_ms":1.26,"run_ms":46.76,"idle_ms":370.55,"stall_ms":0.02,"io_percent":88.7,"method":"GET","action":"suggestions#new"} | |
{"gc_ms":0.0,"run_ms":10.7,"idle_ms":1.89,"stall_ms":0.0,"io_percent":12.8,"method":"GET","action":"users#show"} | |
{"gc_ms":3.7,"run_ms":26.08,"idle_ms":6.66,"stall_ms":0.01,"io_percent":20.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":19.88,"idle_ms":6.1,"stall_ms":0.01,"io_percent":23.7,"method":"GET","action":"users#show"} | |
{"gc_ms":4.78,"run_ms":43.7,"idle_ms":14.35,"stall_ms":0.01,"io_percent":24.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.43,"idle_ms":2.63,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":39.65,"idle_ms":3.98,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"home#index"} | |
{"gc_ms":2.01,"run_ms":19.09,"idle_ms":2.91,"stall_ms":0.03,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":30.43,"idle_ms":3.42,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.73,"run_ms":21.61,"idle_ms":9.33,"stall_ms":0.02,"io_percent":30.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.97,"run_ms":21.77,"idle_ms":4.55,"stall_ms":0.41,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.26,"idle_ms":4.77,"stall_ms":0.05,"io_percent":21.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":24.28,"idle_ms":1.9,"stall_ms":0.0,"io_percent":6.8,"method":"GET","action":"home#top"} | |
{"gc_ms":0.49,"run_ms":29.47,"idle_ms":8.12,"stall_ms":0.01,"io_percent":21.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":105.98,"idle_ms":30.73,"stall_ms":98.44,"io_percent":14.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.64,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":21.32,"idle_ms":7.43,"stall_ms":111.16,"io_percent":5.5,"method":"GET","action":"users#show"} | |
{"gc_ms":1.92,"run_ms":47.98,"idle_ms":6.22,"stall_ms":113.14,"io_percent":3.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.97,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":26.21,"idle_ms":7.67,"stall_ms":0.01,"io_percent":20.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":23.74,"idle_ms":7.04,"stall_ms":76.53,"io_percent":6.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":27.12,"idle_ms":7.41,"stall_ms":0.01,"io_percent":21.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":28.85,"idle_ms":6.99,"stall_ms":0.01,"io_percent":19.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":17.11,"idle_ms":2.97,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.36,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.14,"idle_ms":2.11,"stall_ms":0.0,"io_percent":18.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":11.05,"idle_ms":1.92,"stall_ms":0.0,"io_percent":14.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":26.17,"idle_ms":7.71,"stall_ms":0.01,"io_percent":22.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":25.8,"idle_ms":6.83,"stall_ms":0.01,"io_percent":20.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":26.37,"idle_ms":7.9,"stall_ms":0.01,"io_percent":22.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":8.06,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":7.04,"idle_ms":1.09,"stall_ms":0.08,"io_percent":11.7,"method":"GET"} | |
{"gc_ms":10.7,"run_ms":61.27,"idle_ms":22.41,"stall_ms":0.02,"io_percent":26.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":27.69,"idle_ms":13.28,"stall_ms":0.01,"io_percent":30.1,"method":"GET","action":"users#show"} | |
{"gc_ms":4.83,"run_ms":46.76,"idle_ms":16.63,"stall_ms":0.02,"io_percent":26.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":47.29,"idle_ms":4.11,"stall_ms":0.01,"io_percent":8.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.13,"run_ms":15.98,"idle_ms":2.18,"stall_ms":0.0,"io_percent":10.4,"method":"HEAD","action":"users#show"} | |
{"gc_ms":2.1,"run_ms":12.95,"idle_ms":1.99,"stall_ms":0.0,"io_percent":13.4,"method":"GET","action":"users#show"} | |
{"gc_ms":2.29,"run_ms":28.31,"idle_ms":7.82,"stall_ms":0.01,"io_percent":21.8,"method":"GET","action":"users#show"} | |
{"gc_ms":3.82,"run_ms":15.78,"idle_ms":2.74,"stall_ms":0.0,"io_percent":13.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.81,"run_ms":29.92,"idle_ms":13.66,"stall_ms":0.01,"io_percent":31.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":115.28,"idle_ms":35.66,"stall_ms":0.02,"io_percent":26.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":5.53,"run_ms":27.33,"idle_ms":7.41,"stall_ms":0.01,"io_percent":21.3,"method":"GET","action":"users#show"} | |
{"gc_ms":3.61,"run_ms":27.92,"idle_ms":7.88,"stall_ms":0.01,"io_percent":22.0,"method":"GET","action":"users#show"} | |
{"gc_ms":1.53,"run_ms":32.2,"idle_ms":3.63,"stall_ms":0.01,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":2.98,"run_ms":52.86,"idle_ms":4.41,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":3.0,"run_ms":31.9,"idle_ms":9.22,"stall_ms":0.01,"io_percent":21.8,"method":"GET","action":"users#show"} | |
{"gc_ms":2.31,"run_ms":48.99,"idle_ms":14.0,"stall_ms":0.01,"io_percent":19.2,"method":"GET","action":"home#index"} | |
{"gc_ms":5.76,"run_ms":47.42,"idle_ms":4.34,"stall_ms":0.09,"io_percent":8.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.66,"run_ms":21.13,"idle_ms":3.5,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":3.69,"run_ms":30.14,"idle_ms":8.14,"stall_ms":80.27,"io_percent":7.0,"method":"GET","action":"users#show"} | |
{"gc_ms":1.14,"run_ms":14.69,"idle_ms":1.89,"stall_ms":0.0,"io_percent":11.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.75,"run_ms":24.44,"idle_ms":6.44,"stall_ms":0.01,"io_percent":20.3,"method":"GET","action":"users#show"} | |
{"gc_ms":1.04,"run_ms":43.94,"idle_ms":15.89,"stall_ms":0.02,"io_percent":26.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.02,"run_ms":10.53,"idle_ms":0.1,"stall_ms":0.0,"io_percent":0.7,"method":"GET"} | |
{"gc_ms":2.5,"run_ms":30.82,"idle_ms":3.63,"stall_ms":125.11,"io_percent":2.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.77,"run_ms":23.2,"idle_ms":6.29,"stall_ms":0.01,"io_percent":21.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.6,"run_ms":21.56,"idle_ms":7.19,"stall_ms":85.93,"io_percent":6.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.79,"run_ms":21.87,"idle_ms":6.71,"stall_ms":0.01,"io_percent":23.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":10.23,"idle_ms":1.92,"stall_ms":0.01,"io_percent":16.0,"method":"GET","action":"users#show"} | |
{"gc_ms":1.19,"run_ms":27.77,"idle_ms":6.63,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":12.65,"idle_ms":1.97,"stall_ms":0.0,"io_percent":13.1,"method":"GET","action":"users#show"} | |
{"gc_ms":1.44,"run_ms":20.33,"idle_ms":6.14,"stall_ms":0.01,"io_percent":23.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":20.11,"idle_ms":3.71,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.57,"run_ms":7.64,"idle_ms":0.8,"stall_ms":0.0,"io_percent":9.3,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.61,"run_ms":21.11,"idle_ms":10.77,"stall_ms":0.01,"io_percent":31.2,"method":"GET","action":"users#show"} | |
{"gc_ms":4.13,"run_ms":42.18,"idle_ms":7.89,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.22,"run_ms":25.16,"idle_ms":8.62,"stall_ms":0.01,"io_percent":25.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.42,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.45,"run_ms":9.62,"idle_ms":0.66,"stall_ms":0.0,"io_percent":6.3,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":9.94,"idle_ms":2.08,"stall_ms":0.0,"io_percent":17.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.93,"run_ms":24.33,"idle_ms":4.24,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.3,"run_ms":16.44,"idle_ms":2.74,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.95,"run_ms":23.5,"idle_ms":5.69,"stall_ms":0.01,"io_percent":19.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":9.56,"idle_ms":1.34,"stall_ms":70.67,"io_percent":1.7,"method":"GET"} | |
{"gc_ms":2.83,"run_ms":29.89,"idle_ms":7.12,"stall_ms":0.01,"io_percent":18.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":18.48,"idle_ms":5.72,"stall_ms":0.01,"io_percent":21.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":34.37,"idle_ms":11.19,"stall_ms":0.01,"io_percent":25.1,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":2.94,"run_ms":39.68,"idle_ms":15.94,"stall_ms":0.02,"io_percent":28.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.92,"run_ms":119.55,"idle_ms":83.85,"stall_ms":0.02,"io_percent":44.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":21.41,"idle_ms":6.39,"stall_ms":0.01,"io_percent":23.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":18.82,"idle_ms":5.85,"stall_ms":0.01,"io_percent":23.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.67,"run_ms":24.14,"idle_ms":6.23,"stall_ms":0.01,"io_percent":20.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.57,"run_ms":28.47,"idle_ms":5.06,"stall_ms":0.01,"io_percent":10.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":15.92,"idle_ms":2.94,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.84,"run_ms":24.03,"idle_ms":6.55,"stall_ms":0.01,"io_percent":21.2,"method":"GET","action":"users#show"} | |
{"gc_ms":2.33,"run_ms":26.32,"idle_ms":6.99,"stall_ms":0.01,"io_percent":21.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.86,"run_ms":10.79,"idle_ms":1.89,"stall_ms":0.0,"io_percent":14.7,"method":"GET","action":"users#show"} | |
{"gc_ms":1.5,"run_ms":22.12,"idle_ms":6.79,"stall_ms":0.01,"io_percent":23.7,"method":"GET","action":"users#show"} | |
{"gc_ms":3.41,"run_ms":51.34,"idle_ms":4.68,"stall_ms":0.01,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.05,"idle_ms":5.69,"stall_ms":0.01,"io_percent":21.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.69,"run_ms":6.82,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.54,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":27.21,"idle_ms":11.61,"stall_ms":0.01,"io_percent":29.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.31,"run_ms":16.71,"idle_ms":3.05,"stall_ms":98.52,"io_percent":2.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.08,"run_ms":14.43,"idle_ms":1.74,"stall_ms":0.0,"io_percent":10.8,"method":"GET","action":"users#show"} | |
{"gc_ms":1.21,"run_ms":28.62,"idle_ms":2.86,"stall_ms":0.01,"io_percent":8.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":13.17,"run_ms":125.91,"idle_ms":58.0,"stall_ms":0.08,"io_percent":34.8,"method":"GET","action":"home#multi_tag"} | |
{"gc_ms":0.0,"run_ms":16.95,"idle_ms":2.82,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.65,"idle_ms":1.73,"stall_ms":0.0,"io_percent":15.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":62.29,"idle_ms":15.48,"stall_ms":0.02,"io_percent":20.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.75,"run_ms":7.97,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":6.05,"run_ms":17.02,"idle_ms":1.8,"stall_ms":0.0,"io_percent":7.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.74,"run_ms":9.5,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":2.1,"run_ms":14.25,"idle_ms":1.93,"stall_ms":0.0,"io_percent":11.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":45.77,"idle_ms":4.52,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.68,"run_ms":27.58,"idle_ms":6.76,"stall_ms":0.01,"io_percent":19.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.76,"run_ms":42.24,"idle_ms":31.81,"stall_ms":0.02,"io_percent":43.3,"method":"POST","action":"suggestions#create"} | |
{"gc_ms":2.26,"run_ms":36.72,"idle_ms":16.45,"stall_ms":0.01,"io_percent":31.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.53,"run_ms":16.97,"idle_ms":2.79,"stall_ms":0.06,"io_percent":14.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.8,"idle_ms":0.04,"stall_ms":72.42,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.04,"idle_ms":6.25,"stall_ms":0.0,"io_percent":34.6,"method":"GET","action":"users#show"} | |
{"gc_ms":11.12,"run_ms":87.71,"idle_ms":13.17,"stall_ms":0.02,"io_percent":13.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.5,"run_ms":53.35,"idle_ms":463.57,"stall_ms":0.02,"io_percent":89.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.17,"idle_ms":3.61,"stall_ms":0.09,"io_percent":19.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.76,"run_ms":132.44,"idle_ms":39.96,"stall_ms":0.03,"io_percent":27.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.4,"run_ms":17.78,"idle_ms":4.03,"stall_ms":0.01,"io_percent":21.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.15,"run_ms":24.47,"idle_ms":10.42,"stall_ms":0.01,"io_percent":30.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.22,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.62,"run_ms":25.28,"idle_ms":10.16,"stall_ms":0.01,"io_percent":29.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":5.51,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":12.84,"idle_ms":1.97,"stall_ms":0.0,"io_percent":13.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":56.25,"idle_ms":124.37,"stall_ms":64.72,"io_percent":51.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":11.11,"run_ms":156.92,"idle_ms":84.84,"stall_ms":0.03,"io_percent":40.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.35,"run_ms":117.82,"idle_ms":42.05,"stall_ms":0.03,"io_percent":29.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":22.16,"idle_ms":3.73,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":3.07,"run_ms":47.74,"idle_ms":4.15,"stall_ms":0.08,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":1.4,"run_ms":34.42,"idle_ms":5.65,"stall_ms":0.01,"io_percent":11.7,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.8,"run_ms":32.01,"idle_ms":8.96,"stall_ms":0.01,"io_percent":22.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.87,"run_ms":31.46,"idle_ms":8.88,"stall_ms":0.01,"io_percent":22.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.53,"run_ms":21.11,"idle_ms":3.41,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":17.97,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"HEAD"} | |
{"gc_ms":0.51,"run_ms":13.42,"idle_ms":2.17,"stall_ms":0.0,"io_percent":14.0,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.17,"run_ms":21.24,"idle_ms":3.18,"stall_ms":0.01,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.21,"run_ms":10.34,"idle_ms":0.76,"stall_ms":0.0,"io_percent":5.2,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.88,"run_ms":16.27,"idle_ms":0.67,"stall_ms":1.82,"io_percent":3.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":27.62,"idle_ms":12.2,"stall_ms":0.02,"io_percent":29.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.31,"run_ms":31.09,"idle_ms":207.66,"stall_ms":0.02,"io_percent":84.2,"method":"GET","action":"comments#reply"} | |
{"gc_ms":2.81,"run_ms":54.57,"idle_ms":5.15,"stall_ms":0.01,"io_percent":8.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.88,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.92,"idle_ms":2.14,"stall_ms":0.0,"io_percent":15.3,"method":"GET","action":"users#show"} | |
{"gc_ms":2.19,"run_ms":48.84,"idle_ms":16.18,"stall_ms":0.02,"io_percent":24.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":9.39,"idle_ms":0.79,"stall_ms":0.0,"io_percent":7.7,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":8.25,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":3.23,"run_ms":51.38,"idle_ms":4.33,"stall_ms":0.1,"io_percent":8.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.19,"run_ms":11.62,"idle_ms":1.95,"stall_ms":0.01,"io_percent":14.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":25.34,"idle_ms":6.95,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.57,"run_ms":27.4,"idle_ms":13.42,"stall_ms":95.91,"io_percent":9.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.23,"run_ms":15.6,"idle_ms":2.7,"stall_ms":0.0,"io_percent":14.4,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.34,"run_ms":10.25,"idle_ms":0.72,"stall_ms":0.0,"io_percent":6.6,"method":"GET","action":"login#index"} | |
{"gc_ms":0.09,"run_ms":17.47,"idle_ms":2.92,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":35.47,"idle_ms":3.82,"stall_ms":0.01,"io_percent":10.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.44,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.78,"idle_ms":4.39,"stall_ms":0.0,"io_percent":21.6,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":18.4,"idle_ms":7.07,"stall_ms":0.01,"io_percent":31.0,"method":"GET","action":"home#index"} | |
{"gc_ms":2.52,"run_ms":77.94,"idle_ms":136.5,"stall_ms":0.02,"io_percent":63.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":9.98,"idle_ms":2.11,"stall_ms":0.0,"io_percent":17.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.54,"run_ms":26.7,"idle_ms":8.08,"stall_ms":0.01,"io_percent":23.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.05,"idle_ms":2.22,"stall_ms":110.08,"io_percent":1.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":15.08,"idle_ms":0.82,"stall_ms":0.0,"io_percent":4.9,"method":"GET","action":"login#index"} | |
{"gc_ms":0.55,"run_ms":28.65,"idle_ms":11.17,"stall_ms":0.01,"io_percent":28.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":8.02,"run_ms":145.72,"idle_ms":34.63,"stall_ms":0.03,"io_percent":22.6,"method":"GET","action":"home#index"} | |
{"gc_ms":9.21,"run_ms":135.49,"idle_ms":32.71,"stall_ms":72.87,"io_percent":14.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.22,"run_ms":97.27,"idle_ms":58.26,"stall_ms":0.02,"io_percent":42.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":6.73,"run_ms":43.34,"idle_ms":16.15,"stall_ms":0.01,"io_percent":26.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.92,"run_ms":17.75,"idle_ms":3.06,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.91,"run_ms":19.99,"idle_ms":4.13,"stall_ms":0.01,"io_percent":14.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.93,"idle_ms":6.54,"stall_ms":0.01,"io_percent":21.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.54,"idle_ms":0.06,"stall_ms":81.12,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.3,"idle_ms":2.08,"stall_ms":0.0,"io_percent":15.7,"method":"GET","action":"users#show"} | |
{"gc_ms":4.14,"run_ms":51.94,"idle_ms":3.98,"stall_ms":0.21,"io_percent":5.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.23,"run_ms":17.39,"idle_ms":2.88,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.41,"run_ms":8.32,"idle_ms":0.07,"stall_ms":83.91,"io_percent":0.1,"method":"HEAD"} | |
{"gc_ms":0.52,"run_ms":28.8,"idle_ms":12.95,"stall_ms":0.01,"io_percent":26.1,"method":"GET","action":"users#show"} | |
{"gc_ms":3.4,"run_ms":46.26,"idle_ms":7.98,"stall_ms":0.01,"io_percent":14.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.0,"run_ms":44.05,"idle_ms":10.75,"stall_ms":0.01,"io_percent":19.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.51,"idle_ms":2.97,"stall_ms":0.01,"io_percent":15.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.73,"run_ms":50.11,"idle_ms":4.69,"stall_ms":0.01,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":8.18,"run_ms":149.16,"idle_ms":59.85,"stall_ms":0.03,"io_percent":31.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.54,"run_ms":23.4,"idle_ms":3.9,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.28,"run_ms":23.79,"idle_ms":6.21,"stall_ms":0.01,"io_percent":20.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.63,"run_ms":22.33,"idle_ms":3.74,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":2.41,"run_ms":19.35,"idle_ms":2.99,"stall_ms":0.0,"io_percent":13.4,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.0,"run_ms":6.37,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":8.56,"run_ms":136.44,"idle_ms":30.67,"stall_ms":0.66,"io_percent":20.7,"method":"HEAD","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":6.51,"idle_ms":0.04,"stall_ms":0.0,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":37.31,"idle_ms":3.69,"stall_ms":0.01,"io_percent":9.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":10.85,"idle_ms":1.81,"stall_ms":0.0,"io_percent":14.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":9.44,"idle_ms":2.65,"stall_ms":0.0,"io_percent":22.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.23,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.0,"idle_ms":1.82,"stall_ms":0.0,"io_percent":15.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.72,"run_ms":22.52,"idle_ms":5.78,"stall_ms":0.01,"io_percent":23.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.56,"idle_ms":0.04,"stall_ms":97.69,"io_percent":0.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":22.1,"idle_ms":8.94,"stall_ms":0.01,"io_percent":28.4,"method":"GET","action":"users#show"} | |
{"gc_ms":6.49,"run_ms":68.42,"idle_ms":87.53,"stall_ms":0.02,"io_percent":55.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":46.24,"idle_ms":15.91,"stall_ms":0.02,"io_percent":25.9,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.85,"idle_ms":2.9,"stall_ms":0.01,"io_percent":14.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.91,"idle_ms":7.8,"stall_ms":0.01,"io_percent":19.8,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":5.04,"run_ms":30.45,"idle_ms":10.04,"stall_ms":0.01,"io_percent":25.0,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":7.47,"run_ms":41.54,"idle_ms":3.47,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.29,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":0.54,"run_ms":13.39,"idle_ms":2.01,"stall_ms":0.0,"io_percent":13.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.72,"run_ms":31.01,"idle_ms":11.54,"stall_ms":0.01,"io_percent":27.4,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":2.6,"run_ms":27.01,"idle_ms":7.73,"stall_ms":0.01,"io_percent":22.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.51,"run_ms":11.66,"idle_ms":1.76,"stall_ms":0.0,"io_percent":12.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":65.43,"idle_ms":75.74,"stall_ms":0.02,"io_percent":52.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.64,"run_ms":39.85,"idle_ms":4.2,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":132.54,"idle_ms":24.51,"stall_ms":69.93,"io_percent":12.0,"method":"GET","action":"home#index"} | |
{"gc_ms":1.54,"run_ms":16.66,"idle_ms":6.31,"stall_ms":0.01,"io_percent":26.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.69,"run_ms":75.46,"idle_ms":107.21,"stall_ms":0.02,"io_percent":52.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.19,"run_ms":10.35,"idle_ms":0.49,"stall_ms":0.0,"io_percent":4.4,"method":"GET"} | |
{"gc_ms":0.68,"run_ms":10.17,"idle_ms":3.93,"stall_ms":0.12,"io_percent":27.8,"method":"GET"} | |
{"gc_ms":3.0,"run_ms":37.8,"idle_ms":4.81,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":4.97,"run_ms":77.42,"idle_ms":262.62,"stall_ms":0.05,"io_percent":77.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.15,"run_ms":17.76,"idle_ms":2.8,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.14,"run_ms":16.84,"idle_ms":3.26,"stall_ms":0.01,"io_percent":19.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.42,"run_ms":33.38,"idle_ms":4.59,"stall_ms":0.01,"io_percent":12.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":41.12,"idle_ms":4.25,"stall_ms":0.01,"io_percent":10.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":14.62,"idle_ms":2.7,"stall_ms":0.01,"io_percent":18.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.64,"run_ms":41.39,"idle_ms":18.15,"stall_ms":0.11,"io_percent":30.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":21.4,"idle_ms":3.58,"stall_ms":0.01,"io_percent":14.3,"method":"GET","action":"home#index"} | |
{"gc_ms":2.13,"run_ms":115.66,"idle_ms":61.08,"stall_ms":0.02,"io_percent":38.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":14.39,"run_ms":133.15,"idle_ms":70.79,"stall_ms":0.08,"io_percent":37.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.12,"run_ms":21.78,"idle_ms":3.85,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":25.73,"idle_ms":7.19,"stall_ms":0.01,"io_percent":21.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.34,"run_ms":10.16,"idle_ms":3.03,"stall_ms":111.57,"io_percent":2.5,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.2,"run_ms":18.6,"idle_ms":2.95,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.14,"idle_ms":3.19,"stall_ms":0.01,"io_percent":12.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":34.25,"idle_ms":104.16,"stall_ms":0.01,"io_percent":73.2,"method":"GET","action":"users#show"} | |
{"gc_ms":2.46,"run_ms":59.98,"idle_ms":118.01,"stall_ms":0.01,"io_percent":63.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":56.79,"idle_ms":23.58,"stall_ms":0.02,"io_percent":29.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.71,"run_ms":20.31,"idle_ms":3.29,"stall_ms":0.01,"io_percent":16.0,"method":"GET","action":"home#index"} | |
{"gc_ms":3.69,"run_ms":174.13,"idle_ms":78.86,"stall_ms":0.03,"io_percent":33.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":10.81,"run_ms":53.88,"idle_ms":4.34,"stall_ms":0.01,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.34,"run_ms":19.02,"idle_ms":3.22,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.45,"run_ms":18.03,"idle_ms":3.21,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":40.43,"idle_ms":17.73,"stall_ms":0.02,"io_percent":30.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":40.87,"idle_ms":4.12,"stall_ms":0.01,"io_percent":9.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.68,"run_ms":8.84,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":2.02,"run_ms":44.79,"idle_ms":19.64,"stall_ms":0.02,"io_percent":30.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.75,"run_ms":31.17,"idle_ms":13.14,"stall_ms":0.01,"io_percent":27.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":163.28,"idle_ms":72.72,"stall_ms":0.03,"io_percent":33.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":127.75,"idle_ms":64.98,"stall_ms":0.02,"io_percent":38.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.89,"run_ms":18.13,"idle_ms":3.83,"stall_ms":0.01,"io_percent":17.4,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.72,"run_ms":21.43,"idle_ms":4.35,"stall_ms":0.01,"io_percent":19.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.76,"run_ms":18.64,"idle_ms":3.14,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":24.27,"idle_ms":6.69,"stall_ms":115.78,"io_percent":4.3,"method":"GET","action":"home#index"} | |
{"gc_ms":11.32,"run_ms":236.32,"idle_ms":137.81,"stall_ms":0.08,"io_percent":47.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.34,"run_ms":19.11,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.27,"run_ms":11.72,"idle_ms":1.88,"stall_ms":0.0,"io_percent":13.9,"method":"GET","action":"users#show"} | |
{"gc_ms":2.78,"run_ms":142.35,"idle_ms":106.18,"stall_ms":0.03,"io_percent":46.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.04,"run_ms":21.44,"idle_ms":3.75,"stall_ms":82.04,"io_percent":3.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.91,"run_ms":110.99,"idle_ms":26.25,"stall_ms":0.02,"io_percent":21.1,"method":"GET","action":"home#top"} | |
{"gc_ms":9.09,"run_ms":37.56,"idle_ms":7.5,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.16,"run_ms":32.17,"idle_ms":8.47,"stall_ms":82.3,"io_percent":7.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":22.96,"idle_ms":3.43,"stall_ms":0.01,"io_percent":13.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.56,"run_ms":18.11,"idle_ms":2.92,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.5,"run_ms":18.24,"idle_ms":2.94,"stall_ms":0.01,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.7,"idle_ms":3.43,"stall_ms":0.01,"io_percent":14.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":40.23,"idle_ms":16.88,"stall_ms":0.02,"io_percent":29.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":26.41,"idle_ms":7.75,"stall_ms":0.03,"io_percent":22.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":47.92,"idle_ms":12.17,"stall_ms":0.02,"io_percent":20.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.25,"idle_ms":5.04,"stall_ms":0.0,"io_percent":23.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":22.61,"idle_ms":3.73,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":36.12,"idle_ms":50.18,"stall_ms":0.01,"io_percent":58.4,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.7,"run_ms":20.8,"idle_ms":3.1,"stall_ms":0.01,"io_percent":14.9,"method":"GET","action":"home#index"} | |
{"gc_ms":2.29,"run_ms":40.38,"idle_ms":5.33,"stall_ms":0.01,"io_percent":10.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.59,"run_ms":18.82,"idle_ms":2.79,"stall_ms":0.01,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":32.02,"idle_ms":14.77,"stall_ms":0.01,"io_percent":30.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.76,"run_ms":39.5,"idle_ms":3.97,"stall_ms":121.54,"io_percent":2.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":42.68,"idle_ms":11.38,"stall_ms":0.01,"io_percent":19.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":55.07,"idle_ms":17.63,"stall_ms":0.01,"io_percent":23.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.6,"run_ms":42.01,"idle_ms":15.59,"stall_ms":0.02,"io_percent":23.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.79,"run_ms":84.55,"idle_ms":59.26,"stall_ms":0.02,"io_percent":40.8,"method":"GET","action":"home#index"} | |
{"gc_ms":11.86,"run_ms":77.99,"idle_ms":16.97,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":7.13,"run_ms":73.69,"idle_ms":245.32,"stall_ms":0.03,"io_percent":77.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.62,"run_ms":22.86,"idle_ms":8.59,"stall_ms":0.01,"io_percent":26.8,"method":"GET","action":"users#show"} | |
{"gc_ms":3.86,"run_ms":61.18,"idle_ms":16.64,"stall_ms":0.02,"io_percent":21.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.24,"run_ms":44.39,"idle_ms":4.27,"stall_ms":0.3,"io_percent":8.6,"method":"GET","action":"home#index"} | |
{"gc_ms":5.22,"run_ms":43.24,"idle_ms":3.65,"stall_ms":0.01,"io_percent":8.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.76,"run_ms":7.18,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.79,"run_ms":61.71,"idle_ms":24.25,"stall_ms":0.02,"io_percent":28.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.94,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":9.58,"run_ms":72.99,"idle_ms":18.93,"stall_ms":0.02,"io_percent":20.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.79,"run_ms":13.87,"idle_ms":2.39,"stall_ms":0.0,"io_percent":14.6,"method":"GET","action":"users#show"} | |
{"gc_ms":1.49,"run_ms":31.97,"idle_ms":12.5,"stall_ms":0.01,"io_percent":25.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.58,"run_ms":12.14,"idle_ms":1.95,"stall_ms":0.0,"io_percent":13.9,"method":"HEAD","action":"users#show"} | |
{"gc_ms":3.59,"run_ms":48.28,"idle_ms":4.24,"stall_ms":0.01,"io_percent":7.5,"method":"GET","action":"home#index"} | |
{"gc_ms":4.15,"run_ms":42.0,"idle_ms":2.45,"stall_ms":0.01,"io_percent":5.8,"method":"GET","action":"home#top"} | |
{"gc_ms":0.32,"run_ms":31.74,"idle_ms":28.77,"stall_ms":0.02,"io_percent":47.8,"method":"POST","action":"stories#upvote"} | |
{"gc_ms":0.78,"run_ms":33.62,"idle_ms":3.58,"stall_ms":0.01,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.02,"idle_ms":3.62,"stall_ms":0.01,"io_percent":18.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.61,"run_ms":42.75,"idle_ms":17.02,"stall_ms":0.02,"io_percent":28.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.25,"run_ms":5.85,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":8.18,"idle_ms":0.62,"stall_ms":0.0,"io_percent":7.1,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.27,"run_ms":11.04,"idle_ms":2.08,"stall_ms":0.0,"io_percent":15.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.04,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.99,"run_ms":14.22,"idle_ms":1.93,"stall_ms":0.0,"io_percent":12.0,"method":"GET","action":"users#show"} | |
{"gc_ms":1.27,"run_ms":35.69,"idle_ms":3.35,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.42,"run_ms":19.94,"idle_ms":3.4,"stall_ms":0.01,"io_percent":16.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.73,"run_ms":12.56,"idle_ms":0.72,"stall_ms":0.0,"io_percent":5.4,"method":"HEAD"} | |
{"gc_ms":0.53,"run_ms":34.4,"idle_ms":12.91,"stall_ms":0.01,"io_percent":27.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.09,"run_ms":48.23,"idle_ms":5.53,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.08,"run_ms":132.49,"idle_ms":35.22,"stall_ms":0.02,"io_percent":22.1,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.32,"run_ms":9.72,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.28,"run_ms":11.59,"idle_ms":2.15,"stall_ms":0.0,"io_percent":14.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.64,"run_ms":149.78,"idle_ms":38.58,"stall_ms":0.03,"io_percent":23.0,"method":"GET","action":"home#index"} | |
{"gc_ms":3.33,"run_ms":160.12,"idle_ms":98.19,"stall_ms":0.02,"io_percent":41.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.48,"run_ms":46.29,"idle_ms":20.46,"stall_ms":97.13,"io_percent":12.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":35.33,"idle_ms":3.65,"stall_ms":0.01,"io_percent":10.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.32,"idle_ms":0.49,"stall_ms":0.0,"io_percent":4.0,"method":"GET","action":"login#index"} | |
{"gc_ms":0.17,"run_ms":36.91,"idle_ms":10.39,"stall_ms":0.01,"io_percent":20.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":32.0,"idle_ms":2.57,"stall_ms":0.01,"io_percent":8.0,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":5.8,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.6,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":12.65,"idle_ms":2.08,"stall_ms":0.0,"io_percent":13.3,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":37.05,"idle_ms":3.45,"stall_ms":0.08,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.6,"run_ms":50.93,"idle_ms":17.84,"stall_ms":0.02,"io_percent":26.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":42.82,"idle_ms":2.98,"stall_ms":0.01,"io_percent":6.1,"method":"GET","action":"home#top"} | |
{"gc_ms":1.06,"run_ms":44.66,"idle_ms":15.91,"stall_ms":0.01,"io_percent":26.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":16.67,"idle_ms":2.73,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":39.34,"idle_ms":3.48,"stall_ms":0.01,"io_percent":8.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.23,"run_ms":19.41,"idle_ms":2.82,"stall_ms":0.01,"io_percent":14.5,"method":"GET","action":"home#index"} | |
{"gc_ms":8.4,"run_ms":46.66,"idle_ms":3.88,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.37,"run_ms":23.2,"idle_ms":3.74,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":3.83,"run_ms":42.01,"idle_ms":3.57,"stall_ms":0.01,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.5,"run_ms":19.74,"idle_ms":7.9,"stall_ms":0.02,"io_percent":33.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.66,"run_ms":35.95,"idle_ms":17.23,"stall_ms":0.02,"io_percent":30.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":42.91,"idle_ms":19.44,"stall_ms":85.56,"io_percent":13.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.32,"run_ms":25.49,"idle_ms":13.04,"stall_ms":0.01,"io_percent":31.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.58,"run_ms":34.64,"idle_ms":10.2,"stall_ms":175.11,"io_percent":4.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.59,"run_ms":19.02,"idle_ms":2.84,"stall_ms":0.01,"io_percent":14.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.46,"run_ms":22.92,"idle_ms":13.06,"stall_ms":0.01,"io_percent":36.4,"method":"GET","action":"users#show"} | |
{"gc_ms":1.18,"run_ms":37.29,"idle_ms":11.65,"stall_ms":0.01,"io_percent":24.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":40.28,"idle_ms":3.09,"stall_ms":0.22,"io_percent":7.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.71,"run_ms":54.95,"idle_ms":18.17,"stall_ms":0.01,"io_percent":24.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.65,"run_ms":22.42,"idle_ms":5.55,"stall_ms":0.01,"io_percent":19.9,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":0.0,"run_ms":21.41,"idle_ms":9.66,"stall_ms":0.01,"io_percent":31.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.66,"run_ms":28.03,"idle_ms":3.43,"stall_ms":0.01,"io_percent":12.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.33,"run_ms":65.67,"idle_ms":135.89,"stall_ms":0.03,"io_percent":67.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":4.58,"run_ms":39.46,"idle_ms":3.68,"stall_ms":0.07,"io_percent":9.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":23.92,"idle_ms":7.21,"stall_ms":0.01,"io_percent":22.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.2,"run_ms":6.23,"idle_ms":0.06,"stall_ms":77.33,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.25,"run_ms":9.6,"idle_ms":3.5,"stall_ms":1.3,"io_percent":24.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.23,"run_ms":16.3,"idle_ms":2.95,"stall_ms":0.01,"io_percent":13.3,"method":"GET","action":"home#index"} | |
{"gc_ms":4.44,"run_ms":44.76,"idle_ms":2.42,"stall_ms":0.01,"io_percent":4.0,"method":"GET","action":"home#index"} | |
{"gc_ms":6.63,"run_ms":120.58,"idle_ms":72.51,"stall_ms":0.02,"io_percent":40.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.37,"run_ms":17.35,"idle_ms":5.49,"stall_ms":0.79,"io_percent":18.4,"method":"GET","action":"home#index"} | |
{"gc_ms":2.38,"run_ms":90.57,"idle_ms":36.91,"stall_ms":0.04,"io_percent":30.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":28.11,"idle_ms":7.49,"stall_ms":0.01,"io_percent":21.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":25.63,"idle_ms":7.07,"stall_ms":0.01,"io_percent":21.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.35,"run_ms":19.57,"idle_ms":3.18,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":93.37,"idle_ms":62.65,"stall_ms":0.02,"io_percent":43.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":148.91,"idle_ms":90.62,"stall_ms":0.06,"io_percent":41.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":6.18,"run_ms":52.26,"idle_ms":4.07,"stall_ms":0.01,"io_percent":7.5,"method":"GET","action":"home#index"} | |
{"gc_ms":9.19,"run_ms":32.15,"idle_ms":3.72,"stall_ms":2.45,"io_percent":10.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.28,"run_ms":41.28,"idle_ms":17.07,"stall_ms":0.01,"io_percent":26.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":8.98,"run_ms":43.16,"idle_ms":10.1,"stall_ms":0.01,"io_percent":17.8,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":2.13,"run_ms":25.91,"idle_ms":3.56,"stall_ms":0.01,"io_percent":13.7,"method":"GET","action":"home#index"} | |
{"gc_ms":5.11,"run_ms":37.95,"idle_ms":4.73,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.98,"run_ms":22.96,"idle_ms":10.83,"stall_ms":0.01,"io_percent":32.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.69,"run_ms":26.75,"idle_ms":66.26,"stall_ms":0.01,"io_percent":71.6,"method":"POST","action":"stories#upvote"} | |
{"gc_ms":2.85,"run_ms":36.19,"idle_ms":9.21,"stall_ms":0.01,"io_percent":19.9,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.0,"run_ms":12.3,"idle_ms":3.43,"stall_ms":0.0,"io_percent":21.8,"method":"GET","action":"home#newest_by_user"} | |
{"gc_ms":1.04,"run_ms":17.35,"idle_ms":2.9,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.03,"run_ms":37.07,"idle_ms":17.05,"stall_ms":0.04,"io_percent":29.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":32.16,"idle_ms":3.41,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.34,"run_ms":35.03,"idle_ms":18.54,"stall_ms":0.01,"io_percent":34.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.05,"run_ms":29.19,"idle_ms":6.92,"stall_ms":0.01,"io_percent":17.1,"method":"GET","action":"home#index"} | |
{"gc_ms":4.37,"run_ms":19.42,"idle_ms":2.8,"stall_ms":0.01,"io_percent":14.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.02,"run_ms":16.72,"idle_ms":2.86,"stall_ms":0.01,"io_percent":16.9,"method":"GET","action":"home#index"} | |
{"gc_ms":2.44,"run_ms":24.93,"idle_ms":12.85,"stall_ms":0.01,"io_percent":34.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.27,"run_ms":16.38,"idle_ms":3.0,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.89,"run_ms":37.21,"idle_ms":16.38,"stall_ms":0.01,"io_percent":30.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":29.94,"idle_ms":4.25,"stall_ms":0.01,"io_percent":13.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.13,"run_ms":21.41,"idle_ms":10.43,"stall_ms":0.01,"io_percent":28.6,"method":"GET","action":"users#show"} | |
{"gc_ms":1.47,"run_ms":38.23,"idle_ms":22.85,"stall_ms":0.01,"io_percent":33.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.87,"run_ms":52.75,"idle_ms":35.65,"stall_ms":82.31,"io_percent":21.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":14.31,"idle_ms":2.68,"stall_ms":0.01,"io_percent":18.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":51.45,"idle_ms":59.0,"stall_ms":0.01,"io_percent":53.5,"method":"GET","action":"home#index"} | |
{"gc_ms":6.58,"run_ms":43.14,"idle_ms":14.79,"stall_ms":0.01,"io_percent":20.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.29,"run_ms":17.91,"idle_ms":3.57,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":30.91,"idle_ms":3.39,"stall_ms":0.11,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.37,"run_ms":14.76,"idle_ms":2.84,"stall_ms":0.01,"io_percent":18.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.19,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.99,"run_ms":19.92,"idle_ms":9.65,"stall_ms":0.01,"io_percent":31.5,"method":"GET","action":"users#show"} | |
{"gc_ms":1.01,"run_ms":36.78,"idle_ms":10.29,"stall_ms":0.01,"io_percent":22.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":82.41,"run_ms":209.49,"idle_ms":34.27,"stall_ms":0.02,"io_percent":14.1,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":6.59,"run_ms":35.17,"idle_ms":14.62,"stall_ms":70.54,"io_percent":12.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":6.27,"run_ms":125.29,"idle_ms":2590.13,"stall_ms":0.11,"io_percent":95.6,"method":"GET","action":"home#active"} | |
{"gc_ms":0.86,"run_ms":20.06,"idle_ms":3.36,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":35.5,"run_ms":59.75,"idle_ms":6.19,"stall_ms":0.12,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":41.78,"idle_ms":3.5,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":6.8,"run_ms":40.03,"idle_ms":4.18,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.08,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.21,"run_ms":13.47,"idle_ms":2.29,"stall_ms":0.0,"io_percent":14.4,"method":"GET","action":"users#show"} | |
{"gc_ms":9.19,"run_ms":125.61,"idle_ms":26.3,"stall_ms":0.02,"io_percent":17.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.31,"run_ms":18.15,"idle_ms":2.83,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":8.83,"run_ms":138.3,"idle_ms":84.03,"stall_ms":0.04,"io_percent":43.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.84,"run_ms":125.13,"idle_ms":46.32,"stall_ms":0.02,"io_percent":30.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":2.73,"run_ms":21.94,"idle_ms":3.45,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.97,"run_ms":18.51,"idle_ms":3.93,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":36.64,"idle_ms":10.7,"stall_ms":0.01,"io_percent":22.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.75,"run_ms":19.8,"idle_ms":3.25,"stall_ms":0.07,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":45.16,"run_ms":78.56,"idle_ms":4.01,"stall_ms":0.01,"io_percent":5.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":141.42,"idle_ms":107.7,"stall_ms":0.04,"io_percent":46.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.85,"run_ms":22.51,"idle_ms":7.75,"stall_ms":0.01,"io_percent":25.3,"method":"GET","action":"users#show"} | |
{"gc_ms":1.14,"run_ms":26.41,"idle_ms":10.57,"stall_ms":0.01,"io_percent":28.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.77,"run_ms":37.99,"idle_ms":16.93,"stall_ms":0.01,"io_percent":31.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.88,"run_ms":17.62,"idle_ms":3.14,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.04,"run_ms":35.49,"idle_ms":19.9,"stall_ms":0.01,"io_percent":36.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.49,"run_ms":12.25,"idle_ms":0.78,"stall_ms":0.0,"io_percent":5.6,"method":"GET"} | |
{"gc_ms":0.89,"run_ms":23.69,"idle_ms":3.59,"stall_ms":0.02,"io_percent":15.1,"method":"GET","action":"home#index"} | |
{"gc_ms":1.37,"run_ms":40.25,"idle_ms":4.24,"stall_ms":0.01,"io_percent":10.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.91,"run_ms":9.93,"idle_ms":1.26,"stall_ms":0.0,"io_percent":11.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":30.25,"idle_ms":11.2,"stall_ms":0.01,"io_percent":27.1,"method":"HEAD","action":"stories#show"} | |
{"gc_ms":6.15,"run_ms":27.73,"idle_ms":2.67,"stall_ms":0.01,"io_percent":9.6,"method":"GET","action":"home#newest"} | |
{"gc_ms":4.63,"run_ms":124.88,"idle_ms":36.71,"stall_ms":0.03,"io_percent":27.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.46,"run_ms":117.85,"idle_ms":37.1,"stall_ms":130.13,"io_percent":14.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":106.02,"idle_ms":23.97,"stall_ms":0.02,"io_percent":18.5,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.4,"run_ms":20.09,"idle_ms":3.27,"stall_ms":0.32,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.77,"run_ms":19.26,"idle_ms":2.89,"stall_ms":0.01,"io_percent":14.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.61,"run_ms":15.45,"idle_ms":3.02,"stall_ms":0.0,"io_percent":16.2,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.1,"run_ms":17.51,"idle_ms":2.77,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":3.5,"run_ms":120.64,"idle_ms":2445.52,"stall_ms":0.03,"io_percent":96.0,"method":"GET","action":"home#active"} | |
{"gc_ms":0.76,"run_ms":29.82,"idle_ms":10.82,"stall_ms":0.01,"io_percent":26.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.07,"run_ms":22.63,"idle_ms":6.81,"stall_ms":0.01,"io_percent":23.1,"method":"GET","action":"users#show"} | |
{"gc_ms":3.63,"run_ms":79.44,"idle_ms":115.2,"stall_ms":70.83,"io_percent":44.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.32,"run_ms":23.06,"idle_ms":7.23,"stall_ms":0.01,"io_percent":23.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.06,"run_ms":5.58,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":1.05,"run_ms":36.35,"idle_ms":3.57,"stall_ms":0.17,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.52,"idle_ms":4.53,"stall_ms":0.01,"io_percent":20.6,"method":"GET","action":"home#index"} | |
{"gc_ms":6.43,"run_ms":151.13,"idle_ms":80.98,"stall_ms":79.81,"io_percent":27.5,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":32.95,"idle_ms":4.38,"stall_ms":0.01,"io_percent":12.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":18.74,"idle_ms":3.72,"stall_ms":0.01,"io_percent":19.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.58,"run_ms":12.74,"idle_ms":2.47,"stall_ms":0.0,"io_percent":16.1,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.44,"run_ms":15.88,"idle_ms":2.9,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.19,"run_ms":42.57,"idle_ms":18.38,"stall_ms":0.02,"io_percent":30.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":67.02,"idle_ms":132.36,"stall_ms":0.03,"io_percent":66.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":19.99,"idle_ms":3.98,"stall_ms":0.01,"io_percent":19.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.51,"run_ms":23.37,"idle_ms":9.55,"stall_ms":0.01,"io_percent":28.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.26,"run_ms":18.92,"idle_ms":3.08,"stall_ms":165.46,"io_percent":1.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.23,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":4.81,"run_ms":15.17,"idle_ms":1.87,"stall_ms":68.96,"io_percent":2.3,"method":"GET","action":"users#show"} | |
{"gc_ms":2.37,"run_ms":24.47,"idle_ms":6.64,"stall_ms":0.01,"io_percent":21.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":18.85,"idle_ms":3.48,"stall_ms":74.09,"io_percent":3.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.71,"run_ms":20.8,"idle_ms":3.6,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":2.28,"run_ms":39.25,"idle_ms":10.5,"stall_ms":0.02,"io_percent":20.9,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.0,"run_ms":21.91,"idle_ms":76.85,"stall_ms":0.01,"io_percent":78.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":68.33,"idle_ms":199.87,"stall_ms":0.01,"io_percent":74.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.46,"run_ms":9.34,"idle_ms":0.84,"stall_ms":0.0,"io_percent":7.7,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.0,"run_ms":6.12,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":0.45,"run_ms":10.5,"idle_ms":1.96,"stall_ms":0.0,"io_percent":15.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.51,"run_ms":6.4,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.29,"run_ms":10.28,"idle_ms":1.89,"stall_ms":0.17,"io_percent":15.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":30.81,"idle_ms":11.99,"stall_ms":0.01,"io_percent":28.5,"method":"GET","action":"home#for_domain"} | |
{"gc_ms":0.69,"run_ms":66.21,"idle_ms":119.0,"stall_ms":0.03,"io_percent":64.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.02,"run_ms":18.82,"idle_ms":2.95,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":8.12,"run_ms":50.69,"idle_ms":3.89,"stall_ms":0.01,"io_percent":7.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.72,"run_ms":31.76,"idle_ms":8.89,"stall_ms":0.01,"io_percent":22.2,"method":"GET","action":"users#show"} | |
{"gc_ms":2.59,"run_ms":43.9,"idle_ms":6.02,"stall_ms":0.01,"io_percent":12.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":37.0,"idle_ms":171.09,"stall_ms":0.02,"io_percent":82.2,"method":"POST","action":"comments#upvote"} | |
{"gc_ms":11.01,"run_ms":84.92,"idle_ms":17.88,"stall_ms":0.02,"io_percent":17.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":14.58,"run_ms":110.01,"idle_ms":34.7,"stall_ms":0.03,"io_percent":25.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.86,"run_ms":22.53,"idle_ms":3.7,"stall_ms":0.01,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.23,"idle_ms":3.05,"stall_ms":0.01,"io_percent":17.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":7.9,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":15.2,"idle_ms":2.89,"stall_ms":0.01,"io_percent":19.0,"method":"GET","action":"home#index"} | |
{"gc_ms":3.05,"run_ms":71.1,"idle_ms":210.57,"stall_ms":0.03,"io_percent":74.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.01,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.72,"idle_ms":1.81,"stall_ms":0.0,"io_percent":13.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.57,"run_ms":12.42,"idle_ms":1.9,"stall_ms":0.03,"io_percent":13.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.13,"run_ms":5.65,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.81,"run_ms":17.21,"idle_ms":2.89,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.13,"run_ms":28.35,"idle_ms":10.59,"stall_ms":0.01,"io_percent":27.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":18.2,"idle_ms":3.3,"stall_ms":74.65,"io_percent":3.7,"method":"GET","action":"home#index"} | |
{"gc_ms":2.82,"run_ms":68.22,"idle_ms":16.91,"stall_ms":0.08,"io_percent":19.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":40.26,"idle_ms":8.51,"stall_ms":0.02,"io_percent":15.2,"method":"GET","action":"users#tree"} | |
{"gc_ms":0.0,"run_ms":17.77,"idle_ms":3.03,"stall_ms":0.01,"io_percent":17.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":31.08,"idle_ms":3.5,"stall_ms":0.01,"io_percent":11.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.4,"idle_ms":1.9,"stall_ms":0.0,"io_percent":14.3,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":9.52,"idle_ms":0.76,"stall_ms":0.0,"io_percent":7.4,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":38.53,"idle_ms":15.33,"stall_ms":0.01,"io_percent":28.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":34.08,"idle_ms":3.47,"stall_ms":0.01,"io_percent":9.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.64,"run_ms":10.34,"idle_ms":184.62,"stall_ms":0.0,"io_percent":94.4,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":7.64,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":15.47,"run_ms":187.87,"idle_ms":42.53,"stall_ms":0.03,"io_percent":21.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.79,"run_ms":36.75,"idle_ms":13.3,"stall_ms":0.02,"io_percent":27.2,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":0.57,"run_ms":16.98,"idle_ms":2.74,"stall_ms":0.01,"io_percent":15.3,"method":"GET","action":"home#index"} | |
{"gc_ms":1.08,"run_ms":32.93,"idle_ms":34.03,"stall_ms":0.02,"io_percent":51.2,"method":"POST","action":"comments#upvote"} | |
{"gc_ms":0.39,"run_ms":15.8,"idle_ms":2.73,"stall_ms":0.01,"io_percent":16.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":63.38,"idle_ms":232.2,"stall_ms":66.38,"io_percent":64.0,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.82,"run_ms":16.7,"idle_ms":1.94,"stall_ms":0.16,"io_percent":10.2,"method":"HEAD","action":"users#show"} | |
{"gc_ms":7.15,"run_ms":40.31,"idle_ms":9.49,"stall_ms":0.01,"io_percent":19.1,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.0,"run_ms":13.81,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":45.44,"idle_ms":81.68,"stall_ms":1.34,"io_percent":63.6,"method":"GET","action":"home#index"} | |
{"gc_ms":2.74,"run_ms":22.33,"idle_ms":3.63,"stall_ms":0.01,"io_percent":16.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":10.58,"idle_ms":1.89,"stall_ms":0.0,"io_percent":15.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.12,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":36.07,"idle_ms":9.23,"stall_ms":79.18,"io_percent":7.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.76,"run_ms":53.14,"idle_ms":17.91,"stall_ms":0.01,"io_percent":24.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":32.28,"idle_ms":3.4,"stall_ms":0.01,"io_percent":10.2,"method":"GET","action":"home#index"} | |
{"gc_ms":1.05,"run_ms":23.62,"idle_ms":9.0,"stall_ms":0.01,"io_percent":23.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":82.74,"idle_ms":28.26,"stall_ms":0.03,"io_percent":25.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":5.09,"run_ms":72.61,"idle_ms":14.89,"stall_ms":73.04,"io_percent":9.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":18.59,"run_ms":138.53,"idle_ms":24.65,"stall_ms":0.05,"io_percent":13.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.74,"run_ms":26.64,"idle_ms":11.31,"stall_ms":0.01,"io_percent":27.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.73,"run_ms":7.22,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":3.76,"run_ms":72.23,"idle_ms":56.97,"stall_ms":62.76,"io_percent":29.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.26,"run_ms":21.32,"idle_ms":9.76,"stall_ms":0.03,"io_percent":31.5,"method":"GET","action":"users#show"} | |
{"gc_ms":0.82,"run_ms":29.6,"idle_ms":3.35,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":4.0,"run_ms":103.78,"idle_ms":64.74,"stall_ms":0.02,"io_percent":42.6,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":21.36,"idle_ms":3.71,"stall_ms":0.01,"io_percent":17.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.8,"run_ms":29.6,"idle_ms":12.13,"stall_ms":0.01,"io_percent":29.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.28,"run_ms":23.84,"idle_ms":7.62,"stall_ms":0.01,"io_percent":24.3,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":41.71,"idle_ms":16.5,"stall_ms":0.01,"io_percent":28.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":5.56,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":11.57,"idle_ms":1.78,"stall_ms":0.0,"io_percent":13.2,"method":"GET","action":"users#show"} | |
{"gc_ms":1.34,"run_ms":34.7,"idle_ms":14.1,"stall_ms":0.01,"io_percent":29.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.27,"run_ms":45.02,"idle_ms":4.08,"stall_ms":0.01,"io_percent":8.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.49,"run_ms":6.2,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":6.59,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":105.65,"idle_ms":439.18,"stall_ms":0.03,"io_percent":80.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.24,"run_ms":9.92,"idle_ms":1.84,"stall_ms":0.0,"io_percent":15.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":16.5,"idle_ms":2.74,"stall_ms":0.01,"io_percent":16.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":19.98,"idle_ms":3.02,"stall_ms":0.01,"io_percent":15.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.62,"run_ms":20.07,"idle_ms":3.2,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":13.18,"idle_ms":2.73,"stall_ms":75.55,"io_percent":3.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.27,"run_ms":9.01,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":7.35,"run_ms":28.94,"idle_ms":3.42,"stall_ms":0.01,"io_percent":11.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.26,"run_ms":44.19,"idle_ms":4.13,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.41,"run_ms":74.31,"idle_ms":67.15,"stall_ms":0.03,"io_percent":47.7,"method":"GET","action":"home#index"} | |
{"gc_ms":7.41,"run_ms":97.61,"idle_ms":501.89,"stall_ms":0.04,"io_percent":83.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":41.87,"idle_ms":4.0,"stall_ms":0.01,"io_percent":9.3,"method":"GET","action":"home#index"} | |
{"gc_ms":2.42,"run_ms":28.55,"idle_ms":3.46,"stall_ms":0.01,"io_percent":12.1,"method":"GET","action":"home#index"} | |
{"gc_ms":6.64,"run_ms":77.07,"idle_ms":118.19,"stall_ms":0.03,"io_percent":60.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.18,"run_ms":44.86,"idle_ms":14.08,"stall_ms":0.02,"io_percent":24.2,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":0.92,"run_ms":20.66,"idle_ms":3.02,"stall_ms":0.01,"io_percent":14.5,"method":"GET","action":"home#index"} | |
{"gc_ms":1.62,"run_ms":18.4,"idle_ms":2.6,"stall_ms":0.01,"io_percent":13.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.88,"run_ms":23.21,"idle_ms":3.57,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":3.78,"run_ms":62.77,"idle_ms":255.79,"stall_ms":0.02,"io_percent":80.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.95,"run_ms":20.66,"idle_ms":2.61,"stall_ms":0.01,"io_percent":12.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.07,"idle_ms":3.36,"stall_ms":0.01,"io_percent":15.7,"method":"GET","action":"home#index"} | |
{"gc_ms":3.49,"run_ms":59.37,"idle_ms":20.76,"stall_ms":0.02,"io_percent":26.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.72,"run_ms":9.35,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.27,"run_ms":11.88,"idle_ms":2.74,"stall_ms":0.0,"io_percent":18.9,"method":"GET","action":"users#show"} | |
{"gc_ms":3.44,"run_ms":143.9,"idle_ms":33.39,"stall_ms":0.18,"io_percent":21.4,"method":"GET","action":"home#index"} | |
{"gc_ms":4.03,"run_ms":161.53,"idle_ms":102.63,"stall_ms":0.03,"io_percent":37.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.3,"run_ms":28.53,"idle_ms":10.72,"stall_ms":0.01,"io_percent":27.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.19,"run_ms":20.09,"idle_ms":3.19,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.45,"run_ms":22.17,"idle_ms":7.83,"stall_ms":0.01,"io_percent":26.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":59.52,"idle_ms":231.15,"stall_ms":0.03,"io_percent":78.6,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.0,"run_ms":32.07,"idle_ms":3.55,"stall_ms":0.01,"io_percent":10.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.37,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":1.56,"run_ms":44.26,"idle_ms":4.04,"stall_ms":0.01,"io_percent":9.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.54,"run_ms":6.5,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.55,"run_ms":10.69,"idle_ms":1.84,"stall_ms":0.0,"io_percent":12.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.32,"run_ms":14.07,"idle_ms":3.76,"stall_ms":0.0,"io_percent":17.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":10.94,"idle_ms":1.99,"stall_ms":0.0,"io_percent":13.2,"method":"GET","action":"users#show"} | |
{"gc_ms":10.7,"run_ms":122.7,"idle_ms":24.24,"stall_ms":2.32,"io_percent":16.0,"method":"GET","action":"comments#user_threads"} | |
{"gc_ms":0.64,"run_ms":16.13,"idle_ms":2.7,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":1.66,"run_ms":23.44,"idle_ms":9.94,"stall_ms":0.01,"io_percent":30.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":16.2,"idle_ms":3.07,"stall_ms":0.01,"io_percent":18.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.72,"run_ms":38.98,"idle_ms":12.57,"stall_ms":0.01,"io_percent":24.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":17.15,"idle_ms":2.88,"stall_ms":0.01,"io_percent":13.9,"method":"GET","action":"home#index"} | |
{"gc_ms":2.0,"run_ms":69.55,"idle_ms":74.99,"stall_ms":0.02,"io_percent":52.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.03,"run_ms":55.98,"idle_ms":30.7,"stall_ms":0.02,"io_percent":35.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.42,"run_ms":11.6,"idle_ms":2.18,"stall_ms":0.0,"io_percent":15.9,"method":"HEAD","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":8.45,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":3.52,"run_ms":153.32,"idle_ms":69.42,"stall_ms":0.1,"io_percent":35.1,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.27,"run_ms":16.84,"idle_ms":2.09,"stall_ms":0.0,"io_percent":8.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":158.06,"idle_ms":80.95,"stall_ms":80.79,"io_percent":27.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":8.75,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.41,"run_ms":14.89,"idle_ms":2.42,"stall_ms":0.0,"io_percent":14.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":8.78,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":15.52,"run_ms":198.37,"idle_ms":79.65,"stall_ms":0.04,"io_percent":32.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":52.47,"idle_ms":4.37,"stall_ms":0.03,"io_percent":7.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":22.99,"idle_ms":5.48,"stall_ms":0.01,"io_percent":23.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":24.29,"idle_ms":4.11,"stall_ms":0.23,"io_percent":16.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":15.81,"idle_ms":2.67,"stall_ms":0.0,"io_percent":14.6,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":42.61,"idle_ms":4.1,"stall_ms":0.01,"io_percent":9.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.76,"run_ms":20.88,"idle_ms":3.02,"stall_ms":0.01,"io_percent":14.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":116.84,"idle_ms":35.26,"stall_ms":0.03,"io_percent":27.2,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":31.99,"idle_ms":15.64,"stall_ms":105.58,"io_percent":10.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.93,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.43,"run_ms":133.89,"idle_ms":49.28,"stall_ms":0.45,"io_percent":27.9,"method":"GET","action":"home#newest"} | |
{"gc_ms":1.97,"run_ms":51.83,"idle_ms":18.21,"stall_ms":0.02,"io_percent":20.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.78,"run_ms":23.11,"idle_ms":2.83,"stall_ms":0.01,"io_percent":11.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.57,"run_ms":36.24,"idle_ms":12.49,"stall_ms":0.02,"io_percent":23.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.45,"run_ms":18.08,"idle_ms":2.82,"stall_ms":0.01,"io_percent":15.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":8.56,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":10.6,"idle_ms":3.41,"stall_ms":100.13,"io_percent":3.0,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":148.1,"idle_ms":47.88,"stall_ms":0.04,"io_percent":25.9,"method":"GET","action":"home#newest"} | |
{"gc_ms":2.85,"run_ms":43.22,"idle_ms":17.18,"stall_ms":0.01,"io_percent":28.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.0,"run_ms":16.07,"idle_ms":3.0,"stall_ms":91.28,"io_percent":2.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":15.88,"idle_ms":1.94,"stall_ms":0.0,"io_percent":10.9,"method":"GET","action":"users#show"} | |
{"gc_ms":1.7,"run_ms":110.15,"idle_ms":25.5,"stall_ms":0.02,"io_percent":20.2,"method":"GET","action":"home#newest"} | |
{"gc_ms":9.0,"run_ms":47.59,"idle_ms":3.97,"stall_ms":0.01,"io_percent":8.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":43.92,"idle_ms":12.15,"stall_ms":0.02,"io_percent":21.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":45.98,"idle_ms":3.51,"stall_ms":0.01,"io_percent":7.4,"method":"GET","action":"home#active"} | |
{"gc_ms":7.74,"run_ms":60.66,"idle_ms":11.22,"stall_ms":0.02,"io_percent":14.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":8.47,"run_ms":162.8,"idle_ms":39.37,"stall_ms":0.13,"io_percent":20.9,"method":"GET","action":"home#newest"} | |
{"gc_ms":10.17,"run_ms":93.14,"idle_ms":179.9,"stall_ms":0.72,"io_percent":65.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.4,"run_ms":25.6,"idle_ms":6.4,"stall_ms":0.01,"io_percent":15.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.76,"run_ms":23.71,"idle_ms":3.52,"stall_ms":129.8,"io_percent":2.4,"method":"GET","action":"home#index"} | |
{"gc_ms":7.96,"run_ms":108.7,"idle_ms":13.76,"stall_ms":0.02,"io_percent":11.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":118.13,"idle_ms":31.63,"stall_ms":0.02,"io_percent":23.3,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":8.63,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":14.45,"idle_ms":2.15,"stall_ms":0.0,"io_percent":11.3,"method":"GET","action":"users#show"} | |
{"gc_ms":1.4,"run_ms":24.83,"idle_ms":5.4,"stall_ms":0.01,"io_percent":17.9,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":52.12,"idle_ms":4.64,"stall_ms":0.17,"io_percent":8.0,"method":"GET","action":"home#newest"} | |
{"gc_ms":2.33,"run_ms":54.36,"idle_ms":14.29,"stall_ms":0.02,"io_percent":20.7,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.87,"run_ms":179.98,"idle_ms":44.89,"stall_ms":0.23,"io_percent":22.3,"method":"GET","action":"home#newest"} | |
{"gc_ms":1.34,"run_ms":25.02,"idle_ms":3.83,"stall_ms":0.01,"io_percent":14.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.98,"run_ms":29.75,"idle_ms":7.89,"stall_ms":0.01,"io_percent":21.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":127.09,"idle_ms":30.11,"stall_ms":0.02,"io_percent":19.8,"method":"GET","action":"home#newest"} | |
{"gc_ms":6.56,"run_ms":106.94,"idle_ms":294.23,"stall_ms":0.03,"io_percent":70.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.76,"run_ms":24.96,"idle_ms":3.39,"stall_ms":0.01,"io_percent":13.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":91.01,"idle_ms":606.62,"stall_ms":0.03,"io_percent":86.2,"method":"GET","action":"home#index"} | |
{"gc_ms":4.98,"run_ms":46.04,"idle_ms":4.25,"stall_ms":0.01,"io_percent":7.9,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":3.13,"run_ms":46.4,"idle_ms":5.19,"stall_ms":0.01,"io_percent":9.2,"method":"GET","action":"home#index"} | |
{"gc_ms":2.16,"run_ms":159.51,"idle_ms":37.7,"stall_ms":126.99,"io_percent":12.5,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.7,"run_ms":21.04,"idle_ms":3.25,"stall_ms":0.01,"io_percent":15.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.71,"run_ms":17.39,"idle_ms":2.93,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":21.45,"idle_ms":3.43,"stall_ms":0.01,"io_percent":15.8,"method":"GET","action":"home#index"} | |
{"gc_ms":1.77,"run_ms":108.39,"idle_ms":31.5,"stall_ms":0.06,"io_percent":22.5,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":15.62,"idle_ms":2.84,"stall_ms":0.01,"io_percent":17.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.89,"run_ms":90.65,"idle_ms":27.99,"stall_ms":0.02,"io_percent":27.0,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":10.61,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":10.49,"run_ms":145.58,"idle_ms":41.41,"stall_ms":0.03,"io_percent":23.5,"method":"GET","action":"home#newest"} | |
{"gc_ms":3.16,"run_ms":33.62,"idle_ms":5.11,"stall_ms":64.12,"io_percent":5.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.17,"run_ms":39.13,"idle_ms":16.47,"stall_ms":0.01,"io_percent":30.3,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":2.14,"run_ms":16.73,"idle_ms":1.88,"stall_ms":0.0,"io_percent":6.8,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.08,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.99,"run_ms":12.09,"idle_ms":2.1,"stall_ms":0.0,"io_percent":11.5,"method":"GET","action":"users#show"} | |
{"gc_ms":1.54,"run_ms":92.19,"idle_ms":29.87,"stall_ms":0.02,"io_percent":25.8,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":28.93,"idle_ms":3.2,"stall_ms":0.01,"io_percent":10.3,"method":"GET","action":"home#index"} | |
{"gc_ms":2.34,"run_ms":55.99,"idle_ms":23.41,"stall_ms":0.94,"io_percent":29.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.31,"run_ms":32.17,"idle_ms":3.67,"stall_ms":0.01,"io_percent":11.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":38.27,"idle_ms":15.47,"stall_ms":0.01,"io_percent":27.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":22.44,"idle_ms":7.25,"stall_ms":0.01,"io_percent":23.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":41.83,"idle_ms":19.41,"stall_ms":0.01,"io_percent":29.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.17,"run_ms":7.9,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":1.72,"run_ms":98.94,"idle_ms":35.34,"stall_ms":0.02,"io_percent":30.4,"method":"GET","action":"home#newest"} | |
{"gc_ms":1.48,"run_ms":61.36,"idle_ms":625.28,"stall_ms":93.51,"io_percent":80.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":32.7,"idle_ms":3.81,"stall_ms":2.96,"io_percent":9.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.81,"run_ms":33.74,"idle_ms":10.1,"stall_ms":0.02,"io_percent":22.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":62.85,"idle_ms":159.05,"stall_ms":0.03,"io_percent":70.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":42.46,"idle_ms":15.26,"stall_ms":0.01,"io_percent":25.3,"method":"GET","action":"stories#show"} | |
{"gc_ms":11.24,"run_ms":113.15,"idle_ms":34.62,"stall_ms":0.02,"io_percent":27.4,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.0,"run_ms":10.51,"idle_ms":1.99,"stall_ms":0.0,"io_percent":15.9,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.52,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.67,"run_ms":27.56,"idle_ms":28.43,"stall_ms":0.01,"io_percent":50.2,"method":"POST","action":"stories#upvote"} | |
{"gc_ms":11.17,"run_ms":111.21,"idle_ms":30.45,"stall_ms":0.06,"io_percent":22.0,"method":"GET","action":"home#newest"} | |
{"gc_ms":2.4,"run_ms":36.87,"idle_ms":3.72,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":2.92,"run_ms":43.09,"idle_ms":11.64,"stall_ms":0.02,"io_percent":21.2,"method":"GET","action":"home#for_origin"} | |
{"gc_ms":0.28,"run_ms":11.7,"idle_ms":1.81,"stall_ms":0.0,"io_percent":12.9,"method":"GET","action":"users#show"} | |
{"gc_ms":3.84,"run_ms":41.02,"idle_ms":4.1,"stall_ms":0.01,"io_percent":9.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":17.63,"idle_ms":3.49,"stall_ms":0.01,"io_percent":19.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.67,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.63,"run_ms":10.75,"idle_ms":3.07,"stall_ms":0.0,"io_percent":19.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":17.3,"idle_ms":3.15,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":7.68,"run_ms":74.71,"idle_ms":238.44,"stall_ms":0.02,"io_percent":75.5,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":75.14,"idle_ms":20.33,"stall_ms":0.01,"io_percent":21.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":7.09,"idle_ms":0.7,"stall_ms":0.0,"io_percent":7.5,"method":"GET","action":"stories#new"} | |
{"gc_ms":0.22,"run_ms":14.91,"idle_ms":2.73,"stall_ms":0.01,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":4.02,"run_ms":36.18,"idle_ms":4.22,"stall_ms":0.01,"io_percent":11.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.23,"run_ms":20.74,"idle_ms":10.44,"stall_ms":0.01,"io_percent":33.7,"method":"GET","action":"users#show"} | |
{"gc_ms":3.24,"run_ms":48.7,"idle_ms":416.79,"stall_ms":0.03,"io_percent":89.6,"method":"POST","action":"comments#create"} | |
{"gc_ms":0.0,"run_ms":33.1,"idle_ms":4.72,"stall_ms":0.01,"io_percent":13.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.02,"run_ms":35.32,"idle_ms":4.67,"stall_ms":0.11,"io_percent":9.0,"method":"GET","action":"home#newest"} | |
{"gc_ms":0.59,"run_ms":16.99,"idle_ms":4.17,"stall_ms":0.05,"io_percent":18.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":11.6,"idle_ms":1.77,"stall_ms":0.0,"io_percent":10.6,"method":"HEAD","action":"users#show"} | |
{"gc_ms":7.4,"run_ms":19.55,"idle_ms":3.25,"stall_ms":100.13,"io_percent":2.8,"method":"GET","action":"home#index"} | |
{"gc_ms":16.43,"run_ms":148.07,"idle_ms":33.58,"stall_ms":0.02,"io_percent":20.0,"method":"GET","action":"home#top"} | |
{"gc_ms":0.0,"run_ms":35.73,"idle_ms":12.03,"stall_ms":0.01,"io_percent":25.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.02,"run_ms":17.12,"idle_ms":3.12,"stall_ms":0.01,"io_percent":18.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":66.87,"idle_ms":360.0,"stall_ms":0.02,"io_percent":84.4,"method":"GET","action":"home#index"} | |
{"gc_ms":1.64,"run_ms":11.14,"idle_ms":0.94,"stall_ms":0.0,"io_percent":7.8,"method":"GET","action":"login#index"} | |
{"gc_ms":0.0,"run_ms":8.13,"idle_ms":0.98,"stall_ms":0.0,"io_percent":9.8,"method":"GET","action":"search#index"} | |
{"gc_ms":0.53,"run_ms":16.28,"idle_ms":2.87,"stall_ms":0.01,"io_percent":17.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.91,"run_ms":16.67,"idle_ms":2.76,"stall_ms":0.01,"io_percent":16.5,"method":"GET","action":"home#index"} | |
{"gc_ms":0.58,"run_ms":20.56,"idle_ms":10.12,"stall_ms":0.01,"io_percent":33.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.44,"run_ms":16.44,"idle_ms":2.88,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.95,"run_ms":22.29,"idle_ms":10.07,"stall_ms":0.01,"io_percent":30.4,"method":"GET","action":"stories#show"} | |
{"gc_ms":3.14,"run_ms":27.79,"idle_ms":3.11,"stall_ms":0.01,"io_percent":10.8,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":5.11,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.98,"run_ms":22.9,"idle_ms":12.88,"stall_ms":0.01,"io_percent":36.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.79,"run_ms":12.87,"idle_ms":1.83,"stall_ms":0.0,"io_percent":12.4,"method":"GET","action":"users#show"} | |
{"gc_ms":3.85,"run_ms":143.11,"idle_ms":68.23,"stall_ms":0.03,"io_percent":37.2,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":6.05,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":2.84,"run_ms":37.13,"idle_ms":4.71,"stall_ms":0.05,"io_percent":10.8,"method":"GET","action":"home#index"} | |
{"gc_ms":0.41,"run_ms":12.85,"idle_ms":2.29,"stall_ms":0.0,"io_percent":15.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":20.04,"idle_ms":3.37,"stall_ms":0.01,"io_percent":16.3,"method":"GET","action":"home#index"} | |
{"gc_ms":5.1,"run_ms":30.03,"idle_ms":4.83,"stall_ms":0.01,"io_percent":12.1,"method":"GET","action":"home#index"} | |
{"gc_ms":2.55,"run_ms":137.6,"idle_ms":42.85,"stall_ms":0.03,"io_percent":28.2,"method":"GET","action":"home#index"} | |
{"gc_ms":3.07,"run_ms":39.99,"idle_ms":19.56,"stall_ms":0.01,"io_percent":33.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":6.37,"idle_ms":0.04,"stall_ms":72.53,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":31.66,"idle_ms":2.45,"stall_ms":0.01,"io_percent":7.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.48,"run_ms":25.26,"idle_ms":15.89,"stall_ms":0.01,"io_percent":37.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":42.06,"idle_ms":16.91,"stall_ms":0.01,"io_percent":26.2,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.35,"run_ms":23.68,"idle_ms":15.13,"stall_ms":0.01,"io_percent":36.9,"method":"GET","action":"comments#edit"} | |
{"gc_ms":11.46,"run_ms":68.72,"idle_ms":16.75,"stall_ms":0.18,"io_percent":17.8,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.34,"run_ms":25.41,"idle_ms":5.27,"stall_ms":0.01,"io_percent":14.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.9,"run_ms":19.28,"idle_ms":3.08,"stall_ms":81.72,"io_percent":3.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":6.38,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":13.16,"idle_ms":1.95,"stall_ms":0.0,"io_percent":13.0,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":8.09,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"GET"} | |
{"gc_ms":0.27,"run_ms":10.69,"idle_ms":1.92,"stall_ms":0.0,"io_percent":15.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.85,"run_ms":8.01,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":1.17,"run_ms":12.66,"idle_ms":1.78,"stall_ms":69.83,"io_percent":2.1,"method":"GET","action":"users#show"} | |
{"gc_ms":2.1,"run_ms":47.39,"idle_ms":14.86,"stall_ms":64.97,"io_percent":12.1,"method":"GET","action":"home#index"} | |
{"gc_ms":0.37,"run_ms":12.43,"idle_ms":2.05,"stall_ms":0.0,"io_percent":14.2,"method":"GET","action":"users#show"} | |
{"gc_ms":1.0,"run_ms":29.07,"idle_ms":120.7,"stall_ms":0.01,"io_percent":79.9,"method":"GET","action":"search#index"} | |
{"gc_ms":0.27,"run_ms":7.64,"idle_ms":0.05,"stall_ms":93.73,"io_percent":0.1,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":119.03,"idle_ms":45.16,"stall_ms":0.03,"io_percent":32.5,"method":"GET","action":"home#index"} | |
{"gc_ms":2.59,"run_ms":42.89,"idle_ms":16.43,"stall_ms":0.01,"io_percent":27.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.14,"run_ms":27.94,"idle_ms":11.44,"stall_ms":0.01,"io_percent":26.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":1.53,"run_ms":137.87,"idle_ms":78.51,"stall_ms":0.32,"io_percent":36.4,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":1.38,"run_ms":17.67,"idle_ms":2.15,"stall_ms":0.0,"io_percent":8.1,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":7.89,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.63,"run_ms":12.7,"idle_ms":1.71,"stall_ms":0.0,"io_percent":11.7,"method":"GET","action":"users#show"} | |
{"gc_ms":0.39,"run_ms":7.87,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"GET"} | |
{"gc_ms":0.0,"run_ms":9.9,"idle_ms":1.5,"stall_ms":0.0,"io_percent":13.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":6.99,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.3,"method":"HEAD"} | |
{"gc_ms":0.0,"run_ms":5.61,"idle_ms":0.03,"stall_ms":0.0,"io_percent":0.5,"method":"GET"} | |
{"gc_ms":0.27,"run_ms":12.73,"idle_ms":2.31,"stall_ms":0.0,"io_percent":13.4,"method":"GET","action":"users#show"} | |
{"gc_ms":0.59,"run_ms":15.73,"idle_ms":2.87,"stall_ms":0.01,"io_percent":18.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.31,"run_ms":6.34,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.4,"method":"GET"} | |
{"gc_ms":0.64,"run_ms":14.24,"idle_ms":3.36,"stall_ms":0.0,"io_percent":19.2,"method":"GET","action":"users#show"} | |
{"gc_ms":0.0,"run_ms":8.77,"idle_ms":0.02,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":1.84,"run_ms":41.12,"idle_ms":15.86,"stall_ms":0.02,"io_percent":28.1,"method":"GET","action":"stories#show"} | |
{"gc_ms":2.46,"run_ms":25.3,"idle_ms":3.94,"stall_ms":0.01,"io_percent":11.4,"method":"GET","action":"home#index"} | |
{"gc_ms":0.64,"run_ms":20.04,"idle_ms":4.48,"stall_ms":0.05,"io_percent":16.0,"method":"GET","action":"home#index"} | |
{"gc_ms":0.29,"run_ms":15.03,"idle_ms":2.56,"stall_ms":0.01,"io_percent":16.7,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":5.78,"idle_ms":0.01,"stall_ms":0.0,"io_percent":0.2,"method":"HEAD"} | |
{"gc_ms":0.25,"run_ms":18.08,"idle_ms":3.11,"stall_ms":0.01,"io_percent":17.2,"method":"GET","action":"home#index"} | |
{"gc_ms":0.14,"run_ms":11.17,"idle_ms":1.92,"stall_ms":0.01,"io_percent":14.7,"method":"HEAD","action":"users#show"} | |
{"gc_ms":1.64,"run_ms":19.82,"idle_ms":3.17,"stall_ms":0.01,"io_percent":15.9,"method":"GET","action":"home#index"} | |
{"gc_ms":1.06,"run_ms":32.58,"idle_ms":3.75,"stall_ms":0.01,"io_percent":10.6,"method":"GET","action":"home#index"} | |
{"gc_ms":0.31,"run_ms":16.7,"idle_ms":2.92,"stall_ms":0.01,"io_percent":17.3,"method":"GET","action":"home#index"} | |
{"gc_ms":0.0,"run_ms":24.03,"idle_ms":2.51,"stall_ms":0.01,"io_percent":10.0,"method":"GET","action":"home#single_tag"} | |
{"gc_ms":0.0,"run_ms":20.73,"idle_ms":9.67,"stall_ms":0.01,"io_percent":31.9,"method":"GET","action":"stories#show"} | |
{"gc_ms":0.0,"run_ms":32.21,"idle_ms":3.47,"stall_ms":0.01,"io_percent":10.6,"method":"GET","action":"home#index"} | |
{"gc_ms":6.95,"run_ms":27.37,"idle_ms":7.75,"stall_ms":0.01,"io_percent":22.3,"method":"GET","action":"comments#index"} | |
{"gc_ms":0.0,"run_ms":7.26,"idle_ms":1.09,"stall_ |
View raw
(Sorry about that, but we can’t show files that are this big right now.)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment