Skip to content

Commit 155f100

Browse files
authored
Merge pull request #170 from nCubed/develop
Fix some grammar; update links to example projects.
2 parents 6a2e23a + 321f2cc commit 155f100

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Build](https://github.com/awslabs/aws-lambda-powertools-dotnet/actions/workflows/build.yml/badge.svg?branch=develop)](https://github.com/awslabs/aws-lambda-powertools-dotnet/actions/workflows/build.yml)
55
[![Join our Discord](https://dcbadge.vercel.app/api/server/B8zZKbbyET)](https://discord.gg/B8zZKbbyET)
66

7-
AWS Lambda Powertools for .NET (C#) is suite of utilities for AWS Lambda functions to simplify implementation of serverless observability best practices such as tracing, structured logging, custom metrics.
7+
AWS Lambda Powertools for .NET (C#) is a suite of utilities for AWS Lambda functions to simplify implementation of serverless observability best practices such as tracing, structured logging, and custom metrics.
88

99
**[📜 Documentation](https://awslabs.github.io/aws-lambda-powertools-dotnet/)** | **[NuGet](https://www.nuget.org/)** | **[Roadmap](https://github.com/awslabs/aws-lambda-powertools-roadmap/projects/1)** | **[Examples](#examples)**
1010

@@ -18,11 +18,11 @@ Lambda Powertools provides three core utilities:
1818

1919
* **[Metrics](https://awslabs.github.io/aws-lambda-powertools-dotnet/core/metrics/)** - makes collecting custom metrics from your application simple, without the need to make synchronous requests to external systems. This functionality is powered by [Amazon CloudWatch Embedded Metric Format (EMF)](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Embedded_Metric_Format.html), which allows for capturing metrics asynchronously.
2020

21-
* **[Tracing](https://awslabs.github.io/aws-lambda-powertools-dotnet/core/tracing/)** - provides a simple way to send traces from functions to AWS X-Ray to provide visibility into function calls, interactions with other AWS services, or external HTTP requests. Annotations easily can be added to traces to allow filtering traces based on key information. For example, when using Tracer, a ColdStart annotation is created for you, so you can easily group and analyze traces where there was an initialization overhead.
21+
* **[Tracing](https://awslabs.github.io/aws-lambda-powertools-dotnet/core/tracing/)** - provides a simple way to send traces from functions to AWS X-Ray to provide visibility into function calls, interactions with other AWS services, or external HTTP requests. Annotations can easily be added to traces to allow filtering traces based on key information. For example, when using Tracer, a ColdStart annotation is created for you so you can easily group and analyze traces where there was an initialization overhead.
2222

2323
### Installation
2424

25-
The AWS Lambda Powertools for .NET utilities (.NET 6) are available as NuGet packages. You can install the packages from NuGet gallery or from Visual Studio editor. Search `AWS.Lambda.Powertools*` to see various utilities available.Powertools is available on NuGet.
25+
The AWS Lambda Powertools for .NET utilities (.NET 6) are available as NuGet packages. You can install the packages from the NuGet gallery or from within the Visual Studio IDE. Search `AWS.Lambda.Powertools*` to see various utilities available. Powertools is available on NuGet.
2626

2727
* [AWS.Lambda.Powertools.Logging](https://www.nuget.org/packages?q=AWS.Lambda.Powertools.Logging):
2828

@@ -38,15 +38,15 @@ The AWS Lambda Powertools for .NET utilities (.NET 6) are available as NuGet pac
3838

3939
## Examples
4040

41-
We have provided examples focused specifically on each of the utilities. Each solution comes with AWS Serverless Application Model (AWS SAM) templates to run your functions as Zip package using the AWS Lambda .NET 6 managed runtime, or as a container package using the AWS base images for .NET.
41+
We have provided examples focused specifically on each of the utilities. Each solution comes with an AWS Serverless Application Model (AWS SAM) templates to run your functions as a Zip package using the AWS Lambda .NET 6 managed runtime; or as a container package using the AWS base images for .NET.
4242

43-
* **[Logging example](examples/Logging/README.md)**
44-
* **[Metrics example](examples/Metrics/README.md)**
45-
* **[Tracing example](examples/Tracing/README.md)**
43+
* **[Logging example](examples/Logging/)**
44+
* **[Metrics example](examples/Metrics/)**
45+
* **[Tracing example](examples/Tracing/)**
4646

4747
## Other members of the AWS Lambda Powertools family
4848

49-
Not using .NET? No problem we have you covered. Here are the other members of the AWS Lambda Powertools family:
49+
Not using .NET? No problem, we have you covered. Here are the other members of the AWS Lambda Powertools family:
5050

5151
* [AWS Lambda Powertools for Python](https://github.com/awslabs/aws-lambda-powertools-python)
5252
* [AWS Lambda Powertools for Java](https://github.com/awslabs/aws-lambda-powertools-java)

0 commit comments

Comments
 (0)