className
stringlengths
1
167
headerPath
stringlengths
14
166
description
stringlengths
0
1.62k
module
stringlengths
3
36
code
stringlengths
0
11.4k
variables
listlengths
0
395
FAnalyticsET::Config::GetDefaultAppEnvironment
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsET.h
Default value if no APIServer configuration is provided.
AnalyticsET
static FString GetDefaultAppEnvironment&40;&41;
[]
FAnalyticsET::Config::GetDefaultUploadType
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsET.h
Default value if no UploadType is given, and UseDataRouter protocol is specified.
AnalyticsET
static FString GetDefaultUploadType&40;&41;
[]
FAnalyticsET::Config::GetKeyNameForAPIKey
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsET.h
KeyName required for APIKey configuration.
AnalyticsET
static FString GetKeyNameForAPIKey&40;&41;
[]
FAnalyticsET::Config::GetKeyNameForAPIServer
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsET.h
KeyName required for APIServer configuration.
AnalyticsET
static FString GetKeyNameForAPIServer&40;&41;
[]
FAnalyticsET::Config::GetKeyNameForAppVersion
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsET.h
KeyName required for AppVersion configuration.
AnalyticsET
static FString GetKeyNameForAppVersion&40;&41;
[]
FAnalyticsET::Config::GetKeyNameForAppEnvironment
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsET.h
For the the data router backend protocol.
AnalyticsET
static FString GetKeyNameForAppEnvironment&40;&41;
[]
FAnalyticsET::Config::GetKeyNameForUploadType
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsET.h
For the the data router backend protocol.
AnalyticsET
static FString GetKeyNameForUploadType&40;&41;
[]
FAnalyticsET::Config::GetKeyNameForUseLegacyProtocol
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsET.h
Optional parameter to use the legacy backend protocol.
AnalyticsET
static FString GetKeyNameForUseLegacyProtocol&40;&41;
[]
FAnalyticsET::Config::Config
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsET.h
Default ctor to ensure all values have their proper default.
AnalyticsET
Config&40;&41;
[]
FAnalyticsET::Config::Config
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsET.h
Ctor exposing common configurables .
AnalyticsET
Config &40; FString InAPIKeyET, FString InAPIServerET, FString InAppVersionET, bool InUseLegacyProtocol, FString InAppEnvironment, FString InUploadType, TArray< FString > InAltApiServers, float InFlushIntervalSec, int32 InMaximumPayloadSize, int32 InPreallocatedPayloadSize &41;
[]
Config
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsET.h
Defines required configuration values for ET analytics provider. APIKeyET MUST be set. Set APIServerET to an empty string to create a "NULL" analytics provider that will be a valid instance but will suppress sending any events.
AnalyticsET
struct Config
[ { "type": "TArray<FString...", "name": "AltAPIServersET", "description": "ET Alt API Servers - Base URLs to send events on retry." }, { "type": "FString", "name": "APIKeyET", "description": "ET APIKey - Get from your account manager" }, { "type": "FString", "name": "APIServerET", "description": "ET API Server - Base URL to send events." }, { "type": "FString", "name": "AppEnvironment", "description": "The AppEnvironment that the data router should use. Defaults to GetDefaultAppEnvironment." }, { "type": "FString", "name": "AppVersionET", "description": "AppVersion - defines the app version passed to the provider." }, { "type": "bool", "name": "bDropEventsOnFlushFailure", "description": "When true (default), events are dropped if flush fails" }, { "type": "float", "name": "FlushIntervalSec", "description": "Maximum time to elapse before forcing events to be flushed." }, { "type": "int32", "name": "MaximumPayloadSize", "description": "Maximum size a payload can reach before we force a flush of the payload." }, { "type": "int32", "name": "PreallocatedPayloadSize", "description": "We preallocate a payload." }, { "type": "uint32", "name": "RetryLimitCount", "description": "Maximum number of retries to attempt." }, { "type": "FString", "name": "UploadType", "description": "The UploadType that the data router should use. Defaults to GetDefaultUploadType." }, { "type": "bool", "name": "UseLegacyProtocol", "description": "When true, sends events using the legacy ET protocol that passes all attributes as URL parameters." } ]
FAnalyticsET::CreateAnalyticsProvider
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsET.h
Construct an ET analytics provider directly from a config object.
AnalyticsET
virtual [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [IAnalyticsProviderET](API\Runtime\AnalyticsET\IAnalyticsProviderET) > CreateAnalyticsProvider ( const [Config](API\Runtime\AnalyticsET\FAnalyticsET\Config) & ConfigValues ) const
[]
FAnalyticsET::CreateAnalyticsProvider
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsET.h
IAnalyticsProviderModuleinterface. Creates the analytics provider given a configuration delegate. The keys required exactly match the field names in theConfigobject.
AnalyticsET
virtual [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [IAnalyticsProvider](API\Runtime\Analytics\Interfaces\IAnalyticsProvider) > CreateAnalyticsProvider ( const FAnalyticsProviderConfigurationDelegate & GetConfigValue ) const
[]
FAnalyticsET::Get
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsET.h
Singleton-like access to this module's interface. This is just for convenience! Beware of calling this during the shutdown phase, though. Your module might have been unloaded already. Returns singleton instance, loading the module on demand if needed
AnalyticsET
static [FAnalyticsET](API\Runtime\AnalyticsET\FAnalyticsET) & Get()
[]
FAnalyticsET
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsET.h
Public implementation of EpicGames.MCP.AnalyticsProvider
AnalyticsET
class FAnalyticsET : public [IAnalyticsProviderModule](API\Runtime\Analytics\Interfaces\IAnalyticsProviderModule)
[]
FAnalyticsFlowTracker::EndFlow
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsFlowTracker.h
End the flow for the current context and pop the stack
AnalyticsET
bool EndFlow ( bool bSuccess, const [TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) > & AdditionalAttributes )
[]
FAnalyticsFlowTracker::EndFlow
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsFlowTracker.h
End an existing flow by name
AnalyticsET
bool EndFlow ( const [FName](API\Runtime\Core\UObject\FName) & FlowName, bool bSuccess, const [TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) > & AdditionalAttributes )
[]
FAnalyticsFlowTracker::EndFlow
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsFlowTracker.h
End an bool flow by GUID
AnalyticsET
bool EndFlow ( const [FGuid](API\Runtime\Core\Misc\FGuid) & FlowGuid, bool bSuccess, const [TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) > & AdditionalAttributes )
[]
FAnalyticsFlowTracker::EndSession
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsFlowTracker.h
Ends all open Flows and SubFlows
AnalyticsET
void EndSession()
[]
FAnalyticsFlowTracker::EndSubFlow
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsFlowTracker.h
End an existing flow step by name
AnalyticsET
bool EndSubFlow ( const [FName](API\Runtime\Core\UObject\FName) & SubFlowName, bool bSuccess, const [TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) > & AdditionalAttributes )
[]
FAnalyticsFlowTracker::EndSubFlow
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsFlowTracker.h
End an existing flow step by GUID
AnalyticsET
bool EndSubFlow ( const [FGuid](API\Runtime\Core\Misc\FGuid) & SubFlowGuid, bool bSuccess, const [TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) > & AdditionalAttributes )
[]
FAnalyticsFlowTracker::SetProvider
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsFlowTracker.h
Sets the analytics provider for the flow tracker.
AnalyticsET
void SetProvider ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [IAnalyticsProviderET](API\Runtime\AnalyticsET\IAnalyticsProviderET) > & AnalyticsProvider )
[]
FAnalyticsFlowTracker::StartFlow
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsFlowTracker.h
Start a new Flow, the existing flow context will be pushed onto a stack and the new flow will become the current context
AnalyticsET
[FGuid](API\Runtime\Core\Misc\FGuid) StartFlow ( const [FName](API\Runtime\Core\UObject\FName) & FlowName )
[]
FAnalyticsFlowTracker::StartSession
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsFlowTracker.h
Begins a new flow tracking session. Will emit Flow and SubFlow events to the specified analytics provider
AnalyticsET
void StartSession()
[]
FAnalyticsFlowTracker::StartSubFlow
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsFlowTracker.h
Start a new flow and add it to the current flow context
AnalyticsET
[FGuid](API\Runtime\Core\Misc\FGuid) StartSubFlow ( const [FName](API\Runtime\Core\UObject\FName) & SubFlowName )
[]
FAnalyticsFlowTracker::StartSubFlow
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsFlowTracker.h
Start a new flow step and add it to a specific flow context by GUID
AnalyticsET
[FGuid](API\Runtime\Core\Misc\FGuid) StartSubFlow ( const [FName](API\Runtime\Core\UObject\FName) & SubFlowName, const [FGuid](API\Runtime\Core\Misc\FGuid) & FlowGuid )
[]
FAnalyticsFlowTracker::FAnalyticsFlowTracker
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsFlowTracker.h
AnalyticsET
FAnalyticsFlowTracker()
[]
FAnalyticsFlowTracker::~FAnalyticsFlowTracker
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsFlowTracker.h
AnalyticsET
~FAnalyticsFlowTracker()
[]
FAnalyticsFlowTracker
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsFlowTracker.h
AnalyticsET
class FAnalyticsFlowTracker : private [FNoncopyable](API\Runtime\Core\Templates\FNoncopyable)
[]
FAnalyticsProviderETEventCache::AddToCache
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsProviderETEventCache.h
Adds a new event to the cache. If the estimated payload size will increase beyond MaximumPayloadSize then a flush will be queued here. This will makeHasFlushesQueued()== true.
AnalyticsET
void AddToCache ( [FString](API\Runtime\Core\Containers\FString) EventName, const [TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) > & Attributes )
[]
FAnalyticsProviderETEventCache::AddToCache
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsProviderETEventCache.h
Adds a new event to the cache. If the estimated payload size will increase beyond MaximumPayloadSize then a flush will be queued here. This will makeHasFlushesQueued()== true.
AnalyticsET
void AddToCache ( [FString](API\Runtime\Core\Containers\FString) EventName )
[]
FAnalyticsProviderETEventCache::CanFlush
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsProviderETEventCache.h
Determines whether we have anything we need to flush, either a queued flush or existing events in the payload.
AnalyticsET
bool CanFlush() const
[]
FAnalyticsProviderETEventCache::GetDefaultAttributeCount
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsProviderETEventCache.h
the number of default attributes are currently being applied.
AnalyticsET
int32 GetDefaultAttributeCount() const
[]
FAnalyticsProviderETEventCache::FlushCacheUTF8
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsProviderETEventCache.h
Flushes the cache as a UTF8 char array. Returns a uint8 because that's whatIHttpRequestprefers. If nothing is cached, returns an empty array.
AnalyticsET
[TArray](API\Runtime\Core\Containers\TArray)< uint8 > FlushCacheUTF8()
[]
FAnalyticsProviderETEventCache::GetDefaultAttribute
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsProviderETEventCache.h
Range checking is not done, similar toTArray. UseGetDefaultAttributeCount()first! one attribute of the default attributes so we don't have to copy the entire attribute array.
AnalyticsET
[FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) GetDefaultAttribute ( int32 AttributeIndex ) const
[]
FAnalyticsProviderETEventCache::GetDefaultAttributes
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsProviderETEventCache.h
the current array of default attributes.
AnalyticsET
[TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) > GetDefaultAttributes() const
[]
FAnalyticsProviderETEventCache::GetNumCachedEvents
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsProviderETEventCache.h
Gets the number of cached events (doesn't include any flushes that are already queued for flush).
AnalyticsET
int GetNumCachedEvents() const
[]
FAnalyticsProviderETEventCache::FlushCache
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsProviderETEventCache.h
Flushes the cache as a string. This method is inefficient because we build up the array directly as UTF8. If nothing is cached, returns an empty string.
AnalyticsET
[FString](API\Runtime\Core\Containers\FString) FlushCache ( SIZE_T * OutEventCount )
[]
FAnalyticsProviderETEventCache::HasFlushesQueued
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsProviderETEventCache.h
Lets external code know that there are payloads queued for flush. This happens when AddCache() calls cause the payload size to exceed MaxPayloadSize. Calling code needs to notice this and flush the queue.
AnalyticsET
bool HasFlushesQueued() const
[]
FAnalyticsProviderETEventCache::GetSetPreallocatedPayloadSize
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsProviderETEventCache.h
Gets the preallocated size of the payload buffer.
AnalyticsET
int32 GetSetPreallocatedPayloadSize() const
[]
FAnalyticsProviderETEventCache::Lock::Lock
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsProviderETEventCache.h
AnalyticsET
Lock &40; FAnalyticsProviderETEventCache & EventCache &41;
[]
Lock
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsProviderETEventCache.h
For when you need to take a lock across multiple API calls
AnalyticsET
class Lock
[]
FAnalyticsProviderETEventCache::SetPreallocatedPayloadSize
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsProviderETEventCache.h
Sets the preallocated payload size
AnalyticsET
void SetPreallocatedPayloadSize ( int32 InSetPreallocatedPayloadSize )
[]
FAnalyticsProviderETEventCache::FAnalyticsProviderETEventCache
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsProviderETEventCache.h
Default ctor.
AnalyticsET
FAnalyticsProviderETEventCache ( int32 MaximumPayloadSize, int32 InPreallocatedPayloadSize )
[]
FAnalyticsProviderETEventCache::SetDefaultAttributes
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsProviderETEventCache.h
Sets an array of attributes that will automatically be appended to any event that is sent. Logical effect is like adding them to all events before calling RecordEvent. Practically, it is implemented much more efficiently from a storage and allocation perspective.
AnalyticsET
void SetDefaultAttributes ( [TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) > && DefaultAttributes )
[]
FAnalyticsProviderETEventCache
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsProviderETEventCache.h
All public APIs in this class are threadsafe. Implemented via crappy critical sections for now, but they are safe.
AnalyticsET
class FAnalyticsProviderETEventCache
[]
FAnalyticsSessionSummaryManager::CleanupExpiredFiles
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsSessionSummaryManager.h
Cleans up all expired files that match the analytics session filename pattern. The manager automaticallly clean up if it runs, but if the analytics is off and the manager is not instantiated anymore, some dead files can be left over.
AnalyticsET
static void CleanupExpiredFiles ( const [FString](API\Runtime\Core\Containers\FString) & SavedDir )
[]
FAnalyticsSessionSummaryManager::GetSessionExpirationAge
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsSessionSummaryManager.h
Returns the age at which a session is considered expired and shouldn't be sent anymore. The expiration delay.
AnalyticsET
static [FTimespan](API\Runtime\Core\Misc\FTimespan) GetSessionExpirationAge()
[]
IsUserLoggingOutProperty
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsSessionSummaryManager.h
Special key handled in CRC to decide if an abnormal shutdown crash report should be generated.
AnalyticsET
static const [TAnalyticsProperty](API\Runtime\Analytics\Interfaces\TAnalyticsProperty)< bool > IsUserLoggingOutProperty = TEXT("IsUserLoggingOut");
[]
FAnalyticsSessionSummaryManager::MakeStore
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsSessionSummaryManager.h
Creates a new property store associated to this manager process group. The manager only sends an analytics session summary when all collecting processes have closed their property store. Ensure to flush and release the store before calling the managerShutdown()to ensure the session is sent as soon a possible. Subsequent calls to MakeStore will increment an internal counter in the store's filename.
AnalyticsET
[TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [IAnalyticsPropertyStore](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore) > MakeStore ( uint32 InitialCapacity )
[]
FAnalyticsSessionSummaryManager::SetUserId
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsSessionSummaryManager.h
Sets a the user id used for reporting analytics. Allows for changing the application user after startup. Will set the user id on all existing stores created from this session summary manager.
AnalyticsET
void SetUserId ( const [FString](API\Runtime\Core\Containers\FString) & UserId )
[]
FAnalyticsSessionSummaryManager::SetSender
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsSessionSummaryManager.h
Sets a summary sender to enable the manager to send sessions. If the sender is null, the sessions are not sent. If the sender is set, the manager will periodically search and send pending sessions, usually the one left over from processes that died unexpectedly. As a rule, the principal process is responsible to send the left over summary sessions and a subsidiary process only sends the current sessions summary if it is the last process of the group to exit. The manager deletes the session data while sending.
AnalyticsET
void SetSender ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [IAnalyticsSessionSummarySender](API\Runtime\AnalyticsET\IAnalyticsSessionSummarySender) > Sender )
[]
FAnalyticsSessionSummaryManager::Shutdown
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsSessionSummaryManager.h
MakeStore()
AnalyticsET
void Shutdown ( bool bDiscard )
[]
ShutdownTypeCodeProperty
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsSessionSummaryManager.h
Special key handled by the manager for the analytics backend. Its value must be one of EAnalyticsSessionShutdownType enum value.
AnalyticsET
static const [TAnalyticsProperty](API\Runtime\Analytics\Interfaces\TAnalyticsProperty)< int32 > ShutdownTypeCodeProperty = TEXT("ShutdownTypeCode");
[]
FAnalyticsSessionSummaryManager::FAnalyticsSessionSummaryManager
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsSessionSummaryManager.h
Constructs a manager for a subsidiary process, usually a companion process that collects extra information on the behalf of the principal process.
AnalyticsET
FAnalyticsSessionSummaryManager ( const [FString](API\Runtime\Core\Containers\FString) & ProcessName, const [FString](API\Runtime\Core\Containers\FString) & ProcessGroupId, uint32 PrincipalProcessId, const [FString](API\Runtime\Core\Containers\FString) & SavedDir )
[]
FAnalyticsSessionSummaryManager::Tick
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsSessionSummaryManager.h
Discovers and salvages/sends/cleans up left over from previous execution(s), if any. Only the principal process can send left over sessions.
AnalyticsET
void Tick()
[]
FAnalyticsSessionSummaryManager::FAnalyticsSessionSummaryManager
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsSessionSummaryManager.h
IAnalyticsProviderET
AnalyticsET
FAnalyticsSessionSummaryManager ( const [FString](API\Runtime\Core\Containers\FString) & ProcessName, const [FString](API\Runtime\Core\Containers\FString) & ProcessGroupId, const [FString](API\Runtime\Core\Containers\FString) & UserId, const [FString](API\Runtime\Core\Containers\FString) & AppId, const [FString](API\Runtime\Core\Containers\FString) & AppVersion, const [FString](API\Runtime\Core\Containers\FString) & SessionId, const [FString](API\Runtime\Core\Containers\FString) & SavedDir )
[]
FAnalyticsSessionSummaryManager::FAnalyticsSessionSummaryManager
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsSessionSummaryManager.h
Delegate constructor.
AnalyticsET
FAnalyticsSessionSummaryManager &40; const FString & ProcessName, const FString & ProcessGroupId, uint32 InCurrentProcessId, uint32 PrincipalProcessId, const FString & UserId, const FString & AppId, const FString & AppVersion, const FString & SessionId, const FString & SessionRootDir &41;
[]
FAnalyticsSessionSummaryManager::~FAnalyticsSessionSummaryManager
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsSessionSummaryManager.h
Destructor.
AnalyticsET
~FAnalyticsSessionSummaryManager()
[]
FAnalyticsSessionSummaryManager
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsSessionSummaryManager.h
Several processes can collaborate to collect analytics for one principal process. The common case being the Editor acting as the principal process and CrashReportClient (CRC) acting as a subsidiary process. The principal process and its subsidiaries form a group of processes tied together. The last process of the group to exit is responsible to aggregates and sends the final report for the principal process. For any reasons, if the final report cannot be sent by a group, the responsibility to deal with the left over is put on the principal process. The principal process is responsible to clean up the left over from its previous execution(s) and possibly salvage and send reports delayed.
AnalyticsET
class FAnalyticsSessionSummaryManager
[]
FAnalyticsSessionSummarySender::SendSessionSummary
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsSessionSummarySender.h
Emits the summary events for the specified session id on behalf of the specified user/app/appversion. The function filters the properties by invoking the functor specified at construction.
AnalyticsET
virtual bool SendSessionSummary ( const [FString](API\Runtime\Core\Containers\FString) & UserId, const [FString](API\Runtime\Core\Containers\FString) & AppId, const [FString](API\Runtime\Core\Containers\FString) & AppVersion, const [FString](API\Runtime\Core\Containers\FString) & SessionId, const [TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) > & Properties )
[]
FAnalyticsSessionSummarySender::FAnalyticsSessionSummarySender
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsSessionSummarySender.h
Construction a summary sender.
AnalyticsET
FAnalyticsSessionSummarySender ( [IAnalyticsProviderET](API\Runtime\AnalyticsET\IAnalyticsProviderET) & Provider, [TFunction](API\Runtime\Core\GenericPlatform\TFunction)< bool(const [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) &)> ShouldEmitFilterFunc )
[]
FAnalyticsSessionSummarySender
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/AnalyticsSessionSummarySender.h
Sends the analytics session summary to Epic Games analytics service.
AnalyticsET
class FAnalyticsSessionSummarySender : public [IAnalyticsSessionSummarySender](API\Runtime\AnalyticsET\IAnalyticsSessionSummarySender)
[]
IAnalyticsProviderET::GetAppID
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
Method to get the AppID (APIKey) the AppID (APIKey)
AnalyticsET
const [FString](API\Runtime\Core\Containers\FString) & GetAppID() const
[]
IAnalyticsProviderET::GetAppVersion
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
Method to get the AppVersion the AppVersion
AnalyticsET
const [FString](API\Runtime\Core\Containers\FString) & GetAppVersion() const
[]
IAnalyticsProviderET::GetConfig
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
Return the current provider configuration.
AnalyticsET
const [FAnalyticsET::Config](API\Runtime\AnalyticsET\FAnalyticsET\Config) & GetConfig() const
[]
IAnalyticsProviderET::GetDefaultEventAttribute
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
Range checking is not done, similar toTArray. Use GetDefaultAttributeCount() first! one attribute of the default attributes so we don't have to copy the entire attribute array.
AnalyticsET
[FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) GetDefaultEventAttribute ( int AttributeIndex ) const
[]
IAnalyticsProviderET::GetDefaultEventAttributesSafe
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
the current array of default attributes.
AnalyticsET
[TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) > GetDefaultEventAttributesSafe() const
[]
IAnalyticsProviderET::BlockUntilFlushed
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
Blocks execution in the thread until all events have been flushed to the network.
AnalyticsET
void BlockUntilFlushed ( float InTimeoutSec )
[]
OnEventRecorded
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
AnalyticsET
typedef [TFunction](API\Runtime\Core\GenericPlatform\TFunction)< void(const [FString](API\Runtime\Core\Containers\FString) &EventName, const [TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) > &Attrs, bool bJson)> OnEventRecorded
[]
IAnalyticsProviderET::RecordEvent
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
Primary RecordEvent API. Allow move semantics to capture the attributes.
AnalyticsET
void RecordEvent ( [FString](API\Runtime\Core\Containers\FString) && EventName, const [TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) > & Attributes )
[]
IAnalyticsProviderET::RecordEvent
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
This class augments RecordEvent with a version that takes the EventName by rvalue reference to save a string copy. Implement the base version in terms of this one.
AnalyticsET
virtual void RecordEvent ( const [FString](API\Runtime\Core\Containers\FString) & EventName, const [TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) > & Attributes )
[]
IAnalyticsProviderET::SetAppID
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
Special setter to set the AppID, something that is not normally allowed for third party analytics providers.
AnalyticsET
void SetAppID ( [FString](API\Runtime\Core\Containers\FString) && AppID )
[]
IAnalyticsProviderET::SetAppVersion
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
Sets the AppVersion.
AnalyticsET
void SetAppVersion ( [FString](API\Runtime\Core\Containers\FString) && AppVersion )
[]
IAnalyticsProviderET::SetEventCallback
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
Set a callback to be invoked any time an event is queued.
AnalyticsET
void SetEventCallback ( const [OnEventRecorded](API\Runtime\AnalyticsET\IAnalyticsProviderET\OnEventRecorded) & Callback )
[]
IAnalyticsProviderET::GetDefaultEventAttributeCount
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
Used with GetDefaultAttribute to iterate over the default attributes. the number of default attributes are currently being applied.
AnalyticsET
int32 GetDefaultEventAttributeCount() const
[]
IAnalyticsProviderET::SetDefaultEventAttributes
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
Sets an array of attributes that will automatically be appended to any event that is sent. Logical effect is like adding them to all events before calling RecordEvent. Practically, it is implemented much more efficiently from a storage and allocation perspective.
AnalyticsET
void SetDefaultEventAttributes ( [TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) > && Attributes )
[]
IAnalyticsProviderET::SetShouldRecordEventFunc
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
Set an event filter to dynamically control whether an event should be sent.
AnalyticsET
void SetShouldRecordEventFunc ( const [ShouldRecordEventFunction](API\Runtime\AnalyticsET\IAnalyticsProviderET\ShouldRecordEventFunction) & ShouldRecordEventFunc )
[]
IAnalyticsProviderET::SetHeader
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
Sets a header to be included with analytics http requests
AnalyticsET
void SetHeader ( const [FString](API\Runtime\Core\Containers\FString) & HeaderName, const [FString](API\Runtime\Core\Containers\FString) & HeaderValue )
[]
IAnalyticsProviderET::SetURLEndpoint
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
Updates the default URL endpoint and AltDomains.
AnalyticsET
void SetURLEndpoint ( const [FString](API\Runtime\Core\Containers\FString) & UrlEndpoint, const [TArray](API\Runtime\Core\Containers\TArray)< [FString](API\Runtime\Core\Containers\FString) > & AltDomains )
[]
IAnalyticsProviderET::StartSession
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
This class augments StartSession with a version that takes the SessionID instead of always generating it. Implement the base version in terms of this one.
AnalyticsET
virtual bool StartSession ( const [TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) > & Attributes )
[]
ShouldRecordEventFunction
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
Callback used before any event is actually sent. Allows higher level code to disable events.
AnalyticsET
typedef [TFunction](API\Runtime\Core\GenericPlatform\TFunction)< bool(const [IAnalyticsProviderET](API\Runtime\AnalyticsET\IAnalyticsProviderET) &ThisProvider, const [FString](API\Runtime\Core\Containers\FString) &EventName)> ShouldRecordEventFunction
[]
IAnalyticsProviderET::ShouldRecordEvent
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
Allows higher level code to abort logic to set up for a RecordEvent call by checking the filter that will be used to send the event first. true if the event will be recorded using the currently installed ShouldRecordEvent function
AnalyticsET
bool ShouldRecordEvent ( const [FString](API\Runtime\Core\Containers\FString) & EventName ) const
[]
IAnalyticsProviderET::StartSession
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
Primary StartSession API. Allow move semantics to capture the attributes.
AnalyticsET
bool StartSession ( [FString](API\Runtime\Core\Containers\FString) InSessionID, const [TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) > & Attributes )
[]
IAnalyticsProviderET
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h
ET specific analytics provider instance. Exposes additional APIs to support Json-based events, default attributes, and allowing events to be disabled (generally via hotfixing).
AnalyticsET
class IAnalyticsProviderET : public [IAnalyticsProvider](API\Runtime\Analytics\Interfaces\IAnalyticsProvider)
[]
IAnalyticsSessionSummarySender::SendSessionSummary
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsSessionSummarySender.h
Emits the summary events for the specified session id on behalf of the specified user/app/appversion. The function filters the properties by invoking the functor specified at construction.
AnalyticsET
bool SendSessionSummary ( const [FString](API\Runtime\Core\Containers\FString) & UserId, const [FString](API\Runtime\Core\Containers\FString) & AppId, const [FString](API\Runtime\Core\Containers\FString) & AppVersion, const [FString](API\Runtime\Core\Containers\FString) & SessionId, const [TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) > & Properties )
[]
IAnalyticsSessionSummarySender::~IAnalyticsSessionSummarySender
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsSessionSummarySender.h
AnalyticsET
virtual ~IAnalyticsSessionSummarySender()
[]
IAnalyticsSessionSummarySender
/Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsSessionSummarySender.h
Sends the analytics session summary to a backend service.
AnalyticsET
class IAnalyticsSessionSummarySender
[]
FAnalyticsMulticast::Config::GetKeyNameForProviderModuleNames
/Engine/Plugins/Runtime/Analytics/AnalyticsMulticast/Source/AnalyticsMulticast/Public/AnalyticsMulticast.h
KeyName required for APIKey configuration.
AnalyticsMulticast
static FString GetKeyNameForProviderModuleNames&40;&41;
[]
Config
/Engine/Plugins/Runtime/Analytics/AnalyticsMulticast/Source/AnalyticsMulticast/Public/AnalyticsMulticast.h
Defines required configuration values for multicast analytics provider. Basically, you provide a list of provider modules that define the providers you want to multicast events to. Beyond that, each provider module created will use the provided configuration delegate to configure itself, so that configuration delegate must be able to configure each specific provider as well (see CreateAnalyticsProvider function below).
AnalyticsMulticast
struct Config
[ { "type": "FString", "name": "ProviderModuleNames", "description": "Comma separated list of analytics provider modules" } ]
FAnalyticsMulticast::CreateAnalyticsProvider
/Engine/Plugins/Runtime/Analytics/AnalyticsMulticast/Source/AnalyticsMulticast/Public/AnalyticsMulticast.h
Construct an analytics provider directly from a config object (and a delegate to provide configuration to each configured provider).
AnalyticsMulticast
virtual [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [IAnalyticsProvider](API\Runtime\Analytics\Interfaces\IAnalyticsProvider) > CreateAnalyticsProvider ( const [Config](API\Plugins\AnalyticsMulticast\FAnalyticsMulticast\Config) & ConfigValues, const FAnalyticsProviderConfigurationDelegate & GetConfigValue ) const
[]
FAnalyticsMulticast::CreateAnalyticsProvider
/Engine/Plugins/Runtime/Analytics/AnalyticsMulticast/Source/AnalyticsMulticast/Public/AnalyticsMulticast.h
When a particular provider module is loaded, it will create an instance and use the provided Configuration delegate to configure each provider.
AnalyticsMulticast
virtual [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [IAnalyticsProvider](API\Runtime\Analytics\Interfaces\IAnalyticsProvider) > CreateAnalyticsProvider ( const FAnalyticsProviderConfigurationDelegate & GetConfigValue ) const
[]
FAnalyticsMulticast::Get
/Engine/Plugins/Runtime/Analytics/AnalyticsMulticast/Source/AnalyticsMulticast/Public/AnalyticsMulticast.h
Singleton-like access to this module's interface. This is just for convenience! Beware of calling this during the shutdown phase, though. Your module might have been unloaded already. Returns singleton instance, loading the module on demand if needed
AnalyticsMulticast
static [FAnalyticsMulticast](API\Plugins\AnalyticsMulticast\FAnalyticsMulticast) & Get()
[]
FAnalyticsMulticast
/Engine/Plugins/Runtime/Analytics/AnalyticsMulticast/Source/AnalyticsMulticast/Public/AnalyticsMulticast.h
Exposes a multicast provider that multicasts analytics events to multiple providers. Configured using a comma separated list of provider modules. Each module then uses The supplied configuration delegate to configure itself.
AnalyticsMulticast
class FAnalyticsMulticast : public [IAnalyticsProviderModule](API\Runtime\Analytics\Interfaces\IAnalyticsProviderModule)
[]
FAnalyticsMulticastEditorModule
/Engine/Plugins/Runtime/Analytics/AnalyticsMulticast/Source/AnaltyicsMulticastEditor/Public/AnalyticsMulticastEditor.h
AnalyticsMulticastEditor
class FAnalyticsMulticastEditorModule : public [IModuleInterface](API\Runtime\Core\Modules\IModuleInterface)
[]
UAnalyticsMulticastSettings::ReadConfigSettings
/Engine/Plugins/Runtime/Analytics/AnalyticsMulticast/Source/AnaltyicsMulticastEditor/Classes/AnalyticsMulticastSettings.h
Provides a mechanism to read the section based information into thisUObject's properties
AnalyticsMulticastEditor
virtual void ReadConfigSettings()
[]
UAnalyticsMulticastSettings::WriteConfigSettings
/Engine/Plugins/Runtime/Analytics/AnalyticsMulticast/Source/AnaltyicsMulticastEditor/Classes/AnalyticsMulticastSettings.h
Provides a mechanism to save this object's properties to the section based ini values
AnalyticsMulticastEditor
virtual void WriteConfigSettings()
[]
UAnalyticsMulticastSettings::UAnalyticsMulticastSettings
/Engine/Plugins/Runtime/Analytics/AnalyticsMulticast/Source/AnaltyicsMulticastEditor/Classes/AnalyticsMulticastSettings.h
AnalyticsMulticastEditor
UAnalyticsMulticastSettings ( const [FObjectInitializer](API\Runtime\CoreUObject\UObject\FObjectInitializer) & ObjectInitializer )
[]
UAnalyticsMulticastSettings
/Engine/Plugins/Runtime/Analytics/AnalyticsMulticast/Source/AnaltyicsMulticastEditor/Classes/AnalyticsMulticastSettings.h
AnalyticsMulticastEditor
[UCLASS](Programming/UnrealArchitecture/Reference/Classes#classdeclaration)() class UAnalyticsMulticastSettings : public [UAnalyticsSettingsBase](API\Runtime\AnalyticsVisualEditing\UAnalyticsSettingsBase)
[ { "type": "TArray<FString...", "name": "DebugMulticastProviders", "description": "The list of analytics providers to forward analytics events to" }, { "type": "TArray<FString...", "name": "DevelopmentMulticastProviders", "description": "The list of analytics providers to forward analytics events to" }, { "type": "TArray<FString...", "name": "ReleaseMulticastProviders", "description": "The list of analytics providers to forward analytics events to" }, { "type": "TArray<FString...", "name": "TestMulticastProviders", "description": "The list of analytics providers to forward analytics events to" } ]
FAnalyticsVisualEditingModule
/Engine/Source/Runtime/Analytics/AnalyticsVisualEditing/Public/AnalyticsVisualEditing.h
This module holds the baseUObjectclass that allows visual editing of configuration settings in the Unreal Editor. This is needed because the settings need to be usable outside of theUObjectframework so these objects wrap those settings for editor display purposes and write the non-UObject config property information out
AnalyticsVisualEditing
class FAnalyticsVisualEditingModule : public [IModuleInterface](API\Runtime\Core\Modules\IModuleInterface)
[]