-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
re-adding removed trace attribute values (#1368)
the MESSAGING_OPERATION_* attribute values were removed in semconv 1.26.0, so update our generation to put them back, marking as deprecated
- Loading branch information
Showing
5 changed files
with
54 additions
and
0 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
24 changes: 24 additions & 0 deletions
24
script/semantic-conventions/templates/trace_values_deprecations.php.partial
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,24 @@ | ||
/** | ||
* @deprecated Use `messaging.operation.type.publish` | ||
*/ | ||
public const MESSAGING_OPERATION_PUBLISH = 'publish'; | ||
|
||
/** | ||
* @deprecated Use `messaging.operation.type.create` | ||
*/ | ||
public const MESSAGING_OPERATION_CREATE = 'create'; | ||
|
||
/** | ||
* @deprecated Use `messaging.operation.type.receive` | ||
*/ | ||
public const MESSAGING_OPERATION_RECEIVE = 'receive'; | ||
|
||
/** | ||
* @deprecated Use `messaging.operation.type.deliver` | ||
*/ | ||
public const MESSAGING_OPERATION_DELIVER = 'process'; | ||
|
||
/** | ||
* @deprecated Use `messaging.operation.type.settle` | ||
*/ | ||
public const MESSAGING_OPERATION_SETTLE = 'settle'; |
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