Ransomware attackers specifically target and attempt to destroy backup systems to increase the probability of payment. Hardening your system is critical. Please ensure you have reviewed your platform security using the Security Hardening Checklist
Cohesity

COHESITY Documentation

Explore our documentation to get started, discover products & new features, access troubleshooting guides, register sources, platforms support.

Products
Data Security Alliance
Visit Cohesity.com
Demos
Support
Blogs
Developers
Partner Portals
Cohesity Community
© 2026 Cohesity, Inc. All Rights Reserved.
Terms of Use|
Privacy Policy|
Legal|
  1. Home
  2. IT Analytics Help
  3. Section IV. End user
  4. Work with the SQL template designer
  5. Example of a Donut Chart SQL Template: NetBackup Job Size by Job Type

Example of a Donut Chart SQL Template: NetBackup Job Size by Job Type

The following example results in a donut chart that represents the various job types--such as, application backups, full backups, incremental backups, and restores--as segments in a donut chart.

  1. In the SQL Template Designer, do not check any Template Designer items.

  2. In the Query window, enter the following select statement and click Validate Query:

    SELECT job_type_name,
    sum(kilobytes/1024/1024) Job_SIZE_GB
    FROM APT_V_NBU_JOB_DETAIL
    WHERE
    finish_date > sysdate -7
    AND job_type_name IS NOT NULL
    GROUP BY job_type_name
    ORDER BY job_type_name
    
  3. In the Formatting window, select Donut Chart from the Display report asdrop-down list.

  4. For the Caption field, select job_type_name from the drop-down list.

  5. Select all the fields to be displayed.

    For a donut chart, you need at least one field to be the caption and another field to be the segment.

  6. Click Next, enter a report name and Menu Group. Then, click Finish.

When you run this report, the output will look something like this:

Feedback

Was this page helpful?
Previous

Configure a Donut Chart SQL Template

Next

Configure a Gauge Chart SQL Template

Feedback

Was this page helpful?