# 🆕 Reports - new functionality

November 12, 2025 ·

<!-- -->

2 min read

We're pleased to introduce a new component of the Tuna platform - **Reports**. Designed for generating error reports on your website. With an embeddable script, users and QA engineers can easily show where the bug is hiding, and you get debugging information and can immediately start fixing it.

[Go to Reports section in documentation](https://tuna.am/en/docs/reports.md)

![Setup](/docs/img/reports/setup.png)

## How does it work?

1. Go to your dashboard and create a project in the [Reports](https://my.tuna.am/reports) section.

2. Add this code to your website before the closing `<head>` tag:

   ```html
   <!-- tuna. Screen and user actions recording -->
   <script>
       window.reportOptions = {
           captureKey: "YOUR_CAPTURE_KEY"
       };
   </script>
   <script src="https://reports.tuna.am/latest/index.js" async></script>

   ```

3. Call the script with `CTRL + ALT + S` or `⌘ + ⌥ + S` and create a report.

## What does a report look like?

Inside the report you will find a screenshot or video and all the debugging information from the console, network operations, user actions and a snapshot of the page DOM tree.

**Info**

The first tab contains general summary information about the client, device and browser.

![](/docs/img/reports/info.png)

**Inspector**

A snapshot of the page DOM tree, with the ability to select an element.

***

note

This tab is only available for reports with a screenshot. Reports with video cannot capture a DOM tree snapshot since it can change over time.

**Console**

A list of all events from the browser console.

![](/docs/img/reports/console.png)

**Network**

A list of all XHR requests with the option to look into the details.

**Actions**

User actions on the page.

![](/docs/img/reports/actions.png)

**Comments**

You can also leave comments and reactions to comments.

![](/docs/img/reports/message.png)

## Video overview

**YouTube**

**VK Video**

***

## Leave feedback

If you enjoy using Tuna, or on the contrary you are not happy with something, please [leave feedback](https://my.tuna.am/?show_feedback=1).

![](/blog/img/2024-08-22/feedback.gif)

## Help

We value our users and carefully review every request. If you have any problems with tuna, please contact us in one of the following ways:

* [Email](mailto:info@tuna.am)
* [Telegram community](https://telegram.me/+Kgbtt0_gJwI5ZmEy)

**Tags:**

* [release](https://tuna.am/en/blog/tags/release)
