10.1 Viewpoint 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.

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

Events
Report showing historical event information.
  • Chart type: No Chart, Pie Chart, Bar Chart
  • Start Date and Time
  • End Date and Time
  • Events
general_events.rptdesign
   
Jobs and Processor 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 Processor Hours by Month
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 Processor Hours by Quarter and Year Bar Chart
Bar chart of 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 Processor 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 Allocated Node Count
Displays the number of total allocated nodes over time in a line chart for the given start and end time by credential and name.
  • Start Time
  • End Time
  • Credential: User, Group, Account, Quality of Service
  • Credential Choice or Name
total_allocated_node_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
   
VM Lifecycle Report
Events occurring on a VM by user and time.
  • VM Name
  • Start Time
  • End Time
  • Show By: Week, Month, Quarter, Year
  • Chart Orientation: Vertical, Horizontal
  • User
vm_lifecycle.rptdesign

10.1.1 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>
      <report-design>jobs_submitted.rptdesign</report-design>
      <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>
      <report-design>total_queue_time.rptdesign</report-design>
      <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>
      <report-design>used_wallclock_time.rptdesign</report-design>
      <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>
<reporting xsi:schemaLocation="http://www.adaptivecomputing.com reporting.xsd">
  <reports>
    <report>
      <display-name>Jobs Submitted</display-name>
      <report-design>
        jobs_submitted.rptdesign
      </report-design>
      <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>
      <report-design>
        total_queue_time.rptdesign
      </report-design>
      <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>
      <report-design>
        used_wallclock_time.rptdesign
      </report-design>
      <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>