> ## Documentation Index
> Fetch the complete documentation index at: https://docs.maia.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Export logs

export const m_runner = "Maia runner";

export const maia = "Maia";

export const RunnerMetadata = ({runnerType, platforms = []}) => {
  return <div style={{
    background: 'var(--colors-background-light, #f9fafb)',
    border: '1px solid var(--colors-border-default, #e5e7eb)',
    borderRadius: '12px',
    padding: '20px 28px',
    marginBottom: '28px'
  }}>
      <table style={{
    width: '100%',
    borderCollapse: 'collapse'
  }}>
        <tbody>
          <tr>
            <td style={{
    fontWeight: '600',
    paddingRight: '32px',
    paddingBottom: '14px',
    whiteSpace: 'nowrap',
    verticalAlign: 'middle',
    width: '180px'
  }}>Runner type</td>
            <td style={{
    paddingBottom: '14px',
    verticalAlign: 'middle'
  }}>{runnerType}</td>
          </tr>
          <tr>
            <td style={{
    fontWeight: '600',
    paddingRight: '32px',
    whiteSpace: 'nowrap',
    verticalAlign: 'middle'
  }}>Runner platform</td>
            <td style={{
    verticalAlign: 'middle'
  }}>
              <div style={{
    display: 'flex',
    flexWrap: 'wrap',
    gap: '8px'
  }}>
                {platforms.map((platform, i) => <span key={i} style={{
    background: '#dcfce7',
    color: '#15803d',
    border: '1px solid #bbf7d0',
    borderRadius: '9999px',
    padding: '3px 12px',
    fontSize: '0.85rem',
    fontWeight: '500',
    whiteSpace: 'nowrap'
  }}>
                    {platform} ✅
                  </span>)}
              </div>
            </td>
          </tr>
        </tbody>
      </table>
    </div>;
};

<RunnerMetadata runnerType={`${maia} Hybrid`} platforms={["AWS", "Azure", "Snowflake"]} />

With the export logs feature enabled, logs from the {m_runner} are automatically sent to Matillion's systems for support. They are stored in the same cloud provider and geolocation as your {maia} account.

***

## Enabling log export

Log export is enabled by setting the `EXPORT_LOGS` optional {m_runner} parameter to `true`. For more information, read [Optional {m_runner} parameters](/docs/guides/optional-runner-parameters#export-logs).

If you are using Matillion-supplied templates or scripts to install the {m_runner}, note that `EXPORT_LOGS` will be set to `true` by default unless you set it to `false` or remove it. If you don't want your {m_runner} logs sent to Matillion, ensure you configure your {m_runner} accordingly.

### Log retention

Logs are stored for 30 days, after which they are removed.

### What is stored

The same information that is visible in your local {m_runner} logs will be available to Matillion for support purposes. Matillion cannot access any data originating from your data sources or cloud data warehouse.

***

## Further information

For more information on data gathering at Matillion, read [Data gathering](/docs/security/data-gathering/#types-of-data) and our [Security overview](/docs/security/security-overview/).
