How do we know when we’re getting close to the data processing limits? Can we get alerted?
We are working on a processing and billing dashboard. In the meantime, you can issue the following SQL query in SQL Data Explorer:
select count(*) from EVENTS
We currently provide 25 million events per month for free, most users won’t come anywhere close to that. There is more information here: https://unity.com/solutions/gaming-services/pricing
1 Like
Thanks @JeffDUnity3D
Expanding on your query, this gives a little more detailed breakdown of usage by event type…
select EVENT_NAME, count(*) EVENT_COUNT from EVENTS where EVENT_DATE > CURRENT_DATE-28 group by EVENT_NAME order by EVENT_NAME
That said, the group totals are shown in the table below the graph but not the overall total. It would be great if overall could also be shown, when more than one group is detected.
1 Like