-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade to semconv 1.24.0 * Exclude aspnetcore, signalr root namespaces
- Loading branch information
Showing
23 changed files
with
742 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
...ncubating/src/main/java/io/opentelemetry/semconv/incubating/DiskIncubatingAttributes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* 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 | ||
/** Values for {@link #DISK_IO_DIRECTION}. */ | ||
public static final class DiskIoDirectionValues { | ||
/** read. */ | ||
public static final String READ = "read"; | ||
|
||
/** write. */ | ||
public static final String WRITE = "write"; | ||
|
||
private DiskIoDirectionValues() {} | ||
} | ||
|
||
private DiskIncubatingAttributes() {} | ||
} |
32 changes: 32 additions & 0 deletions
32
...incubating/src/main/java/io/opentelemetry/semconv/incubating/DnsIncubatingAttributes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 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"); | ||
|
||
private DnsIncubatingAttributes() {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.