{
  "id": 6368115,
  "title": "Alibaba Cloud Partners with Datadog Close Go's Last Observability Gap",
  "url": "https://urgent.news/2026/09/09/alibaba-cloud-partners-with-datadog-close-gos-last-observability-gap",
  "topic": "tech",
  "section": "Tech",
  "published": "2026-09-09T02:13:59.000Z",
  "source": {
    "name": "Dev.to",
    "slug": "dev-to",
    "url": "https://dev.to/observabilityguy/alibaba-cloud-partners-with-datadog-close-gos-last-observability-gap-173e"
  },
  "original_language": "en",
  "account": "Alibaba Cloud and Datadog have joined forces to introduce a new feature that will fill a significant gap in observability for Go applications. This feature, called OpenTelemetry Go Compile-Time Instrumentation v1, allows developers to add distributed tracing and metrics collection to their Go applications without modifying any business code.\n\nTraditionally, other programming languages like Java, Python, Node.js, and .NET have had built-in mechanisms for zero-code observability. However, Go, which compiles to a static binary, lacks this capability. This has resulted in two options for Go developers: manual instrumentation or eBPF observation, both of which have limitations.\n\nCompile-time instrumentation, the cornerstone of this new feature, injects observability code directly into the Go application during the build process. This is achieved through the -toolexec mechanism in Go's toolchain, which allows a wrapper program (otelc) to modify the compiler's behavior. The otelc tool parses the source code, matches instrumentation rules, injects tracing and metrics code, and then compiles the modified source into a binary.\n\nThis approach offers several advantages over the previous methods. Firstly, it doesn't introduce any runtime overhead, as the instrumentation code is woven into the application during the build process. Secondly, it is CI/CD-friendly, as it only requires replacing the build command with otelc go build. This means that developers can add tracing to their applications with a single command, without having to touch any business code.\n\nThe first stable release of this feature, v1, supports key libraries such as net/http, Database/SQL, and gRPC. It follows the OpenTelemetry Semantic Conventions, ensuring that all produced spans and metrics are standardized across different backends. The approach is also community-driven, allowing for easy contribution of new rules for additional libraries.\n\nTo get started, developers can simply install otelc and then replace their build command with otelc go build -o myapp. The resulting binary will already have tracing code built in, and they can set OTEL_EXPORTER_OTLP_ENDPOINT at startup to start collecting trace data.",
  "summary": "This article introduces OpenTelemetry Go Compile-Time Instrumentation v1, enabling zero-code, build-time observability for Go applications. Go was the last mainstream language without zero-code observability. In July 2026, the OpenTelemetry Go Compile-Time Instrumentation project shipped its stable v1 release. Launched jointly by Alibaba and Datadog and developed through a year and a half of…",
  "key_points": [
    "Alibaba Cloud and Datadog collaborate on OpenTelemetry Go Compile-Time Instrumentation v1.",
    "Feature enables zero-code observability for Go applications without modifying business code.",
    "Supports net/http, Database/SQL, and gRPC libraries with standardized spans and metrics."
  ],
  "editors_take": "This partnership enables Go developers to add distributed tracing and metrics collection to their applications without modifying business code, closing a significant observability gap.",
  "illustration": null,
  "coverage": {
    "outlets": 1,
    "also_reported_by": []
  },
  "ai_generated": true,
  "disclaimer": "Summaries, key points and the editor’s take are written by software from other outlets’ reporting and may contain errors — always check the linked original."
}