MAAS logs are the starting point for most of your troubleshooting
Errors or typos? Topics missing? Hard to read? Let us know!
MAAS features comprehensive logging, including node-specific and system-wide logs. These logs record details about MAAS operations and user interactions.
This document covers or links to the following topics:
Each log type has detailed documentation accessible via the left-hand menu or the links above.
Add a remote syslog server with MAAS 3.4 via UI
Add a remote syslog server via UI with MAAS 3.3 and below
Add a remote syslog server with the CLI (all MAAS versions)
maas $PROFILE maas set-config name="remote_syslog" value="$SYSLOG_FQDN"
# Example for setting syslog server to 192.168.100.11:
maas $PROFILE maas set-config name="remote_syslog" value=192.168.100.11
# To reset to default (sending syslog to MAAS region controllers):
maas $PROFILE maas set-config name="remote_syslog" value="
Note: Only machine syslog information is forwarded, not MAAS controllers' syslogs.
Logs can be found at the following paths depending on your installation type (snap or package):
/var/snap/maas/common/log/rsyslog/$MACHINE_NAME/$RELEVANT_DATE/messages
Package installation:
Logs can be extensive and challenging to search. The MAAS web UI does not categorize events by type.
The most efficient way to review events is using the events query
CLI sub-command. This command allows filtering and summarizing events. Use jq
and various filters to simplify output interpretation.
maas $PROFILE events query
This command returns a lengthy JSON output, which can be simplified using jq
and various filters, making it more interpretable.
A jq
command example for readable output:
maas $PROFILE events query limit=20 | jq -r '(["USERNAME","NODE","HOSTNAME","LEVEL","DATE","TYPE","EVENT"] | (., map(length*"-"))), (.events[] | [.username,.node,.hostname,.level,.created,.type,.description]) | @tsv' | column -t -s$'\t'
The events query
command supports multiple filters:
Example usage of these filters can narrow down event listings significantly.
Audit events, tagged with AUDIT
, record MAAS configuration changes and machine state transitions. They're essential for tracking user actions and system updates, especially in multi-user environments.
Use audit events alongside jq
and command-line text tools to analyze actions like machine deletions, configuration changes, and user activities. This can provide insights into system changes and help identify areas for attention or improvement.