Which command-line tool is commonly used to filter log files based on severity levels such as INFO, WARNING, and ERROR?
Which command allows you to continuously monitor and display the end of a log file in real-time as new entries are added?
In a large log file, what is the most efficient command to quickly find all lines containing the phrase 'NullPointerException'?
Which redirection operator is used to redirect standard error (stderr) to a file?
How can you redirect both standard output (stdout) and standard error (stderr) to a single file named 'output.log'?
What does the command 'program | grep -v 'debug'' do?
Which part of 'awk '{print $1}' logfile.txt' specifies the action to be performed on each matching line?
What is a common CLI tool used to calculate the time difference between two log entries by extracting timestamp information?
Within the 'less' command, which key is used to initiate a forward search for a specific pattern?
What is a practical way to identify slow-running database queries using CLI tools and log analysis, assuming queries are logged with execution times?