File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
src/OpenTelemetry.Exporter.Console Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ Notes](../../RELEASENOTES.md).
66
77## Unreleased
88
9+ * Added support for ` ActivitySource.TelemetrySchemaUrl ` property.
10+ ([ #6713 ] ( https://github.com/open-telemetry/opentelemetry-dotnet/pull/6713 ) )
11+
912## 1.14.0
1013
1114Released 2025-Nov-12
Original file line number Diff line number Diff line change @@ -118,6 +118,11 @@ public override ExportResult Export(in Batch<Activity> batch)
118118 this . WriteLine ( $ " Version: { activity . Source . Version } ") ;
119119 }
120120
121+ if ( ! string . IsNullOrEmpty ( activity . Source . TelemetrySchemaUrl ) )
122+ {
123+ this . WriteLine ( $ " Schema Url: { activity . Source . TelemetrySchemaUrl } ") ;
124+ }
125+
121126 if ( activity . Source . Tags ? . Any ( ) == true )
122127 {
123128 this . WriteLine ( " Tags:" ) ;
You can’t perform that action at this time.
0 commit comments