-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(kafka-logger): supports logging request body #5501
Merged
Merged
Changes from 1 commit
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
613c19e
feat(kafka-logger) kafka logger supports logging request body (#5343)
acb54e3
reindex
fb04109
optimize
d922ffd
change test kafka topic test2
3e867ea
optimize
f691471
optimize test
d82854c
lint
a017631
optimize
7ea1b17
optimize
d31a5ab
lint
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ local log_util = require("apisix.utils.log-util") | |
local producer = require ("resty.kafka.producer") | ||
local batch_processor = require("apisix.utils.batch-processor") | ||
local plugin = require("apisix.plugin") | ||
local expr = require("resty.expr.v1") | ||
|
||
local math = math | ||
local pairs = pairs | ||
|
@@ -76,6 +77,7 @@ local schema = { | |
include_req_body = {type = "boolean", default = false}, | ||
include_req_body_expr = { | ||
type = "array", | ||
minItems = 1, | ||
items = { | ||
type = "array", | ||
items = { | ||
|
@@ -107,6 +109,14 @@ local _M = { | |
|
||
|
||
function _M.check_schema(conf, schema_type) | ||
|
||
if conf.vars then | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should be |
||
local ok, err = expr.new(conf.vars) | ||
if not ok then | ||
return nil, {error_msg = "failed to validate the 'vars' expression: " .. err} | ||
end | ||
end | ||
|
||
if schema_type == core.schema.TYPE_METADATA then | ||
return core.schema.check(metadata_schema, conf) | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Before we can merge it, could you add a check for the expr in the
check_schema
? Like:apisix/apisix/plugins/response-rewrite.lua
Line 111 in 9b355c6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done