Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Summary:

  • Type - Dashboard cumulative summariser
  • Granularity - DAY
  • Computation Level - Level 3
  • Frequency - Runs Daily

...


FieldDescriptionComputation
1noOfUniqueDevicesThis metric tracks the total number of unique devices that have accessed Diksha(Portal and App)

filter by with below fields and compute the total distinct count 

Code Block
themeMidnight
filter((d_period = 0 ) and (d_tag=="all") and (d_content_id=='all')and (d_user_id=='all') and (d_deviceId!='all') and distinctCount(d_device_id)


2
totalDigitalContentPublished 
Number of contents been published

composite search API:

/composite/v3/search

3totalContentPlaySessionsThis metric tracks the total number of content play sessions (Portal and App).

filter with below fields and  aggregating the edata.eks.time_spent field

Code Block
themeMidnight
filter((d_period = 0) (cumulative), d_type = 'content', d_mode = 'playand (d_tag=="all") and (d_content_id=='all')and (d_user_id=='all') and (d_mode=='play') and (d_type=='content') and  aggregate(m_total_sessions)


4totalTimeSpentThis metric track the total time spent on Diksha(Portal and App)

filter by with below fields and  aggregating the edata.eks.time_spent field

Code Block
themeMidnight
filter((d_period = 0, d_device_id = 'all') and) and (d_tag=="all") and (d_content_id=='all')and (d_user_id=='all') and  OR (d_type=='app' ||'session') and (d_deviceId=='all') aggregate(m_total_ts)




Conclusion:

...