# excludeTokens

Used in micro-metrics (m3) mode to exclude specific process tokens from monitoring.
Useful when you want to skip noise-generating or irrelevant background processes.

Type: list[string]

Default: []

Example (YAML):

options:
  excludeTokens:
  - sampleWorker.jar
1
2
3

Example (CLI):

./yc -excludeTokens "sampleWorker.jar" -excludeTokens "backgroundCleanup"
1