Skip to content

Global Log Receiver

Replaces the content of an Global Log Receiver object.

ToolDescription
f5xc-api-statistics-global-log-receiver-createCreate Global Log Receiver.
f5xc-api-statistics-global-log-receiver-getGET Global Log Receiver.
f5xc-api-statistics-global-log-receiver-listList Global Log Receiver.
f5xc-api-statistics-global-log-receiver-updateReplace Global Log Receiver.
f5xc-api-statistics-global-log-receiver-deleteDELETE Global Log Receiver.
ParameterDescriptionExample
metadata.namespaceNamespace-
nameName-
namespaceNamespace-
metadata.nameName-
ParameterDescriptionExample
response_formatThe format in which the configuration object is to be fetched. This could be for example-
label_filterA LabelSelectorType expression that every item in list response will satisfy.-
report_fieldsThe report_fields parameter-
report_status_fieldsThe report_status_fields parameter-

This resource includes mutually exclusive configuration options:

OptionDescriptionRecommended
spec.ns_all-
spec.ns_current-
spec.ns_list-
OptionDescriptionRecommended
spec.audit_logs-
spec.dns_logs-
spec.request_logs-
spec.security_events-
OptionDescriptionRecommended
spec.aws_cloud_watch_receiver-
spec.azure_event_hubs_receiver-
spec.azure_receiver-
spec.datadog_receiver-
spec.gcp_bucket_receiver-
spec.http_receiver-
spec.kafka_receiver-
spec.new_relic_receiver-
spec.qradar_receiver-
spec.s3_receiver-
spec.splunk_receiver-
spec.sumo_logic_receiver-
OptionDescriptionRecommended
spec.aws_cloud_watch_receiver.batch.max_bytes-
spec.aws_cloud_watch_receiver.batch.max_bytes_disabled-
OptionDescriptionRecommended
spec.aws_cloud_watch_receiver.batch.max_events-
spec.aws_cloud_watch_receiver.batch.max_events_disabled-
OptionDescriptionRecommended
spec.aws_cloud_watch_receiver.batch.timeout_seconds-
spec.aws_cloud_watch_receiver.batch.timeout_seconds_default-
OptionDescriptionRecommended
spec.aws_cloud_watch_receiver.compression.compression_default-
spec.aws_cloud_watch_receiver.compression.compression_gzip-
spec.aws_cloud_watch_receiver.compression.compression_none-
OptionDescriptionRecommended
spec.azure_event_hubs_receiver.connection_string.blindfold_secret_info-
spec.azure_event_hubs_receiver.connection_string.clear_secret_info-
OptionDescriptionRecommended
spec.azure_receiver.filename_options.custom_folder-
spec.azure_receiver.filename_options.log_type_folder-
spec.azure_receiver.filename_options.no_folder-
OptionDescriptionRecommended
spec.datadog_receiver.endpoint-
spec.datadog_receiver.site-
OptionDescriptionRecommended
spec.datadog_receiver.no_tls-
spec.datadog_receiver.use_tls-
OptionDescriptionRecommended
spec.datadog_receiver.use_tls.no_ca-
spec.datadog_receiver.use_tls.trusted_ca_url-
OptionDescriptionRecommended
spec.datadog_receiver.use_tls.mtls_disabled-
spec.datadog_receiver.use_tls.mtls_enable-
OptionDescriptionRecommended
spec.datadog_receiver.use_tls.disable_verify_certificate-
spec.datadog_receiver.use_tls.enable_verify_certificate-
OptionDescriptionRecommended
spec.datadog_receiver.use_tls.disable_verify_hostname-
spec.datadog_receiver.use_tls.enable_verify_hostname-
OptionDescriptionRecommended
spec.http_receiver.auth_basic-
spec.http_receiver.auth_none-
spec.http_receiver.auth_token-

Ask Claude to help you work with Global Log Receiver resources:

“Create a global-log-receiver named ‘example’ in the ‘production’ namespace”

“List all global-log-receivers in the ‘production’ namespace”

“Get details of the global-log-receiver named ‘example’ in namespace ‘production‘“

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/global_log_receivers" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Get specific resource
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/global_log_receivers/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/global_log_receivers" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @global_log_receiver.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/global_log_receivers/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"