|
1 |
| -<!-- |
2 |
| -title: Setting Up Serverless Framework With AWS |
3 |
| -layout: Doc |
4 |
| ---> |
5 |
| - |
6 | 1 | # Setting Up Serverless Framework With AWS
|
7 | 2 |
|
8 | 3 | Get started with Serverless Framework’s open-source CLI and Amazon Web Services in minutes.
|
@@ -33,7 +28,6 @@ The `serverless` command will guide you to:
|
33 | 28 |
|
34 | 29 | 1. Create a new project
|
35 | 30 | 2. Configure your [AWS credentials](https://serverless.com/framework/docs/providers/aws/guide/credentials/)
|
36 |
| -3. Optionally set up a free Serverless Framework account with additional features. |
37 | 31 |
|
38 | 32 | Your new serverless project will contain a `serverless.yml` file. This file features simple syntax for deploying infrastructure to AWS, such as AWS Lambda functions, infrastructure that triggers those functions with events, and additional infrastructure your AWS Lambda functions may need for various use-cases. You can learn more about this in the [Core Concepts documentation](https://www.serverless.com/framework/docs/providers/aws/guide/intro).
|
39 | 33 |
|
@@ -122,27 +116,6 @@ Serverless Framework also has a great plugin that allows you to run a server loc
|
122 | 116 |
|
123 | 117 | More details on the **serverless-offline** plugins command can be found [here](https://github.com/dherault/serverless-offline)
|
124 | 118 |
|
125 |
| -## Monitoring & Observability |
126 |
| - |
127 |
| -Monitoring AWS Lambda and its other resources dependencies can be challenging (especially as your number of resources grow). This generally involves jumping around various services and products within AWS Cloudwatch. |
128 |
| - |
129 |
| -Fortunately, we've delivered a consolidated and elegant solution to monitoring AWS Lambda in [Serverless Console](https://console.serverless.com). You'll get a bunch of delightful features out of the box: |
130 |
| - |
131 |
| -- Start monitoring automatically, with no code instrumentation required. |
132 |
| -- Monitor everything via a consolidated Metrics view for all of your AWS Lambda functions across AWS accounts, regions and more. |
133 |
| -- Troubleshoot any invocation by querying rich tags that are automatically added by Serverless Console. |
134 |
| -- Understand issues via detailed Traces detailing what happened within your AWS Lambda invocation. |
135 |
| -- Capture Errors, Warnings and more. |
136 |
| -- Stream Logs and other telemetry instantly while you develop via the Dev Mode user interface. |
137 |
| - |
138 |
| -To set up Serverless Console automatically, run: |
139 |
| - |
140 |
| -```bash |
141 |
| -sls --console |
142 |
| -``` |
143 |
| - |
144 |
| -Serverless Console is designed for developers, and it moves at their speed. |
145 |
| - |
146 | 119 | ## Remove Your Service
|
147 | 120 |
|
148 | 121 | If you want to delete your service, run `remove`. This will delete all the AWS resources created by your project and ensure that you don't incur any unexpected charges. It will also remove the service from Serverless Dashboard.
|
|
0 commit comments