# Configuring scheduled CSV reports

You can schedule sending the CSV-based usage reports by email.

{% hint style="info" %}
**Prerequisites**

Your Tabnine private installation must have [SMTP configuration](/main/administering-tabnine/managing-your-team/settings/email-settings.md#configure-smtp) in place.
{% endhint %}

### Enabling schedule CSV-based usage report

1. Go to the `value.yaml` file of your Tabnine [private installation](https://github.com/codota/docs/blob/main/main/administering-tabnine/private-installation/managing-your-team/reporting/reporting/broken-reference/README.md).
2. Add the following `analytics` section to the `values.yaml` file. If you already have an `analytics` section, append the following content to the existing one. (Duplicated sections in the yaml file may result in unexpected behavior.)

```
analytics:
  ScheduledCsvEmailReporting:
    cronScheduling: 0 0 * * *
    enabled: true
  csvReportEmails: yourname@yourcompany.com
```

`enabled`: True/false toggle of the scheduling of the report email.

`cronScheduling` : A [cron](https://en.wikipedia.org/wiki/Cron) timer representation of the recurrence of the report. In the above example, the email scheduling will be every day at midnight.

`csvReportEmails` : List of comma-separated emails of the report email recipients.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.tabnine.com/main/administering-tabnine/managing-your-team/reporting/reporting/configuring-scheduled-csv-reports.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
