Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pcx_content_type: faq
title: FAQs
structured_data: true
sidebar:
order: 3
order: 6
description: Commonly asked questions about Cloudflare's Customer Metadata Boundary.
---

Expand Down Expand Up @@ -35,4 +35,4 @@ The Customer Metadata Boundary is for customers who want to limit personal data

HTTP and Firewall analytics are available.

At the moment, there are no analytics available for Workers, DNS, Network Analytics, Load Balancing and Rate Limiting. Additionally, there are no dashboard logs or analytics for [Gateway](/cloudflare-one/insights/logs/gateway-logs/#limitations). Enterprise users can still export Gateway logs via [Logpush](/cloudflare-one/insights/logs/logpush/).
At the moment, there are no analytics available for Workers, DNS, and Load Balancing. Additionally, there are no dashboard logs or analytics for [Gateway](/cloudflare-one/insights/logs/gateway-logs/#limitations). Enterprise users can still export Gateway logs via [Logpush](/cloudflare-one/insights/logs/logpush/).
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
title: Get started
pcx_content_type: get-started
sidebar:
order: 1

order: 2
---

import { Details } from "~/components"
import { Details } from "~/components";

You can configure the Metadata Boundary to select the region where your logs and analytics are stored via API or dashboard.

Expand All @@ -28,7 +27,6 @@ Currently, only SuperAdmins and Admin roles can edit DLS configurations. Use the

These are some examples of API requests.


<Details header="Get current regions">

Here is an example request using cURL to get current regions (if any):
Expand All @@ -40,18 +38,17 @@ curl -s -D "/dev/stderr" https://api.cloudflare.com/client/v4/accounts/<ACCOUNT_
| jq '.'
```


</Details>


<Details header="Setting regions">

Here is an example request using cURL to set regions:

```bash
curl -s -D "/dev/stderr" https://api.cloudflare.com/client/v4/accounts/<ACCOUNT_ID>/logs/control/cmb/config -X POST -d '
{
"regions": "eu"
"regions": "eu",
"allow_out_of_region_access": false
}
' \
-H "X-Auth-Email: <EMAIL>" \
Expand All @@ -63,10 +60,8 @@ curl -s -D "/dev/stderr" https://api.cloudflare.com/client/v4/accounts/<ACCOUNT_
This will overwrite any previous regions.
Change will be in effect after several minutes.


</Details>


<Details header="Delete regions">

Here is an example request using cURL to delete regions:
Expand All @@ -78,7 +73,6 @@ curl -s -D "/dev/stderr" https://api.cloudflare.com/client/v4/accounts/<ACCOUNT_
| jq '.'
```


</Details>

## View or change settings
Expand Down
Loading
Loading