NetAnalytics.MinimumNumberOfPacketsForBurstTracking
NetAnalytics.MinimumNumberOfPacketsForBurstTracking
#Overview
name: NetAnalytics.MinimumNumberOfPacketsForBurstTracking
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
The minimum number of packets that must have been notified (in our out) in order to consider a frame for packet loss by percentage.See NetAnalytics.PercentOfDroppedPacketsToConsiderBurst
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Engine/Private/Net/NetAnalyticsTypes.cpp:15
Scope (from outer to inner):
file
namespace NetAnalyticsCVars
Source code excerpt:
static int32 MinimumNumberOfPacketsForBurstTracking = 5;
static FAutoConsoleVariableRef CVarMinimumNumberOfPacketsForBurstTracking(
TEXT("NetAnalytics.MinimumNumberOfPacketsForBurstTracking"),
MinimumNumberOfPacketsForBurstTracking,
TEXT("The minimum number of packets that must have been notified (in our out) in order to consider a frame for packet loss by percentage.")
TEXT("See NetAnalytics.PercentOfDroppedPacketsToConsiderBurst")
);
static float PercentOfDroppedPacketsToConsiderBurst = 0.2f;