Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

13 lines
378 B
Plaintext

# @TEST-DOC: Test the parameter status event.
#
# @TEST-REQUIRES: ${SCRIPTS}/have-spicy
# @TEST-EXEC: zeek -b -Cr ${TRACES}/postgresql/psql-login-no-sslrequest.pcap %INPUT >output
#
# @TEST-EXEC: btest-diff output
@load base/protocols/postgresql
event PostgreSQL::parameter_status(c: connection, name: string, value: string) {
print "parameter_status", c$uid, name, value;
}