---
title: "Examples of Reports Built with Xporter"
canonical: "https://docs.getxray.app/space/XRAY/301406114/Examples%20of%20Reports%20Built%20with%20Xporter"
format: markdown
---
> ❌ **This page has been deprecated and is no longer maintained.**
> ❌ 
> ❌ Please see the page [Curated list of Xporter Templates](https://getxraydocs.atlassian.net/wiki/spaces/XRAY/pages/160301188) instead.


> Macro (toc)


The reports mentioned here are mostly obtained from the "Xray Test Runs Report" and "Xray Requirements Report" which are found on the [Xporter template store](https://store.getxporter.app/).

Note that some charts show the number of Tests while others show the number of test runs. A Test may have multiple test runs; therefore, having many test runs does not tell you anything about the number of different Tests that were run in those test runs.

# Examples of reports

## Requirements Traceability Matrix

Shows the requirements, their status, related Tests and Defects.


**Template used: **[Creating fully customized reports](https://getxraydocs.atlassian.net/wiki/pages/createpage.action?spaceKey=xray&title=Creating%20fully%20customized%20reports&linkCreation=true&fromPageId=301406114)

**Sample JQL:**

```
project = CALC AND issuetype = "Story"
```


![image](media://6b0f1bfc-89c7-471a-9ccd-98d18acb9287)

## Test runs per day, per person

Shows the number of test runs that were executed per time unit, grouped by test run assignee/executor.


**Template used: **[Creating fully customized reports](https://getxraydocs.atlassian.net/wiki/pages/createpage.action?spaceKey=xray&title=Creating%20fully%20customized%20reports&linkCreation=true&fromPageId=301406114)

**Filters**: Test labels, test run status

**Grouping**: test run assignee/executor

**Sample JQL:**

```
project = CALC AND issuetype = "Test Execution" and fixVersion = "v3.0"
```


![image](media://985ff767-efc5-47cf-9029-58225475452f)

## Test runs per day, per status

Shows the number of test runs that were executed per time unit, grouped by test run status.

The pivot table allows grouping the date (X axis) per day, month, etc.


**Template used:** 

**Filters**: Test labels, test run assignee/executor, test run status

**Grouping**: test run status

**Sample JQL:**

```
project = CALC AND issuetype = "Test Execution" and fixVersion = "v3.0"
```


![image](media://b7161676-cb73-46f3-b902-5c3d7fb8dfb1)

## <span style="color: #000000">Test runs, per elapsed time</span>

Shows the number of test runs, per elapsed time. The "elapsed time" corresponds to a range that is mapped to a value (e.g., "< 30m", ">1h").


**Template used:** 

**Sample JQL:**

```
project = CALC AND issuetype = "Test Execution" and fixVersion = "v3.0"
```


![image](media://24a7b92f-d49c-4559-85d5-c29f88a92b39)

## Tests, per amount of executions

Shows the number of Tests executed once, twice, etc. (i.e., per number of test runs).


**Used Template:** 

**Sample JQL:**

```
project = CALC AND issuetype = "Test Execution" and fixVersion = "v3.0"
```


![image](media://edfee12e-18f9-476e-bd37-c88885e1bcf7)

## Component Coverage

Shows the number of tests, grouped by latest status, per component.


**Template used:** 

**Filters**: test run status

**Grouping**: test run status

**Sample JQL:**

```
project = CALC AND issuetype = "Test"
```


![image](media://3bd76abd-52b9-4ded-b1ae-a9783673bd75)


## Requirement Coverage, per Component

Shows the number of requirements, grouped by requirement status, per component.


**Template used:**  

**Filters**: requirement status

**Grouping**: requirement status

**Sample JQL:**

```
project = CALC AND issuetype = "Story" and fixVersion = "v3.0"
```


![image](media://5d070a78-19a7-4804-b6d1-ae5b1e757161)


## Requirement Coverage, per Priority

Shows the number of requirements, grouped by requirement status, per priority.


**Template used:**  

**Filters**: requirement status

**Grouping**: requirement status

**Sample JQL:**

```
project = CALC AND issuetype = "Story" and fixVersion = "v3.0"
```


![image](media://3e272e09-ff1c-40d5-9f08-42104d4b47f5)


# Sample Templates

Below are sample templates you can use as reference to create your own. You can also check the [Xporter template store](https://store.getxporter.app/).

| **File** | **Description** |
| --- | --- |
| [Creating fully customized reports](https://getxraydocs.atlassian.net/wiki/pages/createpage.action?spaceKey=xray&title=Creating%20fully%20customized%20reports&linkCreation=true&fromPageId=301406114) | A template that shows the export of a list of Test issues to PDF, docx, etc. using Xporter. It contains the test run status of the Test. |
| [Creating fully customized reports](https://getxraydocs.atlassian.net/wiki/pages/createpage.action?spaceKey=xray&title=Creating%20fully%20customized%20reports&linkCreation=true&fromPageId=301406114) | A template that shows the basic functionality of Xporter, particularly how a Test issue can be exported and listing its details. |
| [Creating fully customized reports](https://getxraydocs.atlassian.net/wiki/pages/createpage.action?spaceKey=xray&title=Creating%20fully%20customized%20reports&linkCreation=true&fromPageId=301406114) | A template that shows the basic functionality of Xporter, particularly how a Test Set issue can be exported, listing its details and of the Tests included in it. |
| [Creating fully customized reports](https://getxraydocs.atlassian.net/wiki/pages/createpage.action?spaceKey=xray&title=Creating%20fully%20customized%20reports&linkCreation=true&fromPageId=301406114) | A template that shows the basic functionality of Xporter, particularly how a Bulk of Test issues can be exported, grouping tests from a Test Set, if available, and the remaining as Standalone. |
| [Creating fully customized reports](https://getxraydocs.atlassian.net/wiki/pages/createpage.action?spaceKey=xray&title=Creating%20fully%20customized%20reports&linkCreation=true&fromPageId=301406114) | A template that shows how Xporter may be used to create a requirement traceability matrix. |
|  | A template that contains multiple test runs-related charts (e.g., test runs per day grouped by status, etc). |
|  | A template that contains multiple requirement-related charts (e.g., requirement coverage by priority/component). |