-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add bare package README.md (#58)
- Loading branch information
Showing
8 changed files
with
61 additions
and
1 deletion.
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,7 @@ | ||
ASP.NET Core middleware component to correlate requests between microservices using correlation ID request headers. | ||
|
||
### Useful links | ||
|
||
- [GitHub / docs](https://github.com/skwasjer/Correlate) | ||
- [Changelog](https://github.com/skwasjer/Correlate/releases) | ||
- [Examples](https://github.com/skwasjer/Correlate/tree/main/examples) |
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,7 @@ | ||
Provides abstractions to correlate requests between microservices. | ||
|
||
### Useful links | ||
|
||
- [GitHub / docs](https://github.com/skwasjer/Correlate) | ||
- [Changelog](https://github.com/skwasjer/Correlate/releases) | ||
- [Examples](https://github.com/skwasjer/Correlate/tree/main/examples) |
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,7 @@ | ||
Correlate requests between microservices using a correlation ID. | ||
|
||
### Useful links | ||
|
||
- [GitHub / docs](https://github.com/skwasjer/Correlate) | ||
- [Changelog](https://github.com/skwasjer/Correlate/releases) | ||
- [Examples](https://github.com/skwasjer/Correlate/tree/main/examples) |
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,23 @@ | ||
Dependency injection extensions for Correlate. | ||
|
||
### Dependency registration example | ||
|
||
```csharp | ||
var services = new ServiceCollection(); | ||
services.AddCorrelate(); | ||
``` | ||
|
||
### HttpClient delegating handler example | ||
|
||
```csharp | ||
var services = new ServiceCollection(); | ||
services | ||
.AddHttpClient<MyService>() | ||
.CorrelateRequests(); | ||
``` | ||
|
||
### Useful links | ||
|
||
- [GitHub / docs](https://github.com/skwasjer/Correlate) | ||
- [Changelog](https://github.com/skwasjer/Correlate/releases) | ||
- [Examples](https://github.com/skwasjer/Correlate/tree/main/examples) |