-
-
Notifications
You must be signed in to change notification settings - Fork 806
Align with OTEL semantic conventions #9298
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 27 commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
4b81f0d
wip: Align with OTEL spec
tobias-tengler e5e8eb3
Introduce HotChocolate.Diagnostics.Core project
tobias-tengler fffbcd2
wip: More consolidation
tobias-tengler 11ae4a6
Cleanup
tobias-tengler 4460065
Cleanup
tobias-tengler e48ba42
Cleanup
tobias-tengler d83edcd
Cleanup
tobias-tengler e361071
wip: More cleanup
tobias-tengler 3f8e8c7
More cleanup
tobias-tengler dbdca5d
wip: refactor
tobias-tengler d6b2c45
wip: more cleanup
tobias-tengler 8754015
Add back enrichment
tobias-tengler 48b0955
More cleanup
tobias-tengler e9f7e74
More cleanup
tobias-tengler a941964
More cleanup
tobias-tengler 4cd6f2d
Fix ServerInstrumentationTests
tobias-tengler fd91e51
Properly report errors and set status
tobias-tengler 351469f
Add more tests
tobias-tengler 3b5df4f
Add GraphQL error details on "exception" span event
tobias-tengler 1b35848
More cleanup
tobias-tengler 212c627
Update migration guide again
tobias-tengler 67734b1
Cleanup tests
tobias-tengler 64caa2c
Fix snapshots
tobias-tengler 0b7418c
Mark flaky tests
tobias-tengler fc4fc5a
Merge remote-tracking branch 'origin/main' into tte/align-with-otel-spec
tobias-tengler 6fa230e
Small refactorings
tobias-tengler e874d37
Update snapshots
tobias-tengler e85f686
Cleanup
tobias-tengler aed5f55
Fix snapshots
tobias-tengler 8d520d9
Fix test flakiness
tobias-tengler 3e6c0f9
Retrigger CI
tobias-tengler 4c4d87a
Cleanup
tobias-tengler 3b9a499
Undo TryGetOperationDocument change
tobias-tengler bd0e316
Merge origin/main into tte/align-with-otel-spec
tobias-tengler 0fec0af
Update migration guide
tobias-tengler 81f370e
Fix build issue
tobias-tengler c40b318
Add subscription event span
tobias-tengler 55d06e7
Consolidate source schema errors
tobias-tengler 2c6ac34
Fix lambda function flakiness
tobias-tengler File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
2 changes: 1 addition & 1 deletion
2
...Types.Tests/Types/__snapshots__/DirectiveTypeTests.Directive_ValidateArgs_ArgMissing.snap
This file contains hidden or 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 |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| The directive arguments have invalid values: 'The required input field `d` is missing.' at /d. | ||
| The directive arguments have invalid values: 'The required input field `d` is missing.' at d. | ||
| @a |
2 changes: 1 addition & 1 deletion
2
...Types.Tests/Types/__snapshots__/DirectiveTypeTests.Directive_ValidateArgs_InvalidArg.snap
This file contains hidden or 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 |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| The directive arguments have invalid values: 'Int cannot coerce the given literal of type `BooleanValue` to a runtime value.' at /e. | ||
| The directive arguments have invalid values: 'Int cannot coerce the given literal of type `BooleanValue` to a runtime value.' at e. | ||
| @a(d: 1, e: true) |
2 changes: 1 addition & 1 deletion
2
...Tests/Types/__snapshots__/DirectiveTypeTests.Directive_ValidateArgs_NonNullArgIsNull.snap
This file contains hidden or 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 |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| The directive arguments have invalid values: 'Cannot accept null for non-nullable input.' at /d. | ||
| The directive arguments have invalid values: 'Cannot accept null for non-nullable input.' at d. | ||
| @a(d: null) |
2 changes: 1 addition & 1 deletion
2
...t/Types.Tests/Types/__snapshots__/DirectiveTypeTests.Directive_ValidateArgs_Overflow.snap
This file contains hidden or 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 |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| The directive arguments have invalid values: 'Int cannot coerce the given literal of type `IntValue` to a runtime value.' at /d. | ||
| The directive arguments have invalid values: 'Int cannot coerce the given literal of type `IntValue` to a runtime value.' at d. | ||
| @a(d: 9223372036854775807) |
This file contains hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.