Real-Time Statistics add-on
Table of Contents
- Introduction
- Subscribe
- Statistics Over Time
- Video Popularity
- Browser, Device & HTML5 / Flash Statistics
- Data Export
- A note for Google Analytics users
- Setup <video> elements for stats
Introduction
SublimeVideo’s statistics platform offers a truly comprehensive, real-time overview of your site’s video traffic from any device, whether generated from mobile or desktop, HTML5 or Flash.

To access the Real-Time Statistics dashboard, simply click the ‘View Stats’ button next to
your site(s) on the My Sites page.
Subscribe
Choose a site and subscribe to the Real-Time Statistics add-on
Statistics Over Time
At the top of the Real-Time Statistics dashboard, you will find buttons to display the video statistics for the chosen site from the last 60 seconds (real-time), last 60 minutes, last 24 hours, last 30 days and last 365 days.
It’s worth noting that these buttons display miniature graph previews that update in real-time. Obviously, can be more easily perceived in the 60 seconds miniature. Nonetheless, it can sometimes be useful to keep an eye on your stats for the last 60 minutes or even 24 hours (for example, if you have just released a new video and are primarily monitoring traffic in real-time).
Selecting a time range updates the entire page to display stats for the chosen time period. You can also use the drop-down selector to enter a custom time range. On the large graph, video plays (in green) VS page visits (in gray) are displayed, so you can get an idea for how popular your video is compared to the rest of a page’s content. At this time, statistics for video plays from videos embedded elsewhere are not displayed.
Video Popularity
You can also see a list of all the videos you may have on a site, complete with loads VS plays and a graph preview for the currently selected time range. The list and graph previews are updated in real-time, making it easy to keep an eye on which videos are most popular – especially during periods of heavy traffic.
Please note your videos must have a uid in order to appear in this section. Read more.
Browser, Device & HTML5 / Flash Statistics
Browser + OS and HTML5 / Flash statistics are clearly displayed alongside device type usage (mobile or desktop), showing you what the most popular load-cases are for your videos within the currently selected time range. These statistics are also updated in real-time.
Data Export

You can export your stats data in CSV format for the selected period (days only). The CSV file includes loads and plays data for both normal and iframe embedded videos.
Please share your comments and suggestions about how you think we can improve our statistics platform on this SublimeVideo Community Forum thread.
A note for Google Analytics users
In case you are using Google Analytics to track the traffic of your site, you may use it to track your video statistics. Please refer to our specific help page to get more information about how to configure it.
This is also valid for most web analytics solutions.
Setup <video> elements for stats
Please note that the settings described below can be set via the Video Publishing Assistant.
The data-uid attribute
In order to make a video showing up in your statistics dashboard, you must give it a unique uid with the data-uid attribute. Here is an example:
<video class="sublime" data-uid="landscape1" poster="some-great-landscapes.jpg">
<source src="http://yoursite.com/some-great-landscapes.mp4" />
<source src="http://yoursite.com/some-great-landscapes.webm" />
</video>
Important note: It should be a unique string among all your videos. The string must be composed of alphanumeric, “-” (hyphen) and “_” (underscore) characters exclusively (case insensitive) and must be at least 1 character and less than 65 characters.
The actual regular expression used to validate the uid is: /^[a-z0-9_\-]{1,64}$/i.
Notes:
- The
data-uidsetting respects the Player settings syntax.
The title attribute
To ensure a video is displayed with a nice title in your statistics dashboard, simply use the title attribute. Here is an example:
<video class="sublime" title="My great landscapes" poster="some-great-landscapes.jpg">
<source src="http://yoursite.com/some-great-landscapes.mp4" />
<source src="http://yoursite.com/some-great-landscapes.webm" />
</video>
Notes:
- You can update the
titleas often as you’d like. Such changes will be reflected in the statistics page in near real-time. - The
titlesetting respects the Player settings syntax.



