Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Collector telemetry lifecycle #5092

Merged
merged 12 commits into from
Sep 24, 2024
Prev Previous commit
Next Next commit
Update internal-telemetry.md
codeboten authored Sep 9, 2024
commit 0938d3391c4eb8a8ec2d37bb899922f436e404b6
13 changes: 11 additions & 2 deletions content/en/docs/collector/internal-telemetry.md
Original file line number Diff line number Diff line change
@@ -290,9 +290,18 @@ Deprecated metrics are slated for deletion but are still available for use. Thes
Before deprecation:

```sh
# HELP some_counter this counts things
# TYPE some_counter counter
# HELP otelcol_exporter_queue_size this counts things
codeboten marked this conversation as resolved.
Show resolved Hide resolved
# TYPE otelcol_exporter_queue_size counter
otelcol_exporter_queue_size 0
```

After deprecation:

```sh
# HELP otelcol_exporter_queue_size (Deprecated since 1.15.0) this counts things
# TYPE otelcol_exporter_queue_size counter
otelcol_exporter_queue_size 0
```

##### Deleted