- Home
- API MCP Server
- tools
- observability
- other
- Scroll
Scroll
The response for access log query contain no more than 500 records. Scroll request is used scroll through more than 500 records or all records that matched the criteria in the access log query in multiple batches. EOF is indicated by empty scroll_id in the response.
| Tool | Description |
|---|---|
f5xc-api-observability-scroll-create | Access Log Scroll Query. |
f5xc-api-observability-scroll-list | Access Log Scroll Query. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
scroll_id | Long Base-64 encoded string which can be used to retrieve next batch of log messages. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Scroll resources:
Create Scroll
Section titled “Create Scroll”“Create a scroll named ‘example’ in the ‘production’ namespace”
List Scrolls
Section titled “List Scrolls”“List all scrolls in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/scrolls" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Get specific resourcecurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/scrolls/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Create resourcecurl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/scrolls" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @scroll.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/scrolls/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"