Skip to content

Commit f66086b

Browse files
authored
[semantic conventions] Update generator version (open-telemetry#2089)
1 parent c55961c commit f66086b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+1306
-1305
lines changed

src/OpenTelemetry.SemanticConventions/Attributes/AndroidAttributes.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,35 +15,35 @@ namespace OpenTelemetry.SemanticConventions;
1515
public static class AndroidAttributes
1616
{
1717
/// <summary>
18-
/// Uniquely identifies the framework API revision offered by a version (<c>os.version</c>) of the android operating system. More information can be found <a href="https://developer.android.com/guide/topics/manifest/uses-sdk-element#ApiLevels">here</a>
18+
/// Uniquely identifies the framework API revision offered by a version (<c>os.version</c>) of the android operating system. More information can be found <a href="https://developer.android.com/guide/topics/manifest/uses-sdk-element#ApiLevels">here</a>.
1919
/// </summary>
2020
public const string AttributeAndroidOsApiLevel = "android.os.api_level";
2121

2222
/// <summary>
23-
/// Deprecated use the <c>device.app.lifecycle</c> event definition including <c>android.state</c> as a payload field instead
23+
/// Deprecated use the <c>device.app.lifecycle</c> event definition including <c>android.state</c> as a payload field instead.
2424
/// </summary>
2525
/// <remarks>
26-
/// The Android lifecycle states are defined in <a href="https://developer.android.com/guide/components/activities/activity-lifecycle#lc">Activity lifecycle callbacks</a>, and from which the <c>OS identifiers</c> are derived
26+
/// The Android lifecycle states are defined in <a href="https://developer.android.com/guide/components/activities/activity-lifecycle#lc">Activity lifecycle callbacks</a>, and from which the <c>OS identifiers</c> are derived.
2727
/// </remarks>
2828
public const string AttributeAndroidState = "android.state";
2929

3030
/// <summary>
31-
/// Deprecated use the <c>device.app.lifecycle</c> event definition including <c>android.state</c> as a payload field instead
31+
/// Deprecated use the <c>device.app.lifecycle</c> event definition including <c>android.state</c> as a payload field instead.
3232
/// </summary>
3333
public static class AndroidStateValues
3434
{
3535
/// <summary>
36-
/// Any time before Activity.onResume() or, if the app has no Activity, Context.startService() has been called in the app for the first time
36+
/// Any time before Activity.onResume() or, if the app has no Activity, Context.startService() has been called in the app for the first time.
3737
/// </summary>
3838
public const string Created = "created";
3939

4040
/// <summary>
41-
/// Any time after Activity.onPause() or, if the app has no Activity, Context.stopService() has been called when the app was in the foreground state
41+
/// Any time after Activity.onPause() or, if the app has no Activity, Context.stopService() has been called when the app was in the foreground state.
4242
/// </summary>
4343
public const string Background = "background";
4444

4545
/// <summary>
46-
/// Any time after Activity.onResume() or, if the app has no Activity, Context.startService() has been called when the app was in either the created or background states
46+
/// Any time after Activity.onResume() or, if the app has no Activity, Context.startService() has been called when the app was in either the created or background states.
4747
/// </summary>
4848
public const string Foreground = "foreground";
4949
}

src/OpenTelemetry.SemanticConventions/Attributes/ArtifactAttributes.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,33 +15,33 @@ namespace OpenTelemetry.SemanticConventions;
1515
public static class ArtifactAttributes
1616
{
1717
/// <summary>
18-
/// The provenance filename of the built attestation which directly relates to the build artifact filename. This filename SHOULD accompany the artifact at publish time. See the <a href="https://slsa.dev/spec/v1.0/distributing-provenance#relationship-between-artifacts-and-attestations">SLSA Relationship</a> specification for more information
18+
/// The provenance filename of the built attestation which directly relates to the build artifact filename. This filename SHOULD accompany the artifact at publish time. See the <a href="https://slsa.dev/spec/v1.0/distributing-provenance#relationship-between-artifacts-and-attestations">SLSA Relationship</a> specification for more information.
1919
/// </summary>
2020
public const string AttributeArtifactAttestationFilename = "artifact.attestation.filename";
2121

2222
/// <summary>
23-
/// The full <a href="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-5.pdf">hash value (see glossary)</a>, of the built attestation. Some envelopes in the software attestation space also refer to this as the <a href="https://github.com/in-toto/attestation/blob/main/spec/README.md#in-toto-attestation-framework-spec">digest</a>
23+
/// The full <a href="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-5.pdf">hash value (see glossary)</a>, of the built attestation. Some envelopes in the software attestation space also refer to this as the <a href="https://github.com/in-toto/attestation/blob/main/spec/README.md#in-toto-attestation-framework-spec">digest</a>.
2424
/// </summary>
2525
public const string AttributeArtifactAttestationHash = "artifact.attestation.hash";
2626

2727
/// <summary>
28-
/// The id of the build <a href="https://slsa.dev/attestation-model">software attestation</a>
28+
/// The id of the build <a href="https://slsa.dev/attestation-model">software attestation</a>.
2929
/// </summary>
3030
public const string AttributeArtifactAttestationId = "artifact.attestation.id";
3131

3232
/// <summary>
33-
/// The human readable file name of the artifact, typically generated during build and release processes. Often includes the package name and version in the file name
33+
/// The human readable file name of the artifact, typically generated during build and release processes. Often includes the package name and version in the file name.
3434
/// </summary>
3535
/// <remarks>
3636
/// This file name can also act as the <a href="https://slsa.dev/spec/v1.0/terminology#package-model">Package Name</a>
3737
/// in cases where the package ecosystem maps accordingly.
3838
/// Additionally, the artifact <a href="https://slsa.dev/spec/v1.0/terminology#software-supply-chain">can be published</a>
39-
/// for others, but that is not a guarantee
39+
/// for others, but that is not a guarantee.
4040
/// </remarks>
4141
public const string AttributeArtifactFilename = "artifact.filename";
4242

4343
/// <summary>
44-
/// The full <a href="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-5.pdf">hash value (see glossary)</a>, often found in checksum.txt on a release of the artifact and used to verify package integrity
44+
/// The full <a href="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-5.pdf">hash value (see glossary)</a>, often found in checksum.txt on a release of the artifact and used to verify package integrity.
4545
/// </summary>
4646
/// <remarks>
4747
/// The specific algorithm used to create the cryptographic hash value is
@@ -51,17 +51,17 @@ public static class ArtifactAttributes
5151
/// that is suitable for the situation and consistent with the
5252
/// corresponding attestation. The implementer can then provide the other
5353
/// hash values through an additional set of attribute extensions as they
54-
/// deem necessary
54+
/// deem necessary.
5555
/// </remarks>
5656
public const string AttributeArtifactHash = "artifact.hash";
5757

5858
/// <summary>
59-
/// The <a href="https://github.com/package-url/purl-spec">Package URL</a> of the <a href="https://slsa.dev/spec/v1.0/terminology#package-model">package artifact</a> provides a standard way to identify and locate the packaged artifact
59+
/// The <a href="https://github.com/package-url/purl-spec">Package URL</a> of the <a href="https://slsa.dev/spec/v1.0/terminology#package-model">package artifact</a> provides a standard way to identify and locate the packaged artifact.
6060
/// </summary>
6161
public const string AttributeArtifactPurl = "artifact.purl";
6262

6363
/// <summary>
64-
/// The version of the artifact
64+
/// The version of the artifact.
6565
/// </summary>
6666
public const string AttributeArtifactVersion = "artifact.version";
6767
}

src/OpenTelemetry.SemanticConventions/Attributes/AspnetcoreAttributes.cs

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -15,104 +15,104 @@ namespace OpenTelemetry.SemanticConventions;
1515
public static class AspnetcoreAttributes
1616
{
1717
/// <summary>
18-
/// ASP.NET Core exception middleware handling result
18+
/// ASP.NET Core exception middleware handling result.
1919
/// </summary>
2020
public const string AttributeAspnetcoreDiagnosticsExceptionResult = "aspnetcore.diagnostics.exception.result";
2121

2222
/// <summary>
23-
/// Full type name of the <a href="https://learn.microsoft.com/dotnet/api/microsoft.aspnetcore.diagnostics.iexceptionhandler"><c>IExceptionHandler</c></a> implementation that handled the exception
23+
/// Full type name of the <a href="https://learn.microsoft.com/dotnet/api/microsoft.aspnetcore.diagnostics.iexceptionhandler"><c>IExceptionHandler</c></a> implementation that handled the exception.
2424
/// </summary>
2525
public const string AttributeAspnetcoreDiagnosticsHandlerType = "aspnetcore.diagnostics.handler.type";
2626

2727
/// <summary>
28-
/// Rate limiting policy name
28+
/// Rate limiting policy name.
2929
/// </summary>
3030
public const string AttributeAspnetcoreRateLimitingPolicy = "aspnetcore.rate_limiting.policy";
3131

3232
/// <summary>
33-
/// Rate-limiting result, shows whether the lease was acquired or contains a rejection reason
33+
/// Rate-limiting result, shows whether the lease was acquired or contains a rejection reason.
3434
/// </summary>
3535
public const string AttributeAspnetcoreRateLimitingResult = "aspnetcore.rate_limiting.result";
3636

3737
/// <summary>
38-
/// Flag indicating if request was handled by the application pipeline
38+
/// Flag indicating if request was handled by the application pipeline.
3939
/// </summary>
4040
public const string AttributeAspnetcoreRequestIsUnhandled = "aspnetcore.request.is_unhandled";
4141

4242
/// <summary>
43-
/// A value that indicates whether the matched route is a fallback route
43+
/// A value that indicates whether the matched route is a fallback route.
4444
/// </summary>
4545
public const string AttributeAspnetcoreRoutingIsFallback = "aspnetcore.routing.is_fallback";
4646

4747
/// <summary>
48-
/// Match result - success or failure
48+
/// Match result - success or failure.
4949
/// </summary>
5050
public const string AttributeAspnetcoreRoutingMatchStatus = "aspnetcore.routing.match_status";
5151

5252
/// <summary>
53-
/// ASP.NET Core exception middleware handling result
53+
/// ASP.NET Core exception middleware handling result.
5454
/// </summary>
5555
public static class AspnetcoreDiagnosticsExceptionResultValues
5656
{
5757
/// <summary>
58-
/// Exception was handled by the exception handling middleware
58+
/// Exception was handled by the exception handling middleware.
5959
/// </summary>
6060
public const string Handled = "handled";
6161

6262
/// <summary>
63-
/// Exception was not handled by the exception handling middleware
63+
/// Exception was not handled by the exception handling middleware.
6464
/// </summary>
6565
public const string Unhandled = "unhandled";
6666

6767
/// <summary>
68-
/// Exception handling was skipped because the response had started
68+
/// Exception handling was skipped because the response had started.
6969
/// </summary>
7070
public const string Skipped = "skipped";
7171

7272
/// <summary>
73-
/// Exception handling didn't run because the request was aborted
73+
/// Exception handling didn't run because the request was aborted.
7474
/// </summary>
7575
public const string Aborted = "aborted";
7676
}
7777

7878
/// <summary>
79-
/// Rate-limiting result, shows whether the lease was acquired or contains a rejection reason
79+
/// Rate-limiting result, shows whether the lease was acquired or contains a rejection reason.
8080
/// </summary>
8181
public static class AspnetcoreRateLimitingResultValues
8282
{
8383
/// <summary>
84-
/// Lease was acquired
84+
/// Lease was acquired.
8585
/// </summary>
8686
public const string Acquired = "acquired";
8787

8888
/// <summary>
89-
/// Lease request was rejected by the endpoint limiter
89+
/// Lease request was rejected by the endpoint limiter.
9090
/// </summary>
9191
public const string EndpointLimiter = "endpoint_limiter";
9292

9393
/// <summary>
94-
/// Lease request was rejected by the global limiter
94+
/// Lease request was rejected by the global limiter.
9595
/// </summary>
9696
public const string GlobalLimiter = "global_limiter";
9797

9898
/// <summary>
99-
/// Lease request was canceled
99+
/// Lease request was canceled.
100100
/// </summary>
101101
public const string RequestCanceled = "request_canceled";
102102
}
103103

104104
/// <summary>
105-
/// Match result - success or failure
105+
/// Match result - success or failure.
106106
/// </summary>
107107
public static class AspnetcoreRoutingMatchStatusValues
108108
{
109109
/// <summary>
110-
/// Match succeeded
110+
/// Match succeeded.
111111
/// </summary>
112112
public const string Success = "success";
113113

114114
/// <summary>
115-
/// Match failed
115+
/// Match failed.
116116
/// </summary>
117117
public const string Failure = "failure";
118118
}

0 commit comments

Comments
 (0)