Safe Haskell | None |
---|---|
Language | Haskell2010 |
- data Statistics = Statistics {
- sHistogram :: TDigest 5
- sTotal :: !Double
- data AllStats = AllStats {}
- data ResultStatistics = ResultStatistics {
- rs2xx :: !Statistics
- rs4xx :: !Statistics
- rs5xx :: !Statistics
- rsFailed :: !Statistics
- rsRollup :: !Statistics
- rsTotalTests :: !Int
- rsTestsFailed :: !Int
- stepAllStats :: AllStats -> Int -> String -> RunResult -> AllStats
- emptyAllStats :: AllStats
- printStats :: Options -> AllStats -> IO ()
- pprStats :: Maybe Int -> URLDisplay -> AllStats -> String
Documentation
data Statistics Source #
These are the
Statistics | |
|
AllStats has all of the ... stats. This type stores all of the information
wrecker
uses to display metrics to the user.
AllStats | |
|
data ResultStatistics Source #
This type includes statistics for all of the result values we can detect. This type is used by AllStats to compute per key (URL) statistics among other uses.
ResultStatistics | |
|