Add Console and Limits and billing pages for Lightpanda Cloud#75
Add Console and Limits and billing pages for Lightpanda Cloud#75cdebled wants to merge 3 commits into
Console and Limits and billing pages for Lightpanda Cloud#75Conversation
cdebled
commented
Jul 22, 2026
- Add a new Console how-to page documenting the Lightpanda Cloud web console
- Add a new Limits and billing page covering usage limits and billing details
- Expand Getting started with more detail
|
|
||
| You will receive an invitation by email to generate your token. | ||
| Be careful to save your token, we won't display it again. | ||
| Sign up at [console.lightpanda.io/signup](https://console.lightpanda.io/signup). After you sign up, you receive an email with a link to generate your API token. The link is valid for 7 days. |
There was a problem hiding this comment.
| Sign up at [console.lightpanda.io/signup](https://console.lightpanda.io/signup). After you sign up, you receive an email with a link to generate your API token. The link is valid for 7 days. | |
| Sign up at [console.lightpanda.io/signup](https://console.lightpanda.io/signup). After you sign up, you receive an email with a link to generate your API token. |
I wouldn't mention the links validity here.
| ```sh copy | ||
| export LPD_TOKEN="your token here" | ||
| ``` | ||
|
|
There was a problem hiding this comment.
Maybe it worth mentioning we have a tool in the console to help you configure the connection URL: https://console.lightpanda.io/tools/script-generator
|
|
||
| Example using [Playwright](https://playwright.dev/). | ||
| ```sh copy | ||
| export LPD_TOKEN="your token here" |
There was a problem hiding this comment.
I would move the env var export on each puppeteer/chromedp/playwright tabs, b/c we don't use it for CDP URL and it doesn't make sense for this sepcific (but default) tab.
|
|
||
| ### Endpoints and browser | ||
|
|
||
| Connect to the region nearest you: |
There was a problem hiding this comment.
nearest your script (it could be nearest you or nearest your server...)
| - `wss://euwest.cloud.lightpanda.io/ws` (west Europe) | ||
| - `wss://uswest.cloud.lightpanda.io/ws` (west US) | ||
|
|
||
| The cloud serves Lightpanda by default. Add `browser=chrome` to run Google Chrome instead, or `browser=lightpanda` to force Lightpanda. To route traffic through a proxy, see [Configure a proxy](/guides/configure-a-proxy). |
There was a problem hiding this comment.
I don't think we should mention chrome. Or we must add chrome is offered for debug purpose only.
| A token is shown once, when you create it. Save it somewhere safe. If you lose it, revoke it and create a new one. | ||
| </Callout> | ||
|
|
||
| **Sessions and logs.** Every browser you run on the cloud is a session. The console lists your recent sessions and lets you open one to inspect what happened, including its CDP logs and container logs. Reach for this when a script behaves differently on the cloud than it did locally, or when a session ends earlier than you expect. |
There was a problem hiding this comment.
CDP Logs are available only for Chrome for now. I won't mention it here.