Query Log All Filter
Query Log All Filter
The Query Log All (QLA) filter logs query content. Logs are written to a file in
CSV format. Log elements are configurable and include the time submitted and the
SQL statement text, among others.
A minimal configuration is below.
The qlafilter logs can be rotated by executing the maxctrl rotate logs
command. This will cause the log files to be reopened when the next message is
written to the file. This applies to both unified and session type logging.
Filter Parameters
The QLA filter has one mandatory parameter, filebase, and a number of optional
parameters. These were introduced in the 1.0 release of MariaDB MaxScale.
The basename of the output file created for each session. A session index is
added to the filename for each written session file. For unified log files,.unified is appended.
Include queries that match the regex.
Exclude queries that match the regex.
The extended option enables PCRE2 extended regular expressions.
Limit logging to sessions with this user.
Limit logging to sessions with this client source address.
Only log queries from users that match this pattern. If the user parameter is
used, the value of user_match is ignored.
Here is an example pattern that matches the users alice and bob:
Exclude all queries from users that match this pattern. If the user parameter
is used, the value of user_exclude is ignored.
Here is an example pattern that excludes the users alice and bob:
Only log queries from hosts that match this pattern. If the source parameter
is used, the value of source_match is ignored.
Here is an example pattern that matches the loopback interface as well as the
address 192.168.0.109:
Exclude all queries from hosts that match this pattern. If the source
parameter is used, the value of source_exclude is ignored.
Here is an example pattern that excludes the loopback interface as well as the
address 192.168.0.109:
The type of log file to use.
Type of data to log in the log files.
The durations reply_time and total_reply_time are by default in milliseconds,
but can be specified to another unit using duration_unit.
The log entry is written when the last reply from the server is received.
Prior to version 6.2 the entry was written when the query was received from
the client, or if reply_time was specified, on first reply from the server.
NOTE The error_msg is the raw message from the server. Even if use_canonical_form
is set the error message may contain user defined constants. For example:
The unit for logging a duration. The unit can be milliseconds or microseconds.
The abbreviations ms for milliseconds and us for microseconds are also valid.
This option is available as of MaxScale version 6.2.
use_canonical_form
When this option is true the canonical form of the query is logged. In the
canonical form all user defined constants are replaced with question marks.
This option is available as of MaxScale version 6.2.
Flush log files after every write.
Defines the separator string between elements of
log entries. The value should be enclosed in quotes.
newline_replacement
Default value is " " (one space). SQL-queries may include line breaks, which, if
printed directly to the log, may break automatic parsing. This parameter defines
what should be written in the place of a newline sequence (\r, \n or \r\n). If
this is set as the empty string, then newlines are not replaced and printed as
is to the output. The value should be enclosed in quotes.
Example 1 - Query without primary key
Imagine you have observed an issue with a particular table and you want to
determine if there are queries that are accessing that table but not using the
primary key of the table. Let's assume the table name is PRODUCTS and the
primary key is called PRODUCT_ID. Add a filter with the following definition:
The result of using this filter with the service used by the application would
be a log file of all select queries querying PRODUCTS without using the
PRODUCT_ID primary key in the predicates of the query. Executing SELECT * FROM PRODUCTS would log the following into /var/logs/qla/SelectProducts:
CC BY-SA / Gnu FDL