-
Notifications
You must be signed in to change notification settings - Fork 300
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
Document the new 9.1 OpenTelemetry meters #6719
Closed
Closed
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
d8c5887
Document the new 9.1 OpenTelemetry meters
mauroservienti fe42fd0
Update processing time definition
mauroservienti c3a4235
Fix formatting
mauroservienti 5543fab
Make the partial specific
mauroservienti 762a50b
Add empty Core 9.1 snippets
mauroservienti 7bdc2ed
Apply suggestions from code review
SzymonPobiega 6cd215a
Update Snippets/Core/Core_9.1/Core_9.1.csproj
mauroservienti bfff555
Update monitoring/metrics/definitions.md
mauroservienti 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 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<RootNamespace>Core9</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="NServiceBus" Version="9.1.*" /> | ||
</ItemGroup> | ||
|
||
</Project> |
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
70 changes: 0 additions & 70 deletions
70
nservicebus/operations/opentelemetry_content_core_[8,).partial.md
This file was deleted.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
nservicebus/operations/opentelemetry_meters_core_[8,9.1).partial.md
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,5 @@ | ||
### Emitted meters | ||
|
||
- `nservicebus.messaging.successes` - Total number of messages processed successfully by the endpoint | ||
- `nservicebus.messaging.fetches` - Total number of messages fetched from the queue by the endpoint | ||
- `nservicebus.messaging.failures` - Total number of messages processed unsuccessfully by the endpoint |
13 changes: 13 additions & 0 deletions
13
nservicebus/operations/opentelemetry_meters_core_[9.1,).partial.md
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,13 @@ | ||
### Emitted meters | ||
|
||
- `nservicebus.messaging.successes` - Total number of messages processed successfully by the endpoint | ||
- `nservicebus.messaging.fetches` - Total number of messages fetched from the queue by the endpoint | ||
- `nservicebus.messaging.failures` - Total number of messages processed unsuccessfully by the endpoint | ||
- `nservicebus.messaging.handler_time` - The time the user handling code takes to handle a message | ||
- `nservicebus.messaging.processing_time` - The time the endpoint takes to process a message from when it's fetched from the input queue to when processing completes. It includes: | ||
- Invoking all handlers and sagas for a single incoming message | ||
- Invoking the incoming message processing pipeline, which includes steps like deserialization or user defined pipeline behaviors. | ||
- `nservicebus.messaging.critical_time` - The time between when a message is sent and when it is fully processed. It is a combination of: | ||
- Network send time: The time a message spends on the network before arriving in the destination queue | ||
- Queue wait time: The time a message spends in the destination queue before being picked up and processed | ||
- Processing time: The time it takes for the destination endpoint to process the message |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make legit snippet? (Not sure if this would be an 8 and 9 snippet or a 9.1 only snippet)