Versions Compared

Key

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

...

On This Page

Table of Contents

Overview

The Content Insight report presents a breakdown of the data for the job, including a file size breakdown that can be used to understand transfer performance. In addition to a summary of the size and file type breakdowns, the screen identifies the count for different file extensions, folder depth groupings, and modified date groupings. Where applicable, DryvIQ will use the content modified date when supported by a given platform. This ensures accurate modified date timestamps when viewing the Content Insights charts. You can click on any item category and view the items for that category.  

Info

DryvIQ uses standard base-2 conversion for transfer values. Only transferred content counts towards the licensed Transfer Limit (bytes under management). Simulation Jobs do not count towards the licensed transfer limit until they are converted to jobs and actually transfer data.

Job Content Insights Report

This report provides detailed content information for the individual job. Use the drop down options to change the chart views.

...

...

Content Insight Reporting Using the REST API

You can pull the information available on the Content Insights report using the REST API.

File Type Breakdown

View a breakdown of the content grouped into 5 content categories.    

Code Block
GET {{url}}v1/transfers/{{job}}/stats/by_content_category

File Attributes Breakdown

Each chart is broken down into the top 5 buckets, with the remaining items captured into the "other" or "older" bucket. Use the following calls to return the information in the corresponding charts.

...

Code Block
GET {{url}}v1/transfers/{{job}}/stats/by_versions

Content Analysis

The Content Analysis section breaks down your top largest files and folders.

...

Code Block
GET {{url}}v1/transfers/{{job}}/folders?&fields=id,name,source.path,source.bytes&sort=source.bytes+desc&offset=0&limit=5

List All Content Categories (File Types)

To view your entire content breakdown by category, use the following call.

...