How to get the number of successful job runs per month
search cancel

How to get the number of successful job runs per month

book

Article ID: 372901

calendar_today

Updated On:

Products

Autosys Workload Automation

Issue/Introduction

How to get the number of successful job runs per month required for license renewal 

Resolution

Depending on version of AutoSys:

  • In 12.x releases: Use autoaggr to generate a report for monthly successful job executions simply by executing:
    autoaggr -J -m -c -F "MM/DD/YYYY 00:00" -T "MM/DD/YYYY 00:00" -o /tmp/monthly_aggr_report.csv

    The fourth column in the output file is where successful job execution count resides.

  • In 24.x releases: Running the telemetry script will generate a series of reports in the $AUTOUSER/telemetry directory, in csv format.
    /opt/CA/WorkloadAutomationAE/autosys/bin/telemetry.sh -export -F "MM/DD/YYYY" -T "MM/DD/YYYY"

    The csv file of interest is named accordingly as successful_job_execution_telemetry_data.AUTOSERV.MMDDYYY.######.csv

    The data in this file will show number of executions per day for the month in the ninth column as highlighted in below example output:
    2025-07-30,PRODUCSKU,Autosys Workload Automation for Hybrid Cloud,COMPANYDOMAIN,SITEID,support,0,INST-hostname,1898,24.0.00-0066
    2025-07-31,PRODUCSKU,Autosys Workload Automation for Hybrid Cloud,COMPANYDOMAIN,SITEID,support,0,INST-hostname,2310,24.0.00-0066

Additional Information