You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some cases APISIX users might want to customize the max size of request/response body sent to HTTP server via http-logger plugin to be lower/higher than the current default value of 512KiB.
kafka-logger plugin already supports max_resp_body_bytes and max_req_body_bytes attributes, so I followed the example and added them in this PR.
The text was updated successfully, but these errors were encountered:
From the current code, these properties are defined in public functions with #11133
It looks like other log-like plugins can configure these settings directly, but for APISIX, do we need to standardize the documentation of other log plugins and add relevant tests?
Description
In some cases APISIX users might want to customize the max size of request/response body sent to HTTP server via
http-logger
plugin to be lower/higher than the current default value of 512KiB.kafka-logger
plugin already supportsmax_resp_body_bytes
andmax_req_body_bytes
attributes, so I followed the example and added them in this PR.The text was updated successfully, but these errors were encountered: