Show the most recent logs first
|
|
By time range:
|
|
By service:
|
|
By severity level:
|
|
Output format and Boot logs
These options allow you to efficiently narrow down the log data to suit your specific needs. Other relevant options to explore include:
- –no-hostname: Suppresses the hostname in log entries.
- –no-full: Truncates long log fields in the output instead of displaying them in full.
- -a/–all: Displays all fields, even those that are normally suppressed or truncated.
- –truncate-newline: Removes newline characters from the MESSAGE field.
- -q/–quiet: Suppresses the header and metadata output of the journalctl command to leave only the raw log content.
A simple modification to the output is configuring timestamps to be displayed in UTC instead of the system time:
|
|
The -o/–output option allows you to print the journal output in a variety of formats.
|
|
For improved readability, you can use the json-pretty format:
|
|
To see all the available fields that are present in the systemd journal, use the –fields flag:
|
|
You can find out more about these fields by reading the systemd manual:
|
|
If you’d like to display specific fields alone, you can then use the –output-fields option when using certain formats such as json, json-pretty, verbose, export and others.
|
|
Here are the other formats that can control the output produced by journalctl (reference)
- short: This is the default output format.
- cat: Includes the log message alone by default.
- json: JSON-formatted output containing all available fields per entry.
- json-pretty: Prettified json output for better readability.
- verbose: Displays the entire log entry with all available fields per entry.
journalctl provides options to isolate logs generated during a particular boot, allowing you to focus your analysis on a specific time window.
To display logs from the current boot session, use the -b flag:
|
|
This will show all log entries recorded since the system last started, including low-level kernel messages related to the boot process.
To see a list of all recorded boot sessions, use the –list-boots option:
|
|
This command outputs a table with information about each boot session, including:
- IDX: A relative identifier for each boot session.
- Boot ID: A unique hexadecimal identifier for each boot.
- Time range: The start and end time of the boot session.
You can use either the offset number or the boot ID to filter logs for a specific boot session:
- Shows logs from the current boot session
|
|
- Shows logs from the previous boot session
|
|
- Show logs associated with the specified boot ID.
|
|
Filtering Journal logs by a time range
You can define a time window for your log search using the –since and –until flags to specify the lower and upper bounds of the time range respectively.
Both flags accept flexible timestamp formats, including:
- Full timestamps: YYYY-MM-DD HH:MM:SS (e.g., 2021-11-23 23:02:15)
- Dates only: YYYY-MM-DD (e.g., 2021-05-04)
- Times only: HH:MM (e.g., 12:00)
- Relative times: 5 hour ago, 32 min ago
- Keywords: yesterday, today, now
|
|
You can also filter logs that fall on a specific date or between specific dates with:
|
|
Filtering Journal logs by Systemd service
to view logs generated by a specific service,
|
|
You can also filter for multiple services simultaneously by repeating the –unit flag:
|
|
Filtering Journal entries by metadata
There are many options, but you can see which of the fields are available on the logs you’re interested in through the json or verbose format as follows:
|
|
Once you’ve figured out what fields you’re interested in, you can display all possible values for that field with the -F/–field flag. For example, to see all possible priority levels, use:
|
|
The numbers can be mapped to the standard syslog priority levels:
|
|
To filter for entries with a specific metadata value, use the field name followed by an equals sign (=) and the desired value.
For example, to show only logs with priority level “3”, use:
|
|
You can also combine multiple metadata filters to refine your search further. For instance, to see error logs from the kernel, run:
|
|
For commonly used fields, you can use dedicated flags to reduce verbosity and make your journalctl commands more concise. This includes:
- -p/–priority: PRIORITY
- -f/–facility: SYSLOG_FACILITY
- -t/–identifier: SYSLOG_IDENTIFIER
- -u/–unit: _SYSTEMD_UNIT
For example, instead of:
|
|
You can simply write:
|
|
Tailing and following Journal entries
Similar to using tail -f to monitor a file for new content, journalctl provides a way to “tail” or follow journal entries in real time.
|
|
This command will display the most recent 10 log entries and continuously display entries as they are written to the journal. You can configure how many logs are initially displayed with the -n/–lines option:
- Show 20 initial lines instead
|
|
You can also use the –no-tail option to show all lines even when in follow mode:
|
|
The –follow flag can be combined with other journalctl filters to focus on specific events. For example, to tail messages with error severity or higher, use:
|
|
Or to tail logs from a specific service:
|
|
Searching for Journal entries
|
|
The –grep flag also supports regular expressions for more complex searches:
|
|
The search is case-insensitive by default, but you can make it case-sensitive through the –case-sensitive flag:
|
|
Maintaining the Systemd Journal
|
|
If the journal is taking up too much space, you can choose from the following vacuuming options to manually shrink it to a desired size:
- –vacuum-size=
: Shrink the journal to a desired size. - –vacuum-files=
: Reduce the number of journal files to . - –vacuum-time=
For example, you can reduce the journal size to 500 MB with:
- shrink journal to 500 MB.
|
|
Instead of specifying a size, you can also delete logs based on their age using the –vacuum-time option.
|
|
Configuring Journal storage
To automatically manage journal size, you can modify the following options in the /etc/systemd/journald.conf
file:
- SystemMaxUse and RuntimeMaxUse: Set the maximum amount of space that the journal should take up in persistent storage (
/var/log/journal
) and volatile storage (/run/log/journal
) respectively. - SystemKeepFree and RuntimeKeepFree: Defines the percentage of disk space that should always be kept free for other uses.
- SystemMaxFileSize and RuntimeMaxFileSize: Controls how large journal entries should grow before being rotated.
- SystemMaxFiles and RuntimeMaxFiles: Specifies the maximum number of journal files to keep.
|
|