Files
Shahed NasserandGitHub e90dcedcd7 docs: general improvements and updates (#13485)
* docs: general improvements and updates

* fix vale error
2025-09-15 12:30:59 +03:00

56 lines
965 B
Plaintext

---
sidebar_label: "telemetry"
sidebar_position: 9
---
import { Table } from "docs-ui"
export const metadata = {
title: `telemetry Command - Medusa CLI Reference`,
}
# {metadata.title}
Enable or disable the collection of anonymous usage data. If no option is provided, the command enables the collection of anonymous usage data.
```bash
npx medusa telemetry
```
#### Options
<Table>
<Table.Header>
<Table.Row>
<Table.HeaderCell>Option</Table.HeaderCell>
<Table.HeaderCell>Description</Table.HeaderCell>
</Table.Row>
</Table.Header>
<Table.Body>
<Table.Row>
<Table.Cell>
`--enable`
</Table.Cell>
<Table.Cell>
Enable telemetry (default).
</Table.Cell>
</Table.Row>
<Table.Row>
<Table.Cell>
`--disable`
</Table.Cell>
<Table.Cell>
Disable telemetry.
</Table.Cell>
</Table.Row>
</Table.Body>
</Table>