Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Cardano.Tools.DBAnalyser.Analysis.BenchmarkLedgerOps.SlotDataPoint
Synopsis
- newtype BlockStats = BlockStats {
- unBlockStats ∷ [Builder]
- data SlotDataPoint = SlotDataPoint {
- slot ∷ !SlotNo
- slotGap ∷ !Word64
- totalTime ∷ !Int64
- mut ∷ !Int64
- gc ∷ !Int64
- majGcCount ∷ !Word32
- minGcCount ∷ !Word32
- allocatedBytes ∷ !Word64
- mut_forecast ∷ !Int64
- mut_headerTick ∷ !Int64
- mut_headerApply ∷ !Int64
- mut_blockTick ∷ !Int64
- mut_blockApply ∷ !Int64
- blockByteSize ∷ !Word32
- blockStats ∷ !BlockStats
Documentation
newtype BlockStats Source #
Constructors
BlockStats | |
Fields
|
Instances
data SlotDataPoint Source #
Information about the time spent processing the block corresponding to
slot
, divided into the five major operations:
- Forecast.
- Header tick.
- Header application.
- Block tick.
- Block application.
It is up to the user of a slot data point to decide which units the data represent (eg milliseconds, nanoseconds, etc)
Constructors
SlotDataPoint | |
Fields
|