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

Attention: ADOT Collector v0.41.0 breaking changes - third party exporter deprecation #2734

Open
vasireddy99 opened this issue May 8, 2024 · 9 comments

Comments

@vasireddy99
Copy link
Contributor

vasireddy99 commented May 8, 2024

What is changing?

Last year we shared out intention to unify egress using the OpenTelemetry Protocol (OTLP) exporter. Now, we’re starting to implement this: the AWS Distro for OpenTelemetry (ADOT) collector will start deprecating third party exporters starting from v0.39.0 . The OTLP Exporter helps standardize how data can be exported from ADOT, ensuring minimal security risks and providing the reliable support that you expect from ADOT.

What do I need to do if I’m using third party components?

You are affected if you are using one of the following exporters present in the ADOT collector:

  • logzio
  • sapm
  • signalfx

You can enable the functionality behind the feature gate, you can pass the --feature-gates=-adot.exporter.<component-name>.deprecation in the command line parameter.

In ADOT Collector v0.39.0, the feature gate is disabled by default. In the Collector v0.40.0, this feature gate will be enabled by default. Starting from v0.41.0 of the ADOT Collector, third-party exporters will be deprecated.

The Datadog exporter is also behind a feature gate, and this feature gate is disabled by default in v0.39.0. However, it won't be moved to the next stages of deprecation in v0.40.0 at this point.

@vasireddy99 vasireddy99 pinned this issue May 8, 2024
@eduardoasantana
Copy link

Is the ADOT team aware of any breaking changes in v0.39.0 that would affect third party exporters not listed here?

We are instrumenting our ECS services with the ADOT collector sidecar and using the Datadog exporter to send APM metrics and traces to Datadog.

When we updated some of our services from v0.38.2 to v0.39.0, the collector stopped sending APM metrics to Datadog entirely. Traces were still being sent successfully however.

We didn't get any errors logged from the aws-otel-collector sidecar container. The sidecar started up without issue as well

@Aneurysm9
Copy link
Member

When we updated some of our services from v0.38.2 to v0.39.0, the collector stopped sending APM metrics to Datadog entirely. Traces were still being sent successfully however.

We didn't get any errors logged from the aws-otel-collector sidecar container. The sidecar started up without issue as well

Can you please create a support case so that you can confidentially share configuration and log information with us.

@eduardoasantana
Copy link

@Aneurysm9 Where should a support case be opened? I don't see an ADOT team in the AWS Support console

@mhausenblas
Copy link
Member

Hi @eduardoasantana concerning your question "Where should a support case be opened?". Please work with your TAM to route it to the appropriate team.

@schmidt-galen-heb
Copy link

schmidt-galen-heb commented Jun 20, 2024

Is the ADOT team aware of any breaking changes in v0.39.0 that would affect third party exporters not listed here?

When we updated some of our services from v0.38.2 to v0.39.0, the collector stopped sending APM metrics to Datadog entirely.

@eduardoasantana we ran into the same issue, and I saw this in the startup logs:

{
   "level": "info",
    "caller": "[email protected]/factory.go:386",
    "msg": "Trace metrics are now disabled in the Datadog Exporter by default. To continue receiving Trace Metrics, configure the Datadog Connector or disable the feature gate.",
    "documentation": "https://docs.datadoghq.com/opentelemetry/guide/migration/",
    "feature gate ID": "exporter.datadogexporter.DisableAPMStats"
}

It looks like ADOT v0.39.0 upgraded the datadogexporter to > 0.95.0, which is what caused the change.

Since ADOT doesn't include the datadogconnector, the only option is to revert the feature gate (disable the DisableAPMStats gate, enabling calculation of APM stats):

--feature-gates=-exporter.datadogexporter.DisableAPMStats

After adding that to the arguments for the ADOT collector, we're seeing APM metrics again.

@eduardoasantana
Copy link

DisableAPMStats

@schmidt-galen-heb does that not effectively break APM traces and metrics when using the datadog exporter?

Another thing to note, while v0.39.0 still includes the datadogexporter, the datadogexporter was removed entirely and deprecated starting in v0.41.0 (released in April). So it looks like this is effectively deprecated with no path forward for support.

My understanding is that Datadog customers using otel can no longer use recent versions of the ADOT Collector anymore without also using the Datadog agent, as Datadog doesn't have an OTLP endpoint, but instead expects you to use either the datadogexporter otel exporter or the Datadog agent to send trace metrics to Datadog.

@mhausenblas
Copy link
Member

My understanding is that Datadog customers using otel can no longer use recent versions of the ADOT Collector anymore without also using the Datadog agent, as Datadog doesn't have an OTLP endpoint, but instead expects you to use either the datadogexporter otel exporter or the Datadog agent to send trace metrics to Datadog.

ADOT PM here. That is incorrect. Datadog's custom exporter continues to be supported, we're working with them to enable native OTLP ingestion on their end. Until that happens, the Datadog exporter will still be supported.

@schmidt-galen-heb
Copy link

@schmidt-galen-heb does that not effectively break APM traces and metrics when using the datadog exporter?

@eduardoasantana DisableAPMStats is enabled by default in v0.95.0+. Setting --feature-gates=-exporter.datadogexporter.DisableAPMStats disables the feature gate, i.e. enables calculation of APM stats (note the hyphen before the feature gate name).

According to the migration guide, disabling the feature gate should simply restore the pre-0.95.0 behavior:

If you’re running a vendor-specific OpenTelemetry distribution that does not include the Datadog Connector, revert to the previous Trace Connector behavior by disabling the exporter.datadogexporter.DisableAPMStats feature gate.

I haven't done exhaustive testing after making the change, but I'm still seeing APM traces, and the APM Trace Metrics started working again.


Given that this was an intentional change on the Datadog side not related to the ADOT third party exporter deprecation, if disabling the feature gate doesn't fix the issue for you, I'd suggest opening a new issue

@schmidt-galen-heb
Copy link

we're working with them to enable native OTLP ingestion on their end.

@mhausenblas that's great news, I'd definitely prefer native OTLP ingest in Datadog.

This is probably worthy of its own issue, but it would be fantastic if as part of that work the ADOT collector could either add:

Datadog is currently using Semantic Conventions v1.6.1, which is painful when our instrumentation is using a much newer version. Some attributes can be renamed using the Attributes/Resource processors, but it would be much easier with the other processors.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants