Skip to content

Commit 477381a

Browse files
chore: update and fix relative links (#12720)
1 parent 2ed271e commit 477381a

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

docs/guides/dashboard/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ For Serverless Framework's new Observability offering, you must use version 3.35
3939

4040
If you don't already have a Serverless Framework account, create a new account at [https://app.serverless.com](https://app.serverless.com).
4141

42-
If you don't have existing Serverless Framework Services, follow the [Getting Started with the Serverless Framework and AWS](/framework/docs/getting-started/) guide. This will help you get a Serverless Framework Service deployed to AWS, and enabled with the Dashboard.
42+
If you don't have existing Serverless Framework Services, follow the [Getting Started with the Serverless Framework and AWS](../../getting-started.md) guide. This will help you get a Serverless Framework Service deployed to AWS, and enabled with the Dashboard.
4343

4444
If you have existing Serverless Framework Services, in the directory with your Service's `serverless.yml` file, run the `serverless` command. This will walk you through the setup process, including setting up your AWS account credentials and creating an organization and application from the Dashboard. Once completed, you'll notice that the `org` and `app` fields will be added to your `serverless.yml` to indicate the org/app to which this service belongs.
4545

docs/guides/dashboard/cicd/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Before you setup your CI/CD workflow, make sure you meet the following requireme
3939

4040
As is the case with deployments from the Serverless Framework CLI, Serverless CI/CD requires access to your AWS Account in order to deploy your services. To make this process as secure as possible, Serverless CI/CD will generate short-lived credentials to your AWS account on each deployment. This is done by creating an AWS Access Role in your AWS account and associating it with a Provider in the Serverless Framework Dashboard.
4141

42-
If you’ve already set up an AWS Access Role with a Provider, you can skip this step. Otherwise, please go through the instructions on our [Provider documentation page](../../dashboard/providers.md) to help set one up.
42+
If you’ve already set up an AWS Access Role with a Provider, you can skip this step. Otherwise, please go through the instructions on our [Provider documentation page](../dashboard/providers.md) to help set one up.
4343

4444
### Step 2: Connect to Github
4545

docs/guides/dashboard/cicd/branch-deployments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ To add a new branch deployment, in the "branch deploys" section of the CI/CD set
2929

3030
## Add a stage to a branch deployment
3131

32-
If you are a first time user, the stage list may be empty. You must first [create a new deployment profile](/framework/docs/dashboard/profiles#creating-a-new-deployment-profile), and [add the deployment profile to a stage in your application](/framework/docs/dashboard/profiles#add-a-deployment-profile-to-your-application-and-stage). As mentioned in the requirements section, the deployment profile must also have an [AWS Access Role](/framework/docs/dashboard/access-roles/).
32+
You can assign a stage to each branch deployment, but ensure that a valid provider is set for this service.

docs/guides/dashboard/monitoring/metrics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@ saved as a shared views to collaborate with team mates on specific searches.
8181
- **Events** - Individual invocations may produce multiple errors or warnings.
8282
The Serverless SDK may also produce errors and warnings. Filtering by Events
8383
enables filtering for invocations which include any of the selected Event types.
84-
You can find more details about Event types on the [Trace Explorer](./trace-explorer.md).
84+
You can find more details about Event types on the [Trace Explorer](./traces#event-types.md).
8585
- **Cold start** - Filters for metrics on AWS Lambda invocations that were a
8686
cold start.
8787
- **Duration** - Filters based on the AWS Lambda response duration.
8888
- **Custom Tags** - Filters for metrics on invocations that had the provided
8989
custom tags. Custom tags on traces, errors, and warnings are all queried. Use
90-
the [Node.js](../nodejs-sdk.md) or [Python](./python-sdk.md) Serverless SDK to
90+
the [Node.js](./sdk/nodejs.md) or [Python](./sdk/python.md) Serverless SDK to
9191
set custom tags.

docs/guides/dashboard/monitoring/sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ It also has certain features you can use directly in your lambda such as capturi
3232
## Advanced Span Configuration
3333

3434
For most of the SDK configuration, like turning on/off span collection, follow the
35-
[Monitoring Configuration](../monitoring/#configuration) instructions to modify your
35+
[Monitoring Configuration](../README.md/#configuration) instructions to modify your
3636
serverless.yml appropriately.
3737

3838
If needed, you can configure HTTP span collection with the following environment variables

docs/guides/variables/README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,19 @@ You can define your own variable syntax (regex) if it conflicts with CloudFormat
4040

4141
## Current variable sources:
4242

43-
- [Self-References Properties Defined in `serverless.yml`](/framework/docs/guides/variables/self)
44-
- [Serverless Core Variables](/framework/docs/guides/variables/core)
45-
- [Environment Variables](/framework/docs/guides/variables/env-vars)
46-
- [CLI Options](/framework/docs/guides/variables/cli-options)
47-
- [External YAML/JSON Files](/framework/docs/guides/variables/file)
48-
- [Dynamic Values from Javascript](/framework/docs/guides/variables/javascript)
49-
- [Git](/framework/docs/guides/variables/git)
50-
- [AWS-specific](/framework/docs/guides/variables/aws)
51-
- [AWS S3](/framework/docs/guides/variables/s3)
52-
- [AWS SSM Parameter Store & Secrets Manager](/framework/docs/guides/variables/ssm)
53-
- [AWS CloudFormation Outputs](/framework/docs/guides/variables/cf-stack)
54-
- [HashiCorp Terraform State Outputs](/framework/docs/guides/variables/terraform)
55-
- [HashiCorp Vault Secrets](/framework/docs/guides/variables/vault)
43+
- [Self-References Properties Defined in `serverless.yml`](./self)
44+
- [Serverless Core Variables](./core)
45+
- [Environment Variables](./env-vars)
46+
- [CLI Options](./cli-options)
47+
- [External YAML/JSON Files](./file)
48+
- [Dynamic Values from Javascript](./javascript)
49+
- [Git](./git)
50+
- [AWS-specific](./aws)
51+
- [AWS S3](./s3)
52+
- [AWS SSM Parameter Store & Secrets Manager](./ssm)
53+
- [AWS CloudFormation Outputs](./cf-stack)
54+
- [HashiCorp Terraform State Outputs](./terraform)
55+
- [HashiCorp Vault Secrets](./vault)
5656

5757
## Recursively reference properties
5858

docs/guides/workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ serverless deploy function -f [FUNCTION NAME] -s [STAGE NAME] -r [REGION NAME]
7979

8080
Use this to easily develop your AWS Lambda Functions locally. This will run your AWS Lambda Functions locally and allow you to send events to them on AWS.
8181

82-
Currently this is only supported for Node.js. Learn more about the [dev command](/framework/docs/providers/aws/cli-reference/dev).
82+
Currently this is only supported for Node.js. Learn more about the [dev command](../providers/aws/cli-reference/dev.md).
8383

8484
```bash
8585
serverless dev

0 commit comments

Comments
 (0)