-
Notifications
You must be signed in to change notification settings - Fork 10k
[Queues] Use DashButton component #24935
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,7 +8,7 @@ head: | |
| content: Cloudflare Queues - Pull consumers | ||
| --- | ||
|
|
||
| import { WranglerConfig } from "~/components"; | ||
| import { WranglerConfig, DashButton } from "~/components"; | ||
|
|
||
| A pull-based consumer allows you to pull from a queue over HTTP from any environment and/or programming language outside of Cloudflare Workers. A pull-based consumer can be useful when your message consumption rate is limited by upstream infrastructure or long-running tasks. | ||
|
|
||
|
|
@@ -102,7 +102,8 @@ You may authenticate and run multiple concurrent pull-based consumers against a | |
|
|
||
| To create an API token: | ||
|
|
||
| 1. Go to the API tokens page of the [Cloudflare dashboard](https://dash.cloudflare.com/profile/api-tokens/). | ||
| 1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com). | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not account level, but still updating it to be consistent. |
||
| 2. Go to **My Profile** > [API Tokens](https://dash.cloudflare.com/profile/api-tokens). | ||
| 2. Select **Create Token**. | ||
| 3. Scroll to the bottom of the page and select **Create Custom Token**. | ||
| 4. Give the token a name. For example, `queue-pull-token`. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,14 +5,17 @@ sidebar: | |
| order: 10 | ||
| --- | ||
|
|
||
| import { DashButton } from "~/components"; | ||
|
|
||
| [Audit logs](/fundamentals/account/account-security/review-audit-logs/) provide a comprehensive summary of changes made within your Cloudflare account, including those made to Queues. This functionality is always enabled. | ||
|
|
||
| ## Viewing audit logs | ||
|
|
||
| To view audit logs for your Queue: | ||
|
|
||
| 1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/?account=audit-log) and select your account. | ||
| 2. Go to **Manage Account** > **Audit Log**. | ||
| 1. In the Cloudflare dashboard, go to the **Audit logs** page. | ||
|
|
||
| <DashButton url="/?to=/:account/audit-log" /> | ||
|
|
||
|
||
| For more information on how to access and use audit logs, refer to [Review audit logs](/fundamentals/account/account-security/review-audit-logs/). | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,17 @@ | ||
| --- | ||
| {} | ||
|
|
||
| --- | ||
|
|
||
| import { DashButton } from "~/components"; | ||
|
|
||
| Queues are included in the monthly subscription cost of your Workers Paid plan, and charges based on operations against your queues. Refer to [Pricing](/queues/platform/pricing/) for more details. | ||
|
|
||
| Before you can use Queues, you must enable it via [the Cloudflare dashboard](https://dash.cloudflare.com/?to=/:account/workers/queues). You need a Workers Paid plan to enable Queues. | ||
|
|
||
| To enable Queues: | ||
|
|
||
| 1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com). | ||
| 2. Go to **Workers & Pages** > **Queues**. | ||
| 3. Select **Enable Queues**. | ||
| 1. In the Cloudflare dashboard, go to the **Queues** page. | ||
|
|
||
| <DashButton url="/?to=/:account/workers/queues" /> | ||
|
|
||
| 2. Select **Enable Queues**. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reverts change done in #24932 -- we need to create a User API Token after all, not an Account API Token.