GameAnalytics

For issues or assistance, please click here to contact Support
Unreal integration makes no sense
I just spent an afternoon trying to get the Unreal integration to work. To be clear, I'm installing from GitHub (which already had issues because if you try to download the Source.zip from releases, the big .lib file isn't there, instead you get the LFS stub). I'm using UE5.4.4 and C++ (not Blueprints). I almost gave up, but I dug into the issues and here's what I found. The instructions from https://docs.gameanalytics.com/integrations/sdk/unreal seem to indicate that GameAnalytics acts as an analytics provide for Unreal. This sounds great, except that Unreal doesn't run analytics provider in non-editor builds - so game/cooked builds wouldn't work properly. This is obvious if you look at the function "void FEngineAnalytics::Initialize()" in "EngineAnalytics.cpp" (this is Unreal's code). As a result, simply calling UGameAnalytics::initialize as the instructions indicate is insufficient, and the analytics engine is misconfigured. Besides, all the configuration that exists in the Project Settings is completely ignored, because it's only accessed when a session is started using the analytics provider interface. It was also very inconvenient that the SDK-CPP lib came in binary format, preventing me from debugging it and figuring out the issue much faster. I even had to modify the integration to add a log handler to understand why some events (resource) were not being sent correctly. Overall, I'm disappointed by the integration process. I don't know if going with Blueprints would've been better - though it that still relies on the analytics provider interface I doubt it. My advice would've been to essentially expose a very thin interface over the CPP lib, just transforming from FString to char*, and then make those available to Blueprints as static functions. The module already handles Startup and Shutdown, so integration could be seamless.
2
·

under review

Unreasonable chart view
When you look at charts like Revenue in menus like Realtime, Dashboards, Explore, etc., the charts don't look reasonable when there are a lot of items. Let's take a look at the Revenue chart by product as an example. [First screenshot] You can see that there are 5 items and 33 more items in the chart. Well, the best-selling item seems to have made about $120-$150 a day. [Second screenshot] The item that has made the most money recently seems to be... main_monthlt_grow. ★ <First problem> The information in the window where the details are displayed is not sorted, so it's really hard to find the information you want! [Third screenshot] This is where the real problem comes in. Since there are so many types of products, only one graph is displayed on the chart for some products. Of course, this is easy to understand. It would be too confusing if all the graphs for all items were displayed on the screen. But the real problem is that this information is not 'sorted' at all. Let's look at the following screenshot. [Fourth screenshot] Select to display event_legend and event_pass items. Voila! The graph is completely different! The event_legend product even made over $500 in revenue in one day. We don’t see this important information at a glance. We have to manually edit the chart every time we look at it so that we don’t miss this information. [Fifth screenshot] Of course, if we draw the chart by sorting only by revenue, we can see which products are selling the best much faster and easier. However, we don’t know how much is sold by date or what the trend is for each product. Revenue information is very important, and we hope to improve these issues with the chart.
2
·

under review

Load More