class Blitz::Curl::Rush::Step
Per-step (for transactional rushes) metrics of a rush at time
Attributes
asserts[R]
Cummulative assertion failures on status code for this step
connect[R]
Average TCP connect times for this step
duration[R]
The duration of this step, when successful
errors[R]
Cummulative errors for this step
timeouts[R]
Cummulative timeouts for this step
Public Class Methods
new(json)
click to toggle source
# File lib/blitz/curl/rush.rb, line 24 def initialize json @duration = json['d'] @connect = json['c'] @errors = json['e'] @timeouts = json['t'] @asserts = json['a'] end