|
4 | 4 | // Package configtelemetry defines various telemetry level for configuration.
|
5 | 5 | // It enables every component to have access to telemetry level
|
6 | 6 | // to enable metrics only when necessary.
|
| 7 | +// |
| 8 | +// 1. configtelemetry.None |
| 9 | +// |
| 10 | +// No telemetry data should be collected. |
| 11 | +// |
| 12 | +// 2. configtelemetry.Basic |
| 13 | +// |
| 14 | +// Signals associated with this level cover the essential coverage of the component telemetry. |
| 15 | +// |
| 16 | +// This is the default level recommended when running the collector. |
| 17 | +// |
| 18 | +// The signals associated with this level must have low cardinality. |
| 19 | +// |
| 20 | +// The signals associated with this level must represent a small data volume: |
| 21 | +// - No more than 5 metrics reported. |
| 22 | +// - At most 1 span actively recording simultaneously, covering the critical path. |
| 23 | +// - At most 5 log records produced every 30s. |
| 24 | +// |
| 25 | +// Not all signals defined in the component telemetry are active. |
| 26 | +// |
| 27 | +// 3. configtelemetry.Normal |
| 28 | +// |
| 29 | +// Signals associated with this level cover the complete coverage of the component telemetry. |
| 30 | +// |
| 31 | +// The signals associated with this level must control cardinality. |
| 32 | +// |
| 33 | +// The signals associated with this level must represent a controlled data volume: |
| 34 | +// - No more than 20 metrics reported. |
| 35 | +// - At most 5 spans actively recording simultaneously. |
| 36 | +// - At most 20 log records produced every 30s. |
| 37 | +// |
| 38 | +// All signals defined in the component telemetry are active. |
| 39 | +// |
| 40 | +// 4. configtelemetry.Detailed |
| 41 | +// |
| 42 | +// Signals associated with this level cover the complete coverage of the component telemetry. |
| 43 | +// |
| 44 | +// The signals associated with this level may exhibit high cardinality. |
| 45 | +// |
| 46 | +// There is no limit on data volume. |
| 47 | +// |
| 48 | +// All signals defined in the component telemetry are active. |
7 | 49 | package configtelemetry // import "go.opentelemetry.io/collector/config/configtelemetry"
|
0 commit comments