Google Analytics Date Range - Analytics Today

Google Analytic’s default date range is one month. As of this writing, there isn’t a way to change it. When tracking the visitors of multiple websites, it is often nice to be able to see the activity of the current day. In order to change the date range, you have to use the Flash based calendar on the right hand side of the page. The calendar sends a request back to Google servers to fetch the information for the date range that you chose. Although nice to use, it can be time consuming and tedious.

Analytics Calendar

The other way to request a date range is to pass a date parameter in the URL:

Example:
https: //google.com….dashboard?…&pdr=20080109-20080109

parameter: pdr

value: 20080109-20080109 (YearMonthDay-YearMonthDay)

Greasemonkey is a Firefox Add-on that allows customized JavaScript to be added to any web page that you visit.

I’ve written a user script called Analytics Today that sets your Analytics date range to the current day instead of 1 month. You can still obviously change the range just as you do now. Please feel free to try it out. I’ve included it, along with source code, below!

-

Download it here -> AnalyticsToday.user.js

-

Source Code:

// ==UserScript==
// @name Analytics Today
// @namespace blog.dansnetwork.com
// @description Sets Google Analytic’s default date range to today.

//@include https://www.google.com/analytics/reporting*

// @exclude
// ==/UserScript==

var url = window.location.href;
var urlParam = “&pdr=”;

var today = new Date();
var day = today.getDate();
var month = today.getMonth() + 1;
var year = parseInt(today.getFullYear());
var todaysRange;

if(day < 10)
day = ‘0′ + parseInt(day);
if(month < 10)
month = ‘0′ + parseInt(month);

var todaysRange = year + month + day + ‘-’ + year + month + day;

if(url.indexOf(urlParam) < 0)
window.location.href += ‘&pdr=’ + todaysRange;

Tags: , , ,

3 Responses to “Google Analytics Date Range - Analytics Today”

  1. Arvin Bautista Says:

    This was exactly what I was looking for to track my new blog, http://greasypc.blogspot.com, and my other sites. I feel like I’ve wasted so much time and worn out my wrist having to constantly change the date range.

  2. Jason Says:

    Perfect! Thanks for sharing this clever tool.

  3. Dan Says:

    It appears as if Google has modified their URL slightly. Applying Analytics Today to:

    https://www.google.com/analytics/reporting*

    instead of

    https://www.google.com/analytics/reporting/dashboard*

    should do the trick.

    (Tools -> Greasemonkey -> Manage User Scripts -> Click on Analytics Today in the left column -> Edit the URL in the Included Pages section)

    **The download and source code have now been modified

Leave a Reply