Search Unity

Other How to know when you're close to event limits?

Discussion in 'Unity Analytics' started by talespinvr, May 10, 2022.

  1. talespinvr

    talespinvr

    Joined:
    Apr 11, 2020
    Posts:
    7
    How do we know when we're getting close to the data processing limits? Can we get alerted?
     
  2. JeffDUnity3D

    JeffDUnity3D

    Joined:
    May 2, 2017
    Posts:
    14,446
    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
     
    PeachyPixels likes this.
  3. PeachyPixels

    PeachyPixels

    Joined:
    Feb 17, 2018
    Posts:
    704
    Thanks @JeffDUnity3D

    Expanding on your query, this gives a little more detailed breakdown of usage by event type...

    Code (CSharp):
    1. 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.
     
    JeffDUnity3D likes this.