mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
27 lines
434 B
Markdown
27 lines
434 B
Markdown
# Tracking
|
|
|
|
This plugin implements a way to toggle the [framework usage tracking](/docs/usage-tracking) functionality.
|
|
|
|
```
|
|
serverless tracking --enable
|
|
```
|
|
|
|
Enable / disable the usage tracking functionality.
|
|
|
|
## Options
|
|
- `--enable` or `-e`.
|
|
- `--disable` or `-d`
|
|
|
|
## Provided lifecycle events
|
|
- `tracking:tracking`
|
|
|
|
## Examples
|
|
|
|
### Disable tracking
|
|
|
|
```
|
|
serverless tracking --disable
|
|
```
|
|
|
|
This example will disable usage tracking.
|