Skip to content

Commit 8b06f1e

Browse files
committed
1.36.0
1 parent 13870df commit 8b06f1e

File tree

4 files changed

+32
-22
lines changed

4 files changed

+32
-22
lines changed

build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ val snapshot = true
1111
// end
1212

1313
// The release version of https://github.com/open-telemetry/semantic-conventions used to generate classes
14-
var semanticConventionsVersion = "1.35.0"
14+
var semanticConventionsVersion = "1.36.0"
1515
val schemaUrlVersions = listOf(
1616
semanticConventionsVersion,
17+
"1.35.0",
18+
"1.34.0",
1719
"1.33.0",
1820
"1.32.0",
1921
"1.31.0",

semconv-incubating/src/main/java/io/opentelemetry/semconv/incubating/CloudIncubatingAttributes.java

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -146,27 +146,6 @@ public static final class CloudPlatformIncubatingValues {
146146
/** Azure Red Hat OpenShift */
147147
public static final String AZURE_OPENSHIFT = "azure.openshift";
148148

149-
/** Azure Virtual Machines */
150-
public static final String AZURE_VM = "azure_vm";
151-
152-
/** Azure Container Apps */
153-
public static final String AZURE_CONTAINER_APPS = "azure_container_apps";
154-
155-
/** Azure Container Instances */
156-
public static final String AZURE_CONTAINER_INSTANCES = "azure_container_instances";
157-
158-
/** Azure Kubernetes Service */
159-
public static final String AZURE_AKS = "azure_aks";
160-
161-
/** Azure Functions */
162-
public static final String AZURE_FUNCTIONS = "azure_functions";
163-
164-
/** Azure App Service */
165-
public static final String AZURE_APP_SERVICE = "azure_app_service";
166-
167-
/** Azure Red Hat OpenShift */
168-
public static final String AZURE_OPENSHIFT = "azure_openshift";
169-
170149
/** Google Bare Metal Solution (BMS) */
171150
public static final String GCP_BARE_METAL_SOLUTION = "gcp_bare_metal_solution";
172151

semconv-incubating/src/main/java/io/opentelemetry/semconv/incubating/OtelIncubatingAttributes.java

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,14 @@ public final class OtelIncubatingAttributes {
8484
@Deprecated
8585
public static final AttributeKey<String> OTEL_SCOPE_VERSION = stringKey("otel.scope.version");
8686

87+
/**
88+
* Determines whether the span has a parent span, and if so, <a
89+
* href="https://opentelemetry.io/docs/specs/otel/trace/api/#isremote">whether it is a remote
90+
* parent</a>
91+
*/
92+
public static final AttributeKey<String> OTEL_SPAN_PARENT_ORIGIN =
93+
stringKey("otel.span.parent.origin");
94+
8795
/** The result value of the sampler for this span */
8896
public static final AttributeKey<String> OTEL_SPAN_SAMPLING_RESULT =
8997
stringKey("otel.span.sampling_result");
@@ -163,6 +171,26 @@ public static final class OtelComponentTypeIncubatingValues {
163171
private OtelComponentTypeIncubatingValues() {}
164172
}
165173

174+
/** Values for {@link #OTEL_SPAN_PARENT_ORIGIN}. */
175+
public static final class OtelSpanParentOriginIncubatingValues {
176+
/** The span does not have a parent, it is a root span */
177+
public static final String NONE = "none";
178+
179+
/**
180+
* The span has a parent and the parent's span context <a
181+
* href="https://opentelemetry.io/docs/specs/otel/trace/api/#isremote">isRemote()</a> is false
182+
*/
183+
public static final String LOCAL = "local";
184+
185+
/**
186+
* The span has a parent and the parent's span context <a
187+
* href="https://opentelemetry.io/docs/specs/otel/trace/api/#isremote">isRemote()</a> is true
188+
*/
189+
public static final String REMOTE = "remote";
190+
191+
private OtelSpanParentOriginIncubatingValues() {}
192+
}
193+
166194
/** Values for {@link #OTEL_SPAN_SAMPLING_RESULT}. */
167195
public static final class OtelSpanSamplingResultIncubatingValues {
168196
/** The span is not sampled and not recording */

semconv/src/main/java/io/opentelemetry/semconv/SchemaUrls.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
public final class SchemaUrls {
99

10+
public static final String V1_36_0 = "https://opentelemetry.io/schemas/1.36.0";
1011
public static final String V1_35_0 = "https://opentelemetry.io/schemas/1.35.0";
1112
public static final String V1_34_0 = "https://opentelemetry.io/schemas/1.34.0";
1213
public static final String V1_33_0 = "https://opentelemetry.io/schemas/1.33.0";

0 commit comments

Comments
 (0)