Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FHistogram
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FString DumpToJsonString () |
Same as DumpToJsonString but uses a DefaultConvertBinToLabel. | ProfilingDebugging/Histogram.h | |
FString DumpToJsonString
(
TFunctionRef< FString(double, double)> ConvertBinToLabel |
Returns a string in a Json format: [{"Bin":"BinName","Count":Count,"Sum":Sum},...]. | ProfilingDebugging/Histogram.h |
DumpToJsonString()
Description
Same as DumpToJsonString but uses a DefaultConvertBinToLabel.
| Name | DumpToJsonString |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/ProfilingDebugging/Histogram.h |
| Include Path | #include "ProfilingDebugging/Histogram.h" |
| Source | /Engine/Source/Runtime/Core/Private/ProfilingDebugging/Histogram.cpp |
FString DumpToJsonString() const
DumpToJsonString(TFunctionRef< FString(double, double)>)
Description
Returns a string in a Json format: [{"Bin":"BinName","Count":Count,"Sum":Sum},...]. Bucket name is constructed by calling ConvertBinToLabel on the MinValue and UpperBound for each bin. Convert function is used to allow the bin range, which is stored as a double, to be printed prettily.
| Name | DumpToJsonString |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/ProfilingDebugging/Histogram.h |
| Include Path | #include "ProfilingDebugging/Histogram.h" |
| Source | /Engine/Source/Runtime/Core/Private/ProfilingDebugging/Histogram.cpp |
FString DumpToJsonString
(
TFunctionRef < FString> ConvertBinToLabel
) const