Skip to content

Agent Proxy generates workload events for the following protocols and technologies:

  • HTTP
  • Snowflake
  • MCP
  • PostgreSQL
  • Amazon Redshift
  • MySQL and MariaDB
  • Oracle Database
  • Redis
  • TCP Passthrough

This page lists the application fields Agent Proxy records for each protocol, split by request and response event. For the common fields that every event shares, see the Workload Event reference. For a conceptual overview, see Workload Events.

The Presence column indicates whether Agent Proxy always includes the field (Always) or includes it only under certain conditions (Optional).

HTTP fields appear under application.http. Snowflake events are HTTP-based queries to Snowflake endpoints and use the same fields, under application.snowflake.

Request fields:

FieldPresenceDescription
httpMethodAlwaysHTTP method, such as GET or POST.
httpVersionAlwaysHTTP version, such as HTTP/1.1.
uriAlwaysRequested URI, with the query string removed to avoid recording sensitive values.
headersAlwaysA list of single-key objects, each a header name and value, with sensitive headers redacted.

Response fields:

FieldPresenceDescription
httpVersionAlwaysHTTP version, such as HTTP/1.1.
headersAlwaysA list of single-key objects, each a header name and value, with sensitive headers redacted.
httpResponseCodeAlwaysHTTP response status code, such as 200 or 404.
Example application.http block
"application": {
"http": {
"httpMethod": "GET",
"httpVersion": "HTTP/1.1",
"uri": "/v2/accounts",
"headers": [
{"content-type": "application/json"},
{"host": "api.example.com"}
],
"httpResponseCode": 200
}
}

MCP events use the HTTP-based fields under application.mcp, plus MCP-specific fields.

Request fields:

FieldPresenceDescription
httpMethodAlwaysHTTP method, such as POST.
httpVersionAlwaysHTTP version, such as HTTP/1.1.
uriAlwaysRequested URI, with the query string removed to avoid recording sensitive values.
headersAlwaysA list of single-key objects, each a header name and value, with sensitive headers redacted.
mcpMethodAlwaysThe MCP method for the request, such as tools/list or tools/call.
mcpSessionIdAlwaysThe MCP session ID, shared across requests and responses in the same session.
mcpProtocolVersionOptionalThe negotiated MCP protocol version, when available.
mcpServerNameOptionalThe name of the target MCP server, when available.
mcpToolNameOptionalThe tool invoked, on tools/call requests.
mcpRequestIdOptionalThe MCP request identifier, used to correlate a response with its request.
userIdOptionalThe user identity for MCP flows that involve a human identity, matching the User (MCP App Protocol only) filter.

Response fields:

FieldPresenceDescription
httpVersionAlwaysHTTP version, such as HTTP/1.1.
headersAlwaysA list of single-key objects, each a header name and value, with sensitive headers redacted.
httpResponseCodeAlwaysHTTP response status code, such as 200 or 404.
mcpMethodAlwaysThe MCP method the response corresponds to, such as tools/list or tools/call.
mcpSessionIdAlwaysThe MCP session ID, shared across requests and responses in the same session.
mcpProtocolVersionOptionalThe negotiated MCP protocol version, when available.
mcpServerNameOptionalThe name of the target MCP server, when available.
mcpRequestIdOptionalThe MCP request identifier, used to correlate the response with its request.
Example application.mcp block
"application": {
"mcp": {
"httpMethod": "POST",
"httpVersion": "HTTP/1.1",
"uri": "/mcp/v1/tools/call",
"headers": [
{"content-type": "application/json"},
{"host": "mcp.example.com"}
],
"mcpMethod": "tools/call",
"mcpSessionId": "3d9c1e77-5b42-4c8a-9f16-2a7e8b0d4c31",
"mcpProtocolVersion": "2025-06-18",
"mcpServerName": "example-mcp-server",
"mcpToolName": "search_records",
"mcpRequestId": "42",
"userId": "alice@example.com"
}
}

PostgreSQL fields appear under application.postgres. Amazon Redshift uses the same fields, under application.redshift. Request and response events carry the same fields; the value of message.type differs by direction.

Request fields:

FieldPresenceDescription
protocolVersionOptionalThe PostgreSQL wire protocol version.
userOptionalThe database user.
databaseOptionalThe target database name.
message.typeAlwaysThe protocol message type, such as Query.
tls.versionOptionalThe negotiated TLS version, such as TLSv1.2.

Response fields:

FieldPresenceDescription
protocolVersionOptionalThe PostgreSQL wire protocol version.
userOptionalThe database user.
databaseOptionalThe target database name.
message.typeAlwaysThe protocol message type.
tls.versionOptionalThe negotiated TLS version, such as TLSv1.2.
Example application.postgres block
"application": {
"postgres": {
"protocolVersion": "3.0",
"user": "analytics",
"database": "warehouse",
"message": {
"type": "Query"
},
"tls": {
"version": "TLSv1.2"
}
}
}

MySQL fields appear under application.mysql. MariaDB shares the MySQL protocol handler and uses the same event types and fields. Request and response events carry the same fields; the value of message.type differs by direction.

Request fields:

FieldPresenceDescription
protocol_versionAlwaysThe MySQL wire protocol version.
server_versionAlwaysThe MySQL server version string, such as 8.4.7.
server_thread_idAlwaysThe server-assigned connection thread ID.
userAlwaysThe database user.
message.typeAlwaysThe protocol message type, such as ComQuery.
connection_attributesOptionalClient-supplied connection metadata, such as client name and version, operating system, and program name.

Response fields:

FieldPresenceDescription
protocol_versionAlwaysThe MySQL wire protocol version.
server_versionAlwaysThe MySQL server version string, such as 8.4.7.
server_thread_idAlwaysThe server-assigned connection thread ID.
userAlwaysThe database user.
message.typeAlwaysThe protocol message type.
connection_attributesOptionalClient-supplied connection metadata, such as client name and version, operating system, and program name.
Example application.mysql block
"application": {
"mysql": {
"protocol_version": "10",
"server_version": "8.4.7",
"server_thread_id": 4182,
"connection_attributes": {
"_client_name": "libmysql",
"_client_version": "8.4.7",
"_os": "Linux",
"program_name": "mysql"
},
"user": "reporting",
"message": {
"type": "ComQuery"
}
}
}

Oracle Database fields appear under application.oracleDatabase, and Redis fields under application.redis. Both carry a single field, whose value differs between request and response events.

Request fields:

FieldPresenceDescription
message.typeAlwaysThe protocol message type. For Redis, the command name, such as AUTH. For Oracle Database, the packet type, such as Connect (NSPTCN).

Response fields:

FieldPresenceDescription
message.typeAlwaysThe protocol message type. For Redis, the status, such as OK or ERR. For Oracle Database, the packet type, such as Accept (NSPTAC).
Example application.oracleDatabase and application.redis blocks
"application": {
"oracleDatabase": {
"message": {
"type": "Connect (NSPTCN)"
}
}
}
"application": {
"redis": {
"message": {
"type": "AUTH"
}
}
}

TCP Passthrough captures traffic that doesn’t match a supported application-protocol handler. Instead of request and response events, Agent Proxy generates the connection-level event types tcp.open and tcp.close, which don’t include an application block. When Agent Proxy can identify the underlying protocol, it records it in meta.identifiedProtocol.