Global Log Receiver
Global Log Receiver provides tools for creating, listing, retrieving, updating, and deleting resources in F5 Distributed Cloud.
| Tool | Description |
|---|---|
f5xc-api-statistics-global-log-receiver-create | Create Global Log Receiver. |
f5xc-api-statistics-global-log-receiver-get | Get Global Log Receiver. |
f5xc-api-statistics-global-log-receiver-list | List Global Log Receiver. |
f5xc-api-statistics-global-log-receiver-update | Update Global Log Receiver. |
f5xc-api-statistics-global-log-receiver-delete | Delete Global Log Receiver. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace This defines the workspace within which each the configuration object is to be created. | system |
name | Name The name of the configuration object to be fetched. | example-resource |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
response_format | The format in which the configuration object is to be fetched. This could be for example - in GetSpec form for the contents of object… | GET_RSP_FORMAT_DEFAULT |
label_filter | A LabelSelectorType expression that every item in list response will satisfy. | - |
report_fields | The report_fields parameter… | - |
report_status_fields | The report_status_fields parameter… | - |
Configuration Choices
Section titled “Configuration Choices”This resource includes mutually exclusive configuration options:
filter_choice
Section titled “filter_choice”| Option | Description | Recommended |
|---|---|---|
spec.ns_all | Ns all | |
spec.ns_current | Ns current | |
spec.ns_list | Ns list |
log_type
Section titled “log_type”| Option | Description | Recommended |
|---|---|---|
spec.audit_logs | Audit logs | |
spec.dns_logs | Dns logs | |
spec.request_logs | Request logs | |
spec.security_events | Security events |
receiver
Section titled “receiver”| Option | Description | Recommended |
|---|---|---|
spec.aws_cloud_watch_receiver | Aws cloud watch receiver | |
spec.azure_event_hubs_receiver | Azure event hubs receiver | |
spec.azure_receiver | Azure receiver | |
spec.datadog_receiver | Datadog receiver | |
spec.gcp_bucket_receiver | Gcp bucket receiver | |
spec.http_receiver | Http receiver | |
spec.kafka_receiver | Kafka receiver | |
spec.new_relic_receiver | New relic receiver | |
spec.qradar_receiver | Qradar receiver | |
spec.s3_receiver | S3 receiver | |
spec.splunk_receiver | Splunk receiver | |
spec.sumo_logic_receiver | Sumo logic receiver |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Global Log Receiver resources:
Create Global Log Receiver
Section titled “Create Global Log Receiver”“Create a global-log-receiver named ‘example’ in the ‘production’ namespace”
List Global Log Receivers
Section titled “List Global Log Receivers”“List all global-log-receivers in the ‘production’ namespace”
Get Global Log Receiver Details
Section titled “Get Global Log Receiver Details”“Get details of the global-log-receiver named ‘example’ in namespace ‘production‘“
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/$${PARAM}/global_log_receivers" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"
# Get specific resourcecurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/$${PARAM}/global_log_receivers/$${PARAM}" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"
# Create resourcecurl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/$${PARAM}/global_log_receivers" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @global_log_receiver.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/$${PARAM}/global_log_receivers/$${PARAM}" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"