Skip to content

Commit ab01922

Browse files
Fix links to exception semantic conventions (#3348)
Co-authored-by: Martin Costello <[email protected]>
1 parent df80dbe commit ab01922

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/OpenTelemetry.Instrumentation.AspNet/AspNetTraceInstrumentationOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ internal AspNetTraceInstrumentationOptions(IConfiguration configuration)
8383
/// Gets or sets a value indicating whether the exception will be recorded as ActivityEvent or not.
8484
/// </summary>
8585
/// <remarks>
86-
/// See: <see href="https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/semantic_conventions/exceptions.md"/>.
86+
/// See: <see href="https://github.com/open-telemetry/semantic-conventions/blob/main/docs/exceptions/exceptions-spans.md"/>.
8787
/// </remarks>
8888
public bool RecordException { get; set; }
8989

src/OpenTelemetry.Instrumentation.Owin/OwinInstrumentationOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ internal OwinInstrumentationOptions(IConfiguration configuration)
5252
/// Gets or sets a value indicating whether the exception will be recorded as <see cref="ActivityEvent"/> or not.
5353
/// </summary>
5454
/// <remarks>
55-
/// https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/semantic_conventions/exceptions.md.
55+
/// https://github.com/open-telemetry/semantic-conventions/blob/main/docs/exceptions/exceptions-spans.md.
5656
/// </remarks>
5757
public bool RecordException { get; set; }
5858

src/OpenTelemetry.Instrumentation.Quartz/QuartzInstrumentationOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class QuartzInstrumentationOptions
3434
/// Gets or sets a value indicating whether the exception will be recorded as ActivityEvent or not.
3535
/// </summary>
3636
/// <remarks>
37-
/// https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/semantic_conventions/exceptions.md.
37+
/// https://github.com/open-telemetry/semantic-conventions/blob/main/docs/exceptions/exceptions-spans.md.
3838
/// </remarks>
3939
public bool RecordException { get; set; }
4040

src/Shared/SemanticConventions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ internal static class SemanticConventions
1111
{
1212
// The set of constants matches the specification as of this commit.
1313
// https://github.com/open-telemetry/opentelemetry-specification/tree/main/specification/trace/semantic_conventions
14-
// https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/semantic_conventions/exceptions.md
14+
// https://github.com/open-telemetry/semantic-conventions/blob/main/docs/exceptions/exceptions-spans.md
1515
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
1616
public const string AttributeNetTransport = "net.transport";
1717
public const string AttributeNetPeerIp = "net.peer.ip";

0 commit comments

Comments
 (0)