Skip to content

Commit 4d545c6

Browse files
max-cxeromanova97
authored andcommitted
OBSDOCS-2245: Release notes for Distributed Tracing and OpenTelemetry 3.7
1 parent b5f7c44 commit 4d545c6

9 files changed

+61
-14
lines changed

modules/distr-tracing-tempo-rn-bug-fixes.adoc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@
66
[id="fixed-issues_{context}"]
77
= Fixed issues
88

9-
None.
9+
This release fixes the following CVE:
10+
11+
* link:https://access.redhat.com/security/cve/cve-2025-22874[CVE-2025-22874]

modules/distr-tracing-tempo-rn-enhancements.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66
[id="new-features-and-enhancements_{context}"]
77
= New features and enhancements
88

9-
None.
9+
Network policy to restrict API access::
10+
With this update, the {TempoOperator} creates a network policy for the Operator to restrict access to the used APIs.

modules/distr-tracing-tempo-rn-known-issues.adoc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,9 @@
66
[id="known-issues_{context}"]
77
= Known issues
88

9-
None.
9+
Tempo query frontend fails to fetch trace JSON::
10+
In the Jaeger UI, clicking on *Trace* and refreshing the page, or accessing *Trace* -> *Trace Timeline* -> *Trace JSON* from the Tempo query frontend, might result in the Tempo query pod failing with an EOF error.
11+
+
12+
To work around this problem, use the distributed tracing UI plugin to view traces.
13+
+
14+
link:https://issues.redhat.com/browse/TRACING-5483[TRACING-5483]

modules/otel-config-send-metrics-monitoring-stack.adoc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,12 @@ spec:
2727
service:
2828
telemetry:
2929
metrics:
30-
address: ":8888"
30+
readers:
31+
- pull:
32+
exporter:
33+
prometheus:
34+
host: 0.0.0.0
35+
port: 8888
3136
pipelines:
3237
metrics:
3338
exporters: [prometheus]

modules/otel-rn-deprecated-features.adoc

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,26 @@
66
[id="deprecated-features_{context}"]
77
= Deprecated features
88

9-
The OpenCensus Receiver, which provided backward compatibility with the OpenCensus format, is deprecated and might be removed in a future major release.
9+
The OpenCensus Receiver is deprecated::
10+
The OpenCensus Receiver, which provided backward compatibility with the OpenCensus format, is deprecated and might be removed in a future release.
11+
12+
The Collector's service metrics telemetry address is deprecated::
13+
The `metrics.address` field in the `OpenTelemetryCollector` custom resource (CR) is deprecated and might be removed in a future release. As an alternative, use the `metrics.readers` field instead.
14+
+
15+
Example of using the `readers` field:
16+
+
17+
[source,yaml]
18+
----
19+
# ...
20+
config:
21+
service:
22+
telemetry:
23+
metrics:
24+
readers:
25+
- pull:
26+
exporter:
27+
prometheus:
28+
host: 0.0.0.0
29+
port: 8888
30+
# ...
31+
----

modules/otel-rn-removed-features.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
[id="removed-features_{context}"]
77
= Removed features
88

9+
The LokiStack Exporter is removed::
910
The LokiStack Exporter, which exported data to a LokiStack instance, is removed and no longer supported. You can export data to a LokiStack instance by using the OTLP HTTP Exporter instead.
1011

12+
The Routing Processor is removed::
1113
The Routing Processor, which routed telemetry data to an exporter is removed and no longer supported. You can route telemetry data by using the Routing Connector instead.

modules/otel-rn-technology-preview-features.adoc

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,13 @@
66
[id="technology-preview-features_{context}"]
77
= Technology Preview features
88

9-
Probabilistic Sampling Processor (Technology Preview):: This release introduces the Probabilistic Sampling Processor as a Technology Preview feature for the {OTELShortName} Collector. The Probabilistic Sampling Processor samples a specified percentage of trace spans or log records statelessly and per request. You can use the Probabilistic Sampling Processor if you handle high volumes of telemetry data and seek to reduce costs by reducing processed data volumes.
9+
[IMPORTANT]
10+
====
11+
[subs="attributes+"]
12+
Technology Preview features are not supported with Red{nbsp}Hat production service level agreements (SLAs) and might not be functionally complete. Red{nbsp}Hat does not recommend using them in production. These features provide early access to upcoming product features, enabling customers to test functionality and provide feedback during the development process.
1013
11-
:FeatureName: The Probabilistic Sampling Processor
12-
//:FeatureName: Each of these features
13-
include::snippets/technology-preview.adoc[leveloffset=+1]
14+
For more information about the support scope of Red{nbsp}Hat Technology Preview features, see link:https://access.redhat.com/support/offerings/techpreview/[Technology Preview Features Support Scope].
15+
====
16+
17+
Probabilistic Sampling Processor (Technology Preview)::
18+
This release introduces the Probabilistic Sampling Processor as a Technology Preview feature for the {OTELShortName} Collector. The Probabilistic Sampling Processor samples a specified percentage of trace spans or log records statelessly and per request. You can use the Probabilistic Sampling Processor if you handle high volumes of telemetry data and seek to reduce costs by reducing processed data volumes.

observability/distr_tracing/distr-tracing-rn.adoc

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,14 @@ include::snippets/distr-tracing-and-otel-disclaimer-about-docs-for-supported-fea
1313

1414
include::modules/distr-tracing-tempo-rn-enhancements.adoc[leveloffset=+1]
1515

16-
include::modules/distr-tracing-tempo-rn-technology-preview-features.adoc[leveloffset=+1]
16+
// None included with this release
17+
// include::modules/distr-tracing-tempo-rn-technology-preview-features.adoc[leveloffset=+1]
1718

18-
include::modules/distr-tracing-tempo-rn-deprecated-features.adoc[leveloffset=+1]
19+
// None included with this release
20+
// include::modules/distr-tracing-tempo-rn-deprecated-features.adoc[leveloffset=+1]
1921

20-
include::modules/distr-tracing-tempo-rn-removed-features.adoc[leveloffset=+1]
22+
// None included with this release
23+
// include::modules/distr-tracing-tempo-rn-removed-features.adoc[leveloffset=+1]
2124

2225
include::modules/distr-tracing-tempo-rn-known-issues.adoc[leveloffset=+1]
2326

observability/otel/otel-rn.adoc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ include::modules/otel-rn-deprecated-features.adoc[leveloffset=+1]
1818

1919
include::modules/otel-rn-removed-features.adoc[leveloffset=+1]
2020

21-
include::modules/otel-rn-known-issues.adoc[leveloffset=+1]
21+
// None included with this release
22+
// include::modules/otel-rn-known-issues.adoc[leveloffset=+1]
2223

23-
include::modules/otel-rn-bug-fixes.adoc[leveloffset=+1]
24+
// None included with this release
25+
// include::modules/otel-rn-bug-fixes.adoc[leveloffset=+1]
2426

2527
include::modules/support.adoc[leveloffset=+1]

0 commit comments

Comments
 (0)