Skip to content

Commit 2c174bb

Browse files
authored
Add change log for upcoming release (#1385)
1 parent 9491564 commit 2c174bb

File tree

3 files changed

+32
-1
lines changed

3 files changed

+32
-1
lines changed

.github/scripts/draft-change-log-entries.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ component_names["compressors/"]="Compressors"
3232
component_names["consistent-sampling/"]="Consistent sampling"
3333
component_names["disk-buffering/"]="Disk buffering"
3434
component_names["gcp-resources/"]="GCP Resources"
35+
component_names["inferred-spans/"]="Inferred spans"
3536
component_names["jfr-connection/"]="JFR connection"
3637
component_names["jfr-events/"]="JFR events"
3738
component_names["jmx-metrics/"]="JMX metrics"

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,36 @@
22

33
## Unreleased
44

5+
### AWS resources
6+
7+
- Add ECS cluster detection
8+
([#1354](https://github.com/open-telemetry/opentelemetry-java-contrib/pull/1354))
9+
10+
### Baggage processor
11+
12+
- Add config support
13+
([#1330](https://github.com/open-telemetry/opentelemetry-java-contrib/pull/1330))
14+
15+
### Inferred spans - New 🌟
16+
17+
An OpenTelemetry extension for generating spans via profiling instead of instrumentation.
18+
This extension enhances traces by running [async-profiler](https://github.com/async-profiler/async-profiler) in wall-clock profiling mode
19+
whenever there is an active sampled OpenTelemetry span.
20+
21+
The resulting profiling data is analyzed afterward and spans are "inferred".
22+
This means there is a delay between the regular and the inferred spans being visible
23+
in your OpenTelemetry backend/UI.
24+
25+
### JFR connection
26+
27+
- Fix for using diagnostic command to start a recording
28+
([#1352](https://github.com/open-telemetry/opentelemetry-java-contrib/pull/1352))
29+
30+
### JMX metrics
31+
32+
- Support both a script and target systems
33+
([#1339](https://github.com/open-telemetry/opentelemetry-java-contrib/pull/1339))
34+
535
## Version 1.36.0 (2024-05-29)
636

737
### AWS resources

inferred-spans/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
OpenTelemetry extension for generating spans via profiling instead of instrumentation.
44
This extension enhances traces by running [async-profiler](https://github.com/async-profiler/async-profiler) in wall-clock profiling mode whenever there is an active sampled OpenTelemetry span.
55

6-
The resulting profiling data is afterwards analyzed and spans are "inferred".
6+
The resulting profiling data is analyzed afterward and spans are "inferred".
77
This means there is a delay between the regular and the inferred spans being visible in your OpenTelemetry backend/UI.
88

99
Only platform threads are supported. Virtual threads are not supported and will not be profiled.

0 commit comments

Comments
 (0)