FDelinquencyAnalytics::Add

Adds the event to the delinquency tracking, by accumulating its time into total time, and updating any existing events to choose the one with the highest time.

Windows
MacOS
Linux

References

Module

Engine

Header

/Engine/Source/Runtime/Engine/Public/Net/NetAnalyticsTypes.h

Include

#include "Net/NetAnalyticsTypes.h"

Source

/Engine/Source/Runtime/Engine/Private/Net/NetAnalyticsTypes.cpp

Syntax

void Add
(
    FDelinquencyNameTimePair && ToTrack
)

Remarks

Adds the event to the delinquency tracking, by accumulating its time into total time, and updating any existing events to choose the one with the highest time.

When NumberOfTopOffendersToTrack == 0, we will just track the set of all events as well as the total time.

When NumberOfTopOffendersToTrack > 0, we will track the set, total time, and also maintain sorted list (highest to lowest) of events that occurred.

By setting NumberOfTopOffendersToTrack to 0, users can manage their own lists of "TopOffenders", or otherwise avoid the per add overhead of this tracking.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss