Reports

You can find this section in HostBill Admin → Extras → Statistics & Reports → Reports.

Table of contents

Overview


HostBill allows you to generate various reports, either using pre-defined templates that can also be customized or optionally you can create your own report based on your individual needs. 

All core HostBill reports are in fact SQL queries in HostBill database. After executing query Report module takes care of displaying results in one of the admin-defined output: HTML, PDF, CSV, JSON, SQL or Plain Text. If you or your staff members are familiar with SQL you can easily customize existing HostBill reports or build your own from scratch.

By default HostBill comes with dozens of pre-installed reports - those reports cannot be removed. If you find that some report is missing some important data, or is a good starting point for your custom report, you can customize it.

Customizing reports

To customize a report choose the report from the list and click on Customize button on the right. You will see a similar screen with various configuration options to customize the report:

  1. Provide report name
  2. Choose the report type - group to which the report will be assigned
  3. Available columns - those are columns that are available in report. You can drag & drop available columns and columns to export in report. By dragging you can also change order of those columns
  4. Parameters of report - some reports allow you to enter parameters for report generation, those are mostly date conditions.
    For date field, you can also use following variables (making the report more dynamic):
    1. {$today} - current date
    2. {$current_month_start} - first day of current month
    3. {$current_month_end} - last day of current month
    4. {$previous_month_start} - first day of previous month 
    5. {$previous_month_end} - last day of current month 
    6. {$current_year_start} - first day of current year 
    7. {$current_year_end} - last day of current year
    8. {$previous_year_start} - first day of previous year 
    9. {$previous_year_end} - last day of previous year

      Modifying date variables

      Optionally, you can use smarty modifier: datemove to further modify available variables. 
      {$variable|datemove:'modify by'}

      Sample use cases:

      • {$today|datemove:'-1 day'}  - take today variable, subtract 1 day from it 
      • {$current_year_start|datemove:'-10 years'} - take current year start, subtract 10 years from it
      • {$current_year_end|datemove:'+5 years'|datemove:'-1 day'} - take current year end, add 5 years and subtract 1 day from it.
  5. Conditions box. Conditions allow you to enter certain report constrains on columns you've selected into export. Refer to screenshot below:
     
  6. Export as - here you can select a method of report export from available outputs: HTML, PDF, CSV, JSON, Googlechart, SQL or Plain Text
  7. Save parameters - to save from hassle of re-entering data, re-selecting columns etc. each time you want to export report, you can save current state for future use with this button
  8. Generate report - download/view report generated out of entered params/conditions
  9. Generate report & store results - download/view report generated out of entered params/conditions and store snapshot with frequency on demand, target: save to filesystem, data to retain: unlimited.

Creating New Custom Report

To create a new report simply click on Create new custom report button and you will be redirected to report configuration page. Best practice is to choose current report that uses data similar to what you're trying to achieve, and use "Customize" button next to it, allowing you to modify SQL query for this report.

Getting columns appear in Available columns

To have your columns appear in Available columns, make sure to add alias to each column using SQL keyword AS like

  SELECT  id AS `Account ID` FROM hb_accounts

Columns without aliases will not have option to export

Query editor with SQL hints

When editing SQL query using Reports section you'll be using editor with syntax highlighting and hints. Second feature is worth describing:

Listing database tables

In editor use CTRL(/Command)+Space combination - you'll be presented with list of all tables in your HostBill database - this way you will not be required to memorize all of them!

Listing table fields

After entering table name and "." dot symbol in SQL you're refering to table field - use CTRL+Space to see all available fields for this table

HostBill SQL functions

Adding to regular MySQL functions HostBill provides two custom functions you can call from your SQL queries:

  • hb_currency(amount,currency_id,rate) - this function will format amount field to display currency prefix/suffix as configured. currency_id and rate are optional - if those are missing HostBill will use its main currency, otherwise it will display amount field with currency_id (see hb_currencies table) and rate conversion rate
  • hb_date(date_field) - this function will return date field formatted with current HostBill date display settings

Example:

 SELECT
 hb_currency(total) AS `invoice total`,
 hb_date(date) AS `invoice date`
 FROM 
 hb_invoices

Please note - those functions work from reports scope only - calling them on DB directly will not work.

Creating admin-dashboard widget

 While working with reports you can save current report columns, parameters and conditions into a widget to be displayed on dashboard. After setting report as described above, proceed to section 4. of report editor. Here you can enter:

  • Widget name - text representiation of report, to be refered to later in dashboard widget
  • Widget type - depending on data you wish to present, select one of following:
    • Data table
    • Pie chart
    • Bar graph
    • Line graph

Note: 

  • When creating widget currently selected columns/parameters/conditions will be used. Changing them after widget is created will not affect previously generated widgets. 
  • To use Pie/line/bar charts your report should have only two columns exported: first one holding labels, second holding values
  • When using Data metric type, your report should only return one row of data, each column will be separate metric

Once ready click "Add widget" to store report widget.

Below widget setup box you can work with Previously created widgets (remove them).
Note that if your mysql query for report has changed, you most likely will need to re-create them.

Create auto-snapshot report data

This HostBill functionality allows to create snapshots: generate reports in a given time period and store them on a server and optionally send them to staff. Thanks to this option, you can get historical data, add it to admin area widgets and compare the results in time. After setting report as described above, proceed to section 5. of report editor. Here you can enter:

  • Snapshot name
  • Frequency:
    • On demand
    • Daily at certain hour
    • Weekly on certain day, at certain hour
    • Monthly every X days, at certain hour
  • Target:
    • None - just save report data to db
    • Save to filesystem for later download
    • Email to staff members 
  • Data to retain - set 0 for unlimited

Note: When creating snapshot currently selected columns/params/conditions will be used. Changing them after snapshot is created will not affect previously generated snapshots.