-
Notifications
You must be signed in to change notification settings - Fork 773
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0ae64b5
commit 01a150e
Showing
3 changed files
with
21 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,7 +60,7 @@ public static class TraceSemanticConventions | |
/// If no <a href="#call-level-attributes-for-specific-technologies">tech-specific attribute</a> is defined, this attribute is used to report the name of the database being accessed. For commands that switch the database, this should be set to the target database (even if the command fails). | ||
/// </summary> | ||
/// <remarks> | ||
/// In some SQL databases, the database name to be used is called "schema name". | ||
/// In some SQL databases, the database name to be used is called "schema name". | ||
/// </remarks> | ||
public const string AttributeDbName = "db.name"; | ||
|
||
|
@@ -173,7 +173,7 @@ public static class TraceSemanticConventions | |
/// SHOULD be set to true if the exception event is recorded at a point where it is known that the exception is escaping the scope of the span. | ||
/// </summary> | ||
/// <remarks> | ||
/// An exception is considered to have escaped (or left) the scope of a span, if that span is ended while the exception is still logically "in flight". This may be actually "in flight" in some languages (e.g. if the exception is passed to a Context manager's `__exit__` method in Python) but will usually be caught at the point of recording the exception in most languages. It is usually not possible to determine at the point where an exception is thrown whether it will escape the scope of a span. However, it is trivial to know that an exception will escape, if one checks for an active exception just before ending the span, as done in the [example above](#exception-end-example). It follows that an exception may still escape the scope of the span even if the `exception.escaped` attribute was not set or set to false, since the event might have been recorded at a time where it was not clear whether the exception will escape. | ||
/// An exception is considered to have escaped (or left) the scope of a span, if that span is ended while the exception is still logically "in flight". This may be actually "in flight" in some languages (e.g. if the exception is passed to a Context manager's `__exit__` method in Python) but will usually be caught at the point of recording the exception in most languages. It is usually not possible to determine at the point where an exception is thrown whether it will escape the scope of a span. However, it is trivial to know that an exception will escape, if one checks for an active exception just before ending the span, as done in the [example above](#exception-end-example). It follows that an exception may still escape the scope of the span even if the `exception.escaped` attribute was not set or set to false, since the event might have been recorded at a time where it was not clear whether the exception will escape. | ||
/// </remarks> | ||
public const string AttributeExceptionEscaped = "exception.escaped"; | ||
|
||
|
@@ -340,7 +340,7 @@ public static class TraceSemanticConventions | |
/// Full HTTP request URL in the form <c>scheme://host[:port]/path?query[#fragment]</c>. Usually the fragment is not transmitted over HTTP, but if it is known, it should be included nevertheless. | ||
/// </summary> | ||
/// <remarks> | ||
/// `http.url` MUST NOT contain credentials passed via URL in form of `https://username:[email protected]/`. In such case the attribute's value should be `https://www.example.com/`. | ||
/// `http.url` MUST NOT contain credentials passed via URL in form of `https://username:[email protected]/`. In such case the attribute's value should be `https://www.example.com/`. | ||
/// </remarks> | ||
public const string AttributeHttpUrl = "http.url"; | ||
|
||
|
@@ -597,7 +597,7 @@ public static class TraceSemanticConventions | |
/// Message keys in Kafka are used for grouping alike messages to ensure they're processed on the same partition. They differ from <c>messaging.message_id</c> in that they're not unique. If the key is <c>null</c>, the attribute MUST NOT be set. | ||
/// </summary> | ||
/// <remarks> | ||
/// If the key type is not string, it's string representation has to be supplied for the attribute. If the key has no unambiguous, canonical string form, don't include its value. | ||
/// If the key type is not string, it's string representation has to be supplied for the attribute. If the key has no unambiguous, canonical string form, don't include its value. | ||
/// </remarks> | ||
public const string AttributeMessagingKafkaMessageKey = "messaging.kafka.message_key"; | ||
|
||
|
@@ -760,7 +760,7 @@ public static class DbSystemValues | |
public const string Edb = "edb"; | ||
|
||
/// <summary> | ||
/// InterSystems Caché. | ||
/// InterSystems Caché. | ||
/// </summary> | ||
public const string Cache = "cache"; | ||
|
||
|
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