Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion other-examples/collector/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Optionally, install the [Docker OpenTelemetry quickstart](https://newrelic.com/i
Optionally, use [NRQL](https://docs.newrelic.com/docs/query-your-data/explore-query-data/get-started/introduction-querying-new-relic-data/) to perform ad-hoc analysis. To list the metrics reported, query for:

```
FROM Metric SELECT uniques(metricName) WHERE otel.library.name = 'otelcol/dockerstatsreceiver'
FROM Metric SELECT uniques(metricName) WHERE otel.library.name in ('otelcol/dockerstatsreceiver', 'github.com/open-telemetry/opentelemetry-collector-contrib/receiver/dockerstatsreceiver')
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm guessing that otelcol/dockerstatsreceiver was the correct value in an older version of the collector.

Can you update the collector's version used by this example to the latest and verify?

image: otel/opentelemetry-collector-contrib:0.98.0

If the new version uses github.com/open-telemetry/opentelemetry-collector-contrib/receiver/dockerstatsreceiver then we should just change the documentation to refer to the new value and remove the old value.

```

See [get started with querying](https://docs.newrelic.com/docs/query-your-data/explore-query-data/get-started/introduction-querying-new-relic-data/) for additional details on querying data in New Relic.
Expand Down
2 changes: 1 addition & 1 deletion other-examples/collector/docker/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
collector:
image: otel/opentelemetry-collector-contrib:0.98.0
image: otel/opentelemetry-collector-contrib:0.142.0
volumes:
- ./config.yaml:/etc/otelcol-contrib/config.yaml
- /var/run/docker.sock:/var/run/docker.sock
Expand Down