The Making of a Pretty Web Stats Report with Pentaho Report Designer 5

First – let me whet your appetite by showing you what a pretty pretty report you will be able to compose after you finished this tutorial – and there you go (click on the picture to bask in the report’s full glory!):

report-small

Oh yeah, if that report was a party, I’d vote for it! (or go there, depending on what kind of party) – And you know what’s the best? Integrated into the Pentaho BI System its dissemination is fully automatable. No more manually updating Excel dashboards – no more clicking refresh and then sending it to your data hungry office friends – no, no, no  – it can be scheduled – deployed via a web interface of Pentaho BA Server or kicked through the wire as a shiny PDF! Allowing you to waste less time on technicalities and have real fun with data! Okay, now I got you hooked – So, let’s get down to business!

No Data – No Joy of Reporting

Before we can rock the bar charts we need data – the schema of the data I am going to load into a MySQL table from Google Analytics using Pentaho Data Integration is as follows:

The PDI transformation I use for the ETL from Analytics to MySQL may be downloaded here and looks like this:

etl-ga

I am going to import the web stats for the time span April 1 2013 to April 30 2014. In case you have no idea how an import with PDI from GA works, then check out this article. And if you would like to simply start playing with PRD shoot me a mail and I will send you the full SQL dump – it’s a deal!

Part 1: Composing the Report of Sub-Reports

Installing PRD is usally as simple as downloading the archive and extracting it somewhere. Then you launch it by executing either report-designer.sh or report-designer.bat – depending on your system. Ah, right, and don’t forget to download the MySQL-JDBC-adapter and place it in [PRD-HOME]/lib/jdbc – or Pentaho won’t know how to flirt with MySQL.

When you want to use data from different data queries in the same report then it is best to partition the report into sub-reports. I am going to use a main report and place four sub-reports in there – one for each chart and the table.

Mind how I place all the charts in the “Report Header” section and the text fields representing the various URLs and the corresponding page views number in the “Details” section. That’s because the “Report Header” section is rendered once, while the “Details” section is evaluated once per data record coming from the sub-reports data query.

Part 2: Setting up the Data Queries

The charts and the table need the data to be specified by MySQL queries in our case. The SQL queries below feature the finally used parameters “SelectYear” and “SelectMonth”. You can substitute those with 2014 and 4 for example – that’s how I use them in this part of the tutorial.

Part 3: Specifying the Main Parameters

So that we can choose what year and month the report should refer to, we need to specify two parameters named “SelectYear” and “SelectMonth”.

Part 4: Communicating the Parameters to the Sub-Reports

At the end of the day we want to apply the parameters within the sub-reports – to have the pie chart f.x. show the top countries for that respective month. For that purpose we need to communicate those down to the sub-reports by introducing a mapping from “external” to “internal” parameter for each sub-report. Then we can also integrate the parameters in the data queries using the notation “${ParameterName}”.

 Part 5: Introducing a Dynamic Title

This part deals with blessing the report with a dynamic title. For illustrative purposes I show two options. One is via a “message field” which allow mixing text with parameter values using the “$(ParameterName)” notation. The second option allows a more complex composition by using a formula to turn a parameter value into a string:

The value of SelectMonth specifies the index of the string we want to use to concatenate it with the value of SelectYear. This formula is an OpenFormula expression.

Part 6: Prettifying the Report

Finally we are going to adjust a few details and the arrangements. I invite the reader to play around and adjust the aesthetics further – as well as adding titles to the charts.

Delving Deeper

Now that I successfully whetted your appetite I highly recommend you check out the book “Pentaho 5.0 Reporting by Example: Beginner’s Guide” (to which I am in no way affiliated with btw!) – it is very well written and offers a very sound introduction into the whole affair of report design and dissemination with the Pentaho Report Designer 5.


(original article published on www.joyofdata.de)

4 thoughts on “The Making of a Pretty Web Stats Report with Pentaho Report Designer 5

Comments are closed.