From 7d8b1a040c9a20ab8165bac8f823486f3f1fdc9d Mon Sep 17 00:00:00 2001 From: James Abley Date: Wed, 4 Mar 2026 10:16:44 +0000 Subject: [PATCH] =?UTF-8?q?OpenTracing=20=E2=86=92=20OpenTelemetry?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit OpenTracing has been archived [1] as it was merged into OpenTelemtry. The OpenTelemetry project is the successor to OpenTracing and OpenCensus, providing a unified set of APIs, libraries, agents, and instrumentation for observability. [1] https://www.cncf.io/blog/2022/01/31/cncf-archives-the-opentracing-project/ --- practices/observability.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/practices/observability.md b/practices/observability.md index 2d872fdd..753d59d6 100644 --- a/practices/observability.md +++ b/practices/observability.md @@ -50,7 +50,7 @@ - Logs should be easily accessible and searchable in a log aggregation system. - Agree log levels (e.g. DEBUG, INFO, ERROR) and use them consistently. - Consider using structured (i.e. Json formatted) log messages, as log aggregation systems can often perform more effective searches of these. - - Tracing can be implemented using cloud platform-native tools like [AWS X-Ray](https://aws.amazon.com/xray/) or open source equivalents such as [OpenTracing](https://opentracing.io/docs/overview/what-is-tracing/). APM tools mentioned elsewhere also typically include tracing functionality. + - Tracing can be implemented using cloud platform-native tools like [AWS X-Ray](https://aws.amazon.com/xray/) or open source equivalents such as [OpenTelemetry](https://opentelemetry.io/docs/what-is-opentelemetry/). APM tools mentioned elsewhere also typically include tracing functionality. - More **things to monitor**. - Monitor (and generate alerts for) the expiry dates of the SSL certificates within the service. See [acm-cert-monitor](../tools/acm-cert-monitor/) for an example lambda and Terraform stack to monitor your AWS ACM certificates. - Or, even better, outsource certificate management completely (see [outsource from the bottom up](../patterns/outsource-bottom-up.md))