Skip to content

Commit f51155a

Browse files
authored
Merge pull request #315 from aws-powertools/url-updates
2 parents f6caa32 + de41f7c commit f51155a

File tree

16 files changed

+25
-25
lines changed

16 files changed

+25
-25
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ body:
6565
id: logs
6666
attributes:
6767
label: Debugging logs
68-
description: If available, please share [debugging logs](https://docs.powertools.aws.dev/lambda-dotnet/#debug-mode)
68+
description: If available, please share [debugging logs](https://docs.powertools.aws.dev/lambda/dotnet/#debug-mode)
6969
render: csharp
7070
validations:
7171
required: false

.github/ISSUE_TEMPLATE/feature_request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ body:
3636
attributes:
3737
label: Acknowledgment
3838
options:
39-
- label: This feature request meets [Powertools for AWS Lambda (.NET) Tenets](https://docs.powertools.aws.dev/lambda-dotnet/tenets)
39+
- label: This feature request meets [Powertools for AWS Lambda (.NET) Tenets](https://docs.powertools.aws.dev/lambda/dotnet/tenets)
4040
required: true
4141
- label: Should this be considered in other Powertools for AWS Lambda languages? i.e. [Python](https://github.com/aws-powertools/powertools-lambda-python), [Java](https://github.com/aws-powertools/powertools-lambda-java/), and [TypeScript](https://github.com/aws-powertools/powertools-lambda-typescript/)
4242
required: false

.github/ISSUE_TEMPLATE/maintenance.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ body:
5252
attributes:
5353
label: Acknowledgment
5454
options:
55-
- label: This request meets [Powertools for AWS Lambda (.NET) Tenets](https://docs.powertools.aws.dev/lambda-dotnet/latest/#tenets)
55+
- label: This request meets [Powertools for AWS Lambda (.NET) Tenets](https://docs.powertools.aws.dev/lambda/dotnet/#tenets)
5656
required: true
5757
- type: markdown
5858
attributes:

.github/ISSUE_TEMPLATE/rfc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ body:
7979
attributes:
8080
label: Acknowledgment
8181
options:
82-
- label: This feature request meets [Powertools for AWS Lambda (.NET) Tenets](https://docs.powertools.aws.dev/lambda-dotnet/tenets/)
82+
- label: This feature request meets [Powertools for AWS Lambda (.NET) Tenets](https://docs.powertools.aws.dev/lambda/dotnet/tenets/)
8383
required: true
8484
- label: Should this be considered in other Powertools for AWS Lambda (.NET) languages? i.e. [Python](https://github.com/aws-powertools/powertools-lambda-python), [Java](https://github.com/aws-powertools/powertools-lambda-java/), and [TypeScript](https://github.com/aws-powertools/powertools-lambda-typescript/)
8585
required: false

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Issue number:
1616

1717
Please leave checklist items unchecked if they do not apply to your change.
1818

19-
* [ ] [Meets tenets criteria](https://docs.powertools.aws.dev/lambda-dotnet/tenets)
19+
* [ ] [Meets tenets criteria](https://docs.powertools.aws.dev/lambda/dotnet/tenets)
2020
* [ ] I have performed a self-review of this change
2121
* [ ] Changes have been tested
2222
* [ ] Changes are documented

MAINTAINERS.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Manage [labels](#labels), review issues regularly, and create new labels as need
121121

122122
> TODO: This is an area we want to automate using the new GitHub GraphQL API.
123123
124-
Make sure issues are assigned to our [board of activities](https://github.com/orgs/awslabs/projects/51/) and have the right [status](https://docs.powertools.aws.dev/lambda-dotnet/latest/roadmap/#roadmap-status-definition).
124+
Make sure issues are assigned to our [board of activities](https://github.com/orgs/aws-powertools/projects/6/views/4?query=is%3Aopen+sort%3Aupdated-desc) and have the right [status](https://docs.powertools.aws.dev/lambda/dotnet/roadmap/#roadmap-status-definition).
125125

126126
Use our [labels](#labels) to signal good first issues to new community members, and to set expectation that this might need additional feedback from the author, other customers, experienced community members and/or maintainers.
127127

@@ -153,7 +153,7 @@ Keep the `develop` branch at production quality at all times. Backport features
153153

154154
### Manage Roadmap
155155

156-
See [Roadmap section](https://docs.powertools.aws.dev/lambda-dotnet/roadmap/)
156+
See [Roadmap section](https://docs.powertools.aws.dev/lambda/dotnet/roadmap/)
157157

158158
Ensure the repo highlights features that should be elevated to the project roadmap. Be clear about the feature’s status, priority, target version, and whether or not it should be elevated to the roadmap.
159159

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ Powertools for AWS Lambda (.NET) is a developer toolkit to implement Serverless
1919

2020
Powertools for AWS Lambda (.NET) provides three core utilities:
2121

22-
* **[Logging](https://docs.powertools.aws.dev/lambda-dotnet/core/logging/)** - provides a custom logger class that outputs structured JSON. It allows you to pass in strings or more complex objects, and will take care of serializing the log output. Common use cases—such as logging the Lambda event payload and capturing cold start information—are handled for you, including appending custom keys to the logger at anytime.
22+
* **[Logging](https://docs.powertools.aws.dev/lambda/dotnet/core/logging/)** - provides a custom logger class that outputs structured JSON. It allows you to pass in strings or more complex objects, and will take care of serializing the log output. Common use cases—such as logging the Lambda event payload and capturing cold start information—are handled for you, including appending custom keys to the logger at anytime.
2323

24-
* **[Metrics](https://docs.powertools.aws.dev/lambda-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.
24+
* **[Metrics](https://docs.powertools.aws.dev/lambda/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.
2525

26-
* **[Tracing](https://docs.powertools.aws.dev/lambda-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.
26+
* **[Tracing](https://docs.powertools.aws.dev/lambda/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.
2727

28-
* **[Parameters (developer preview)](https://docs.powertools.aws.dev/lambda-dotnet/utilities/parameters/)** - provides high-level functionality to retrieve one or multiple parameter values from [AWS Systems Manager Parameter Store](https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html), [AWS Secrets Manager](https://aws.amazon.com/secrets-manager/), or [Amazon DynamoDB](https://aws.amazon.com/dynamodb/). We also provide extensibility to bring your own providers.
28+
* **[Parameters (developer preview)](https://docs.powertools.aws.dev/lambda/dotnet/utilities/parameters/)** - provides high-level functionality to retrieve one or multiple parameter values from [AWS Systems Manager Parameter Store](https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html), [AWS Secrets Manager](https://aws.amazon.com/secrets-manager/), or [Amazon DynamoDB](https://aws.amazon.com/dynamodb/). We also provide extensibility to bring your own providers.
2929

30-
* **[Idempotency (developer preview)](https://docs.powertools.aws.dev/lambda-dotnet/utilities/idempotency/)** - The idempotency utility provides a simple solution to convert your Lambda functions into idempotent operations which are safe to retry.
30+
* **[Idempotency (developer preview)](https://docs.powertools.aws.dev/lambda/dotnet/utilities/idempotency/)** - The idempotency utility provides a simple solution to convert your Lambda functions into idempotent operations which are safe to retry.
3131

3232
### Installation
3333

apidocs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ To get started use the `API Documentaion` menu on the navigation bar, or search
77
> [!NOTE]
88
> Are you looking for documentation on how to use Powertools for AWS Lambda (.NET) utilities and code samples?
99
>
10-
> 👉 [Here](https://docs.powertools.aws.dev/lambda-dotnet/) is the perfect place to start.
10+
> 👉 [Here](https://docs.powertools.aws.dev/lambda/dotnet/) is the perfect place to start.
1111
1212
## Feedback
1313

apidocs/toc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
href: api/
33
homepage: api/index.md
44
- name: Powertools for AWS Lambda (.NET) Documentation
5-
href: "https://docs.powertools.aws.dev/lambda-dotnet/"
5+
href: "https://docs.powertools.aws.dev/lambda/dotnet/"

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description: Powertools for AWS Lambda (.NET)
1010
Powertools for AWS Lambda (.NET) (which from here will be referred as Powertools) is a suite of utilities for [AWS Lambda](https://aws.amazon.com/lambda/) functions to ease adopting best practices such as tracing, structured logging, custom metrics, and more. Please note, **Powertools for AWS Lambda (.NET) is optimized for .NET 6+**.
1111

1212
???+ tip
13-
Powertools is also available for [Python](https://docs.powertools.aws.dev/lambda-python/){target="_blank"}, [Java](https://docs.powertools.aws.dev/lambda-java/){target="_blank"}, and [TypeScript](https://docs.powertools.aws.dev/lambda-typescript/latest/){target="_blank"}.
13+
Powertools is also available for [Python](https://docs.powertools.aws.dev/lambda/python/){target="_blank"}, [Java](https://docs.powertools.aws.dev/lambda/java/){target="_blank"}, and [TypeScript](https://docs.powertools.aws.dev/lambda/typescript/latest/){target="_blank"}.
1414

1515
??? hint "Support this project by becoming a reference customer or sharing your work :heart:"
1616

docs/javascript/extra.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ const awsconfig = {
1010
};
1111

1212
const RUNTIME = "dotnet"
13-
const BASE_ORIGIN = "awslabs.github.io"
13+
const BASE_ORIGIN = "docs.powertools.aws.dev"
1414

1515
function copyToClipboard(e) {
1616
e.preventDefault()
1717
navigator.clipboard.writeText(e.target.textContent)
18-
alert$.next("Copied to clipboard")
18+
alert$.next("Copied to clipboard")
1919
}
2020

2121
function enableSearchOnBlurElement() {
@@ -74,7 +74,7 @@ const init = () => {
7474
attachListeners()
7575
}
7676

77-
const recordPageView = ({prevLocation, searchPattern}) => {
77+
const recordPageView = ({ prevLocation, searchPattern }) => {
7878
Analytics.record({
7979
data: {
8080
// Do not count page view for search

docs/roadmap.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This is our public roadmap that outlines the high level direction we are working towards, namely [Themes](#themes). We update this document when our priorities change: security and stability is our top priority.
44

5-
[See our latest list of activities »](https://github.com/orgs/awslabs/projects/105/views/4?query=is%3Aopen+sort%3Aupdated-desc){target="_blank"}
5+
[See our latest list of activities »](https://github.com/orgs/aws-powertools/projects/6/views/4?query=is%3Aopen+sort%3Aupdated-desc){target="_blank"}
66

77
## Themes
88

@@ -30,7 +30,7 @@ graph LR
3030
<i>Visual representation</i>
3131
</center>
3232

33-
Within our [public board](https://github.com/orgs/awslabs/projects/105/views/3?query=is%3Aopen+sort%3Aupdated-desc){target="_blank"}, you'll see the following values in the `Status` column:
33+
Within our [public board](https://github.com/orgs/aws-powertools/projects/6/views/4?query=is%3Aopen+sort%3Aupdated-desc){target="_blank"}, you'll see the following values in the `Status` column:
3434

3535
* **Ideas**. Incoming and existing feature requests that are not being actively considered yet. These will be reviewed when bandwidth permits and based on demand.
3636
* **Backlog**. Accepted feature requests or enhancements that we want to work on.

libraries/src/AWS.Lambda.Powertools.Logging/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The logging utility provides a [AWS Lambda](https://aws.amazon.com/lambda/) opti
1111

1212
## Read the docs
1313

14-
For a full list of features go to [docs.powertools.aws.dev/lambda-dotnet/core/logging/](docs.powertools.aws.dev/lambda-dotnet/core/logging/)
14+
For a full list of features go to [docs.powertools.aws.dev/lambda/dotnet/core/logging/](docs.powertools.aws.dev/lambda/dotnet/core/logging/)
1515

1616
GitHub: https://github.com/aws-powertools/powertools-lambda-dotnet/
1717

libraries/src/AWS.Lambda.Powertools.Metrics/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ These metrics can be visualized through [Amazon CloudWatch Console](https://aws.
1313

1414
## Read the docs
1515

16-
For a full list of features go to [docs.powertools.aws.dev/lambda-dotnet/core/metrics/](docs.powertools.aws.dev/lambda-dotnet/core/metrics/)
16+
For a full list of features go to [docs.powertools.aws.dev/lambda/dotnet/core/metrics/](docs.powertools.aws.dev/lambda/dotnet/core/metrics/)
1717

1818
GitHub: https://github.com/aws-powertools/powertools-lambda-dotnet/
1919

libraries/src/AWS.Lambda.Powertools.Parameters/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The Parameters utility provides high-level functionality to retrieve one or mult
1111

1212
## Read the docs
1313

14-
For a full list of features go to [docs.powertools.aws.dev/lambda-dotnet/utilities/parameters/](docs.powertools.aws.dev/lambda-dotnet/utilities/parameters/)
14+
For a full list of features go to [docs.powertools.aws.dev/lambda/dotnet/utilities/parameters/](docs.powertools.aws.dev/lambda/dotnet/utilities/parameters/)
1515

1616
GitHub: <https://github.com/aws-powertools/powertools-lambda-dotnet/>
1717

libraries/src/AWS.Lambda.Powertools.Tracing/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ a provides functionality to reduce the overhead of performing common tracing tas
1313

1414
## Read the docs
1515

16-
For a full list of features go to [docs.powertools.aws.dev/lambda-dotnet/core/tracing/](docs.powertools.aws.dev/lambda-dotnet/core/tracing/)
16+
For a full list of features go to [docs.powertools.aws.dev/lambda/dotnet/core/tracing/](docs.powertools.aws.dev/lambda/dotnet/core/tracing/)
1717

1818
**GitHub:** https://github.com/aws-powertools/powertools-lambda-dotnet/
1919

@@ -129,4 +129,4 @@ public class Function
129129

130130
## Sample output
131131

132-
![Tracing showcase](http://docs.powertools.aws.dev/lambda-dotnet/media/tracer_utility_showcase.png)
132+
![Tracing showcase](http://docs.powertools.aws.dev/lambda/dotnet/media/tracer_utility_showcase.png)

0 commit comments

Comments
 (0)