Skip to content

Commit

Permalink
Upgrade to semconv 1.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-berg committed Mar 14, 2024
1 parent 8b1484e commit 9831977
Show file tree
Hide file tree
Showing 10 changed files with 539 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ val snapshot = true
// end

// The release version of https://github.com/open-telemetry/semantic-conventions used to generate classes
var semanticConventionsVersion = "1.23.1"
val schemaUrlVersions = listOf(semanticConventionsVersion, "1.22.0")
var semanticConventionsVersion = "1.24.0"
val schemaUrlVersions = listOf(
semanticConventionsVersion,
"1.23.1",
"1.22.0")

// Compute the artifact version, which includes the "-alpha" suffix and includes "-SNAPSHOT" suffix if not releasing
// Release example: version=1.21.0-alpha
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/

package io.opentelemetry.semconv.incubating;

import static io.opentelemetry.api.common.AttributeKey.booleanKey;
import static io.opentelemetry.api.common.AttributeKey.stringKey;

import io.opentelemetry.api.common.AttributeKey;

// DO NOT EDIT, this is an Auto-generated file from
// buildscripts/templates/SemanticAttributes.java.j2
@SuppressWarnings("unused")
public final class AspnetcoreIncubatingAttributes {

/** ASP.NET Core exception middleware handling result */
public static final AttributeKey<String> ASPNETCORE_DIAGNOSTICS_EXCEPTION_RESULT =
stringKey("aspnetcore.diagnostics.exception.result");

/**
* Full type name of the <a
* href="https://learn.microsoft.com/dotnet/api/microsoft.aspnetcore.diagnostics.iexceptionhandler">{@code
* IExceptionHandler}</a> implementation that handled the exception.
*/
public static final AttributeKey<String> ASPNETCORE_DIAGNOSTICS_HANDLER_TYPE =
stringKey("aspnetcore.diagnostics.handler.type");

/** Rate limiting policy name. */
public static final AttributeKey<String> ASPNETCORE_RATE_LIMITING_POLICY =
stringKey("aspnetcore.rate_limiting.policy");

/** Rate-limiting result, shows whether the lease was acquired or contains a rejection reason */
public static final AttributeKey<String> ASPNETCORE_RATE_LIMITING_RESULT =
stringKey("aspnetcore.rate_limiting.result");

/** Flag indicating if request was handled by the application pipeline. */
public static final AttributeKey<Boolean> ASPNETCORE_REQUEST_IS_UNHANDLED =
booleanKey("aspnetcore.request.is_unhandled");

/** A value that indicates whether the matched route is a fallback route. */
public static final AttributeKey<Boolean> ASPNETCORE_ROUTING_IS_FALLBACK =
booleanKey("aspnetcore.routing.is_fallback");

/** Match result - success or failure */
public static final AttributeKey<String> ASPNETCORE_ROUTING_MATCH_STATUS =
stringKey("aspnetcore.routing.match_status");

// Enum definitions
public static final class AspnetcoreDiagnosticsExceptionResultValues {
/** Exception was handled by the exception handling middleware. */
public static final String HANDLED = "handled";

/** Exception was not handled by the exception handling middleware. */
public static final String UNHANDLED = "unhandled";

/** Exception handling was skipped because the response had started. */
public static final String SKIPPED = "skipped";

/** Exception handling didn&#39;t run because the request was aborted. */
public static final String ABORTED = "aborted";

private AspnetcoreDiagnosticsExceptionResultValues() {}
}

public static final class AspnetcoreRateLimitingResultValues {
/** Lease was acquired. */
public static final String ACQUIRED = "acquired";

/** Lease request was rejected by the endpoint limiter. */
public static final String ENDPOINT_LIMITER = "endpoint_limiter";

/** Lease request was rejected by the global limiter. */
public static final String GLOBAL_LIMITER = "global_limiter";

/** Lease request was canceled. */
public static final String REQUEST_CANCELED = "request_canceled";

private AspnetcoreRateLimitingResultValues() {}
}

public static final class AspnetcoreRoutingMatchStatusValues {
/** Match succeeded. */
public static final String SUCCESS = "success";

/** Match failed. */
public static final String FAILURE = "failure";

private AspnetcoreRoutingMatchStatusValues() {}
}

private AspnetcoreIncubatingAttributes() {}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/

package io.opentelemetry.semconv.incubating;

import static io.opentelemetry.api.common.AttributeKey.stringKey;

import io.opentelemetry.api.common.AttributeKey;

// DO NOT EDIT, this is an Auto-generated file from
// buildscripts/templates/SemanticAttributes.java.j2
@SuppressWarnings("unused")
public final class DiskIncubatingAttributes {

/** The disk IO operation direction. */
public static final AttributeKey<String> DISK_IO_DIRECTION = stringKey("disk.io.direction");

// Enum definitions
public static final class DiskIoDirectionValues {
/** read. */
public static final String READ = "read";

/** write. */
public static final String WRITE = "write";

private DiskIoDirectionValues() {}
}

private DiskIncubatingAttributes() {}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/

package io.opentelemetry.semconv.incubating;

import static io.opentelemetry.api.common.AttributeKey.stringKey;

import io.opentelemetry.api.common.AttributeKey;

// DO NOT EDIT, this is an Auto-generated file from
// buildscripts/templates/SemanticAttributes.java.j2
@SuppressWarnings("unused")
public final class DnsIncubatingAttributes {

/**
* The name being queried.
*
* <p>Notes:
*
* <ul>
* <li>The name being queried. If the name field contains non-printable characters (below 32 or
* above 126), those characters should be represented as escaped base 10 integers (\DDD).
* Back slashes and quotes should be escaped. Tabs, carriage returns, and line feeds should
* be converted to \t, \r, and \n respectively.
* </ul>
*/
public static final AttributeKey<String> DNS_QUESTION_NAME = stringKey("dns.question.name");

// Enum definitions

private DnsIncubatingAttributes() {}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/

package io.opentelemetry.semconv.incubating;

import static io.opentelemetry.api.common.AttributeKey.stringKey;

import io.opentelemetry.api.common.AttributeKey;

// DO NOT EDIT, this is an Auto-generated file from
// buildscripts/templates/SemanticAttributes.java.j2
@SuppressWarnings("unused")
public final class SignalrIncubatingAttributes {

/** SignalR HTTP connection closure status. */
public static final AttributeKey<String> SIGNALR_CONNECTION_STATUS =
stringKey("signalr.connection.status");

/**
* <a
* href="https://github.com/dotnet/aspnetcore/blob/main/src/SignalR/docs/specs/TransportProtocols.md">SignalR
* transport type</a>
*/
public static final AttributeKey<String> SIGNALR_TRANSPORT = stringKey("signalr.transport");

// Enum definitions
public static final class SignalrConnectionStatusValues {
/** The connection was closed normally. */
public static final String NORMAL_CLOSURE = "normal_closure";

/** The connection was closed due to a timeout. */
public static final String TIMEOUT = "timeout";

/** The connection was closed because the app is shutting down. */
public static final String APP_SHUTDOWN = "app_shutdown";

private SignalrConnectionStatusValues() {}
}

public static final class SignalrTransportValues {
/** ServerSentEvents protocol. */
public static final String SERVER_SENT_EVENTS = "server_sent_events";

/** LongPolling protocol. */
public static final String LONG_POLLING = "long_polling";

/** WebSockets protocol. */
public static final String WEB_SOCKETS = "web_sockets";

private SignalrTransportValues() {}
}

private SignalrIncubatingAttributes() {}
}
Loading

0 comments on commit 9831977

Please sign in to comment.