Files
2026-07-13 12:32:21 +08:00

21 lines
1.4 KiB
Lua

local typedefs = require "kong.db.schema.typedefs"
return {
name = "tcp-log",
fields = {
{ protocols = typedefs.protocols },
{ config = {
type = "record",
fields = {
{ host = typedefs.host({ required = true, description = "The IP address or host name to send data to." }), },
{ port = typedefs.port({ required = true, description = "The port to send data to on the upstream server." }), },
{ timeout = { description = "An optional timeout in milliseconds when sending data to the upstream server.", type = "number", default = 10000, }, },
{ keepalive = { description = "An optional value in milliseconds that defines how long an idle connection lives before being closed.", type = "number", default = 60000, }, },
{ tls = { description = "Indicates whether to perform a TLS handshake against the remote server.", type = "boolean", required = true, default = false, }, },
{ tls_sni = { description = "An optional string that defines the SNI (Server Name Indication) hostname to send in the TLS handshake.", type = "string", }, },
{ custom_fields_by_lua = typedefs.lua_code({ description = "A list of key-value pairs, where the key is the name of a log field and the value is a chunk of Lua code, whose return value sets or replaces the log field value." }), },
},
}, },
}
}