Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space DTPDEVEL and version 2024.2

...

Table of Contents
maxLevel12

Configuring the Report Storage Threshold

When Data Collector receives and processes files from analyzers, a report file is processed and moved to the <DTP_DATA_DIR>/data/_DEFAULT_/dc/stored folder. This folder contains subfolders that are structured according to a YEAR/MONTH/DAY/XXX/YYY format where XXX and YYY are integer values. The values are calculated based on file name.

...

If these entries do not appear in the DCConfig.xml file, then the defaults will be used.

Configuring the Maximum Size of Report Uploads

By default, the maximum size of the XML report file that Data Collector can accept is 512M. You can change the limit by modifying JAVA_DC_CONFIG_ARGS parameter located in the <DTP_INSTALL>/bin/variables file. For example:

No Format
JAVA_DC_CONFIG_ARGS=" -Dcom.parasoft.sdm.api.rawstorage.datacollector.uploadMaxSize=1024"

Configuring Data Collector to Log User Information with DTP Requests and Responses

If you are upgrading from DTP 2022.2 or earlier, you can configure Tomcat to log user information along with each request and response. This is necessary for some users to be in compliance with certain regulations. This is unnecessary for new installs of DTP 2023.1 or later.

...

These logs can be found in the dc_jetty_request.log file located in the <DTP_DATA_DIR>/logs/ directory.

Configuring Build Details Retention Settings

By default, Data Collector stores ten builds' worth of metrics data and two builds' worth of test results and test coverage data in the database (see Default Data Retention Settings). The data related to these practices are referred to as "build details" and are used to populate their respective explorer views. When a new report is sent to DTP, the details for the oldest relevant build are deleted if the limit is exceeded. Each build details type, however, is stored independently so that exceeding a build details type's limit does not affect other build details for the same build. Static analysis details are always stored in the database and are not configurable.

...

You can configure the number of build's worth of data retained for each practice (see Configuration). Raise the limit if you want Data Collector to retain additional build's worth of details when new reports are sent to DTP. Build details can consume a significant amount of disk space, so if disk space is an issue, consider reducing the limit. At least two builds' worth of details is required for DTP to display meaningful information. 

About Resource Coverage Details

If a filter is configured to show data according to resource groups, then resource coverage details are also required in order to view data for a single build, as well as to view the build in coverage trend widgets. A resource group is a collection of files and/or folders defined by a set of one or more ANT file patterns. They enable you to view software quality information for specific parts of the code (see Adding Resource Groups to Projects).

...

If your filter does not use resource groups, then you can ignore the settings for resource coverage details.

Configuration Hierarchy

  1. When Data Collector receives new results from a Parasoft tool, it first checks the build details storage settings for the project (see Configuring Build Details Settings). 
  2. If the project build details settings have not been configured, Data Collector uses the global build details settings (see Configuration).
  3. If neither the project, nor the Data Collector's build details settings have been configured, the limit for test and coverage details will be defined by the value set with the following Java argument:

    No Format
    -Dcom.parasoft.sdm.dc.build.details.to.keep

    The argument is specified in the variables file located in the <DTP_INSTALL>/bin directory. There will be no limit for the metrics or resource coverage build details. This option is deprecated and may be removed in future versions.

Anchor
DefaultDataRetentionSettings
DefaultDataRetentionSettings
Default Data Retention Settings

The amount of data stored is based on the number of historical builds, as opposed to a hard limit, such as gigabytes. By default, DTP keeps the following data:

  • Unit test data: two (2) historical builds
  • Coverage data: two (2) historical builds
  • Resource coverage data: ten (10) historical builds
  • Metrics data: ten (10) historical builds.

Configuration 
Anchor
build-details-configuration-dcconfigxml
build-details-configuration-dcconfigxml

To configure the data retention settings:

  1. Stop the Data Collector service. See Stopping DTP Services.
  2. Open the DCConfig.xml configuration file located in the <DTP_DATA_DIR>/grs/config/ directory and locate the <details-retention-builds-count> group of settings:

    Code Block
    languagexml
    <!-- <details-retention-builds-count>
            <tests>2</tests>
            <coverage>2</coverage>
    		<resource-coverage>10</resource-coverage>
            <metrics>8</metrics>
     </details-retention-builds-count>-->
  3. Uncomment the settings and specify how much data should be stored for each practice. The values refer to number of builds. Specifying 1, for example, means storing one build worth of data for the practice. 

    Code Block
    languagexml
    <details-retention-builds-count>
    	<tests>3</tests>
        <coverage>4</coverage>
    	<resource-coverage>12</resource-coverage>
        <metrics>9</metrics>
    </details-retention-builds-count>
  4. Save the file and restart Data Collector and DTP Server.

Configuring Test Failures Threshold
Anchor
ConfigTestFailuresThreshold
ConfigTestFailuresThreshold

By default, Data Collector will reject reports that contain more than 5000 reported test failures. You can change the limit by adding the following Data Collector JVM argument:

...

The variables file is overwritten during an upgrade, so you will need to reapply the configuration setting after upgrading DTP.

Configuring Max Traffic Response from SOAtest

Reports sent to DTP from SOAtest may include request response messages. By default, Data Collector will accept message responses that are 1 million bytes, but you can specify a limit by setting the following Data Collector JVM argument:

No Format
-Dcom.parasoft.sdm.dc.traffic.max.length=<BYTES>

Configuring Automatic Project Creation

By default, when Data Collector processes data referencing a project that does not exist in DTP, the project is automatically created (assuming the user that sends the data has sufficient permissions in DTP to create the project) before Data Collector sends the data to DTP. You can enable/disable this functionality by doing the following:

...

If the <auto-create-projects> element is not present in DCConfig.xml, the default behavior will take effect and it will be treated as if the element were set to true. If you want to disable this functionality, add the <auto-create-projects> element to the file and set it to false. In cases where this functionality is disabled, Data Collector will reject reports referencing a project that does not exist.

Configuring the Number of Threads

Data Collector uses multiple threads to process reports that it has received from testing and code analysis tools in order to improve processing time. By default, Data Collector is configured to use two threads. 

...