- Home
- API MCP Server
- tools
- sites
- networking
- Log
Log
Request to GET external connector logs that matches the criteria in request for a given namespace. The logs are per site per external connector is specified as match condition in the request to GET the logs for a external connector.
| Tool | Description |
|---|---|
f5xc-api-sites-log-create | External connector log query. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
external_connector | External connector | - |
namespace | Namespace | - |
site | Site | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Log resources:
Create Log
Section titled “Create Log”“Create a log named ‘example’ in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/logs" \ -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}/logs/<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}/logs" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @log.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/logs/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"