Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

On This Page

Table of Contents

Overview

The Dashboard provides an overview of what's been happening across all your content. The information does not include jobs in progress--only completed runs. 

...

The graph on the right provides insights into the number of jobs that have met their stop policies (entered a completed status). It also identifies the number of jobs that haven't met stop policies and the number of jobs that don't have stop policies defined. Click View jobs to go to the Jobs page. 

...

Dashboard Reports Using the REST API

The sample code in this section provides REST API calls for the same information available on the Dashboard.

Total Number of Jobs and Total Runs

Code Block
GET {{url}}v1/reports/all/stats?fields=transfer_stats

Value of Data Identified and Data Resolved

Code Block
Cumulative total of source bytes:
GET {{url}}v1/transfers/stats/by_status

Cumulative total of destination bytes:
GET {{url}}v1/transfers/stats/by_status

Dashboard Timeline

Code Block
GET {{url}}v1/transfers/stats/timeline?range=2w

Transfer statistics

Code Block
GET {{url}}v1/reports/all/stats?fields=transfer_stats

Statistics for a Given Time Period

List All Reports for the Last 2 Weeks

...

Code Block
GET {{url}}v1/transfers/stats?range=2w

...

Related

Job Reports | Create a New Job Report

Job Reports | Item Report

Reports | Dashboard

Job Reports | Content Insights

...