plaso
plaso copied to clipboard
MySQL Log File Parser
Add a parser for MySQL log files.
There are several:
| Error log | Problems encountered starting, running, or stopping mysqld |
|---|---|
| General query log | Established client connections and statements received from clients |
| Binary log | Statements that change data (also used for replication) |
| Relay log | Data changes received from a replication source server |
| Slow query log | Queries that took more than long_query_time seconds to execute |
| DDL log (metadata log) | Metadata operations performed by DDL statements |
Ref: https://dev.mysql.com/doc/refman/8.0/en/server-logs.html
Paths: - '/var/log/mysql/error.log*' - '/var/log/mysql.log*' - '/var/log/.log'