struct
Azu::DevelopmentTools::Profiler::ProfileEntry
- Azu::DevelopmentTools::Profiler::ProfileEntry
- Struct
- Value
- Object
Overview
Profile entry representing a single measurement
Included Modules
- JSON::Serializable
Defined in:
azu/development_tools.crConstructors
- .new(name : String, duration : Time::Span, memory_before : Int64, memory_after : Int64, timestamp : Time, call_stack : Array(String) | Nil = nil)
- .new(pull : JSON::PullParser)
Instance Method Summary
- #call_stack : Array(String) | Nil
- #duration : Time::Span
- #memory_after : Int64
- #memory_before : Int64
- #memory_delta
- #memory_delta_mb
- #name : String
- #timestamp : Time
Constructor Detail
def self.new(name : String, duration : Time::Span, memory_before : Int64, memory_after : Int64, timestamp : Time, call_stack : Array(String) | Nil = nil)
#