
- Actions: Perform quick actions, such as stopping or starting an application, editing its configuration, or deleting the application from the Customer Portal.
- Template name: If the application was created from a template, view the template and its configuration
- Metrics: Check response statuses for requests to the FastEdge servers and analyze runtime duration data.
- Logs: View and enable application logs.
- Response Headers: Headers added to every response.
- Environment Variables: Update or add environment variables.
- Secrets: Update or add secrets (encrypted environment variables).
- Edge Storage: Update or add Edge Storage (key-value storage).

Stop or start an application
You can change the running state of your application and decide if you want to have it running and processing requests, or stopped. The latter might be useful if you need to update the application’s configuration or want to upload a new version of the application’s binary file. An application can be stopped for the following reasons:- You manually stopped it, as described in the following instructions. You can restart the application at any time.
- Payment for the product was unsuccessful. In this case, the application cannot be reactivated until payment is completed.

View and enable logging
If you want to record logs for your FastEdge application, make sure that you have the Enable logging toggle enabled.
- Timestamp. Choose the date and time when the logs have been recorded. By default, the table displays data for the past hour.
- Client IP address. View logs collected for a particular IP.
- Edge name. Search within the Logs column.
Response Headers
On the Response Headers tab, you can update or enhance the functionality of your application by adding or modifying HTTP response headers. These Response Headers will be added to every response. For example, you may include CORS (cross-origin resource sharing) headers in each response to ensure secure communication between origins.
Environment Variables
On the Environment Variables tab, you can update or enhance the functionality of your application by adding or modifying environment variables. For example, the following screenshots illustrate the configuration for a geo-location application. Environment variables are set based on the geo-IP of the client making the request. With this configuration, users will view different versions of a website based on their location.
InfoBy using our FastEdge SDK Javascript or FastEdge SDK Rust, you can configure these variables according to your use cases.
Secrets
On the Secrets tab, you can update or enhance the functionality of your application by adding or modifying secrets.
- ACCESS_KEY - name as defined in the application.
- S3_ACCESS_TOKEN_BINARY_DUMP - secret that is linked to the application.
InfoBy using our Javascript SDK or Rust SDK, you can configure these secrets according to your use cases.
Edge Storage
On the Edge Storage tab, you can update or enhance the functionality of your application by adding or modifying edge storage.
- BLACKLIST - name as defined in the application.
- KNOWN_BAD_IP_ADDRESSES - storage that is linked to the application.
Store::open("BLACKLIST") as this is the name as defined within the application.
InfoBy using our Javascript SDK or Rust SDK, you can configure the Edge Storage according to your use cases.