For local Zen DDC connections show the path where data is store in the Cache Statistics tab for DDC instead of local ip address

For Zen DDC connection show the storage size
#jira UE-199929
#rb Devin.Doucette

[CL 30501101 by dan engelbrecht in ue5-main branch]
This commit is contained in:
dan engelbrecht
2024-01-09 06:08:29 -05:00
parent f9a8e0cebe
commit ba66b561de
8 changed files with 115 additions and 4 deletions

View File

@@ -178,6 +178,9 @@ public:
}
}
uint64 GetTotalPhysicalSize() const { return TotalPhysicalSize; }
void SetTotalPhysicalSize(uint64 InTotalPhysicalSize) { TotalPhysicalSize = InTotalPhysicalSize; }
public:
void GatherLegacyUsageStats(TMap<FString, FDerivedDataCacheUsageStats>& UsageStatsMap, FString&& GraphPath) const
{
@@ -213,6 +216,7 @@ protected:
FString CacheType;
FString CacheName;
FString CacheStatusText;
uint64 TotalPhysicalSize = ~0ull;
EDerivedDataCacheStatus CacheStatus;
bool bIsLocal;
};