Moab Viewpoint
Viewpoint Reports

Specifying Available Reports

You can specify whether a user can generate reports. On the Reporting page, users choose from a list of available options, which report(s) to run.

Navigation components

Report output can be delivered in HTML, PDF, Excel, and, through the BIRT Viewer export function, in postscript. The following are the currently available reports:

Jobs and Proc Hours by Credential
List report of processor hours and jobs by credential. The data is displayed in table format by year, then by month.
Credential: User, Group, Account, Quality of Service
jobs_n_ded_proc_hours_by_cred.rptdesign
  
Jobs and Proc Hours by Month
Presents a bar chart of the chosen year with total processor hours and jobs for each month.
Year
jobs_n_ded_proc_hours_by_month.rptdesign
  
Jobs and Proc Hours by Quarter and Year Bar Chart
Bar chart with totals for jobs and processor hours by quarter and year.
None
jobs_n_ded_proc_hours_by_quarter_years.rptdesign
  
Jobs Submitted
Presents the jobs submitted by credential (user, group, account and quality of service) for the supplied time in table format with name and total of jobs.
  • Credential: User, Group, Account, Quality of Service
  • Start Time
  • End Time
jobs_submitted.rptdesign
  
Jobs Submitted and Completed Line Chart
Line chart showing number of jobs over the specified time and for the specified credential with the option of showing completed jobs.
  • Credential: User, Group, Account, Quality of Service
  • Start Time
  • End Time
  • Option to show time without submitted jobs or zero values
  • Option to view by submitted jobs or completed jobs
jobs_submitted_totals_line.rptdesign
  
Total Active Proc Count
Line chart showing the number of active processors over the specified time and for the specified credential and credential name.
  • Credential User, Group, Account, Quality of Service
  • Credential Name
  • Start Time
  • End Time
total_active_proc_count.rptdesign
  
Total Queue Time
Table and pie chart views of queue hours over the specified time and for the specified credential.
  • Start Time
  • End Time
  • Credential: User, Group, Account, Quality of Service
  • Show or Hide Zero Values
total_queue_time.rptdesign
  
Used Wallclock Time
Table and pie chart views of used wallclock hour for the specified time and for the specified credential.
  • Start Time
  • End Time
  • Credential: User, Group, Account, Quality of Service
used_wallclock_time.rptdesign

Customizing the Reporting Page

You can select which reports are available by modifying the reporting.xml file that is located in the Viewpoint home directory. Use the following example as a guide:

<reporting xsi:schemaLocation="http://www.adaptivecomputing.com reporting.xsd">
  <reports>
    <report>
      <display-name>Jobs Submitted</display-name>
      <name>jobs_submitted.rptdesign</name>
	  <display-category>Adaptive</display-category>
	  <category>adaptive</category>
	  <description>Presents the Jobs submitted by credential (user, group, account and quality of service) for the supplied time in table format with name and total of jobs</description>
    </report>
	<report>
	  <display-name>Total Queue Time</display-name>
	  <name>total_queue_time.rptdesign</name>
	  <display-category>Adaptive</display-category>
	  <category>adaptive</category>
	  <description>Table and pie chart views of queue hours over the specified time and for the specified credential (user, group, qos and account)</description>
	</report>
    <report>
	  <display-name>Used Wallclock Time</display-name>
	  <name>used_wallclock_time.rptdesign</name>
	  <display-category>Adaptive</display-category>
	  <category>adaptive</category>
	  <description>Pie chart and table views of used wallclock hours for the specified time and for the specified credential (user, group, qos and account)</description>
	</report>
  </reports>

</reporting>
  • Each <report> element contains the information for a single report.
  • The <display-name> element is the name that is visible on the Viewpoint Reporting page.
  • The <name> element is the actual file name of the report BIRT loads. BIRT reports end with the rptdesign extension. The .rptdesign files must be included in $CATALINA_HOME/webapps/reporting/report/{category}/{name}.
  • The <display-category> element is the viewable report category on the Viewpoint Reporting page.
  • The <category> element is the directory into which the actual report is uploaded on the server in the reporting webapp report directory, or in other words /reporting/report.
  • The <description> element contains a visible description for the report viewable on the Viewpoint Reporting page.