Colorize tail output

2020-05-12 05:03发布

I've been trying to make tail a little more readable for server startups. My current command filters out most of the INFO and DEBUG messages from the startup:

tail -F ../server/durango/log/server.log | grep -e "ERROR" -e "WARN" -e "Shutdown" -e "MicroKernel" | grep --color=auto -E 'MicroKernel|$'

What I would like to do is craft something that would highlight WARN in yellow and ERROR in red, and MicroKernel in green. I tried just piping grep --color=auto multiple times, but the only color that survives is the last command in the pipe.

Is there a one liner to do this? Or even a many-liner?

标签: linux bash shell
5条回答
贪生不怕死
2楼-- · 2020-05-12 05:23

I have been using a tool called grc for this for years. works like a charm. It comes with some quite good templates for many standard log outputs and formats and it is easy to define your own. A command I use often is

grc tail -f /var/log/syslog

It colorizes the syslog output so it is easy to spot errors (typically marked red.

Find the tool here:

https://github.com/garabik/grc

(it is also available as package for most common linux flavours).

查看更多
老娘就宠你
3楼-- · 2020-05-12 05:35

I wrote a script for this years ago. You can easily cover the case of multiple colors by piping successive invocations of highlight to each other.

From the README:

Usage: ./highlight [-i] [--color=COLOR_STRING] [--] <PATTERN0> [PATTERN1...]

This is highlight version 1.0.

This program takes text via standard input and outputs it with the given
perlre(1) pattern(s) highlighted with the given color.  If no color option
is specified, it defaults to 'bold red'.  Colors may be anything
that Perl's Term::ANSIColor understands.  This program is similar to
"grep --color PATTERN" except both matching and non-matching lines are
printed.

The default color can be selected via the $HIGHLIGHT_COLOR environment
variable.  The command-line option takes precedence.

Passing -i or --ignore-case will enable case-insensitive matching.

If your pattern begins with a dash ('-'), you can pass a '--' argument
after any options and before your pattern to distinguish it from an
option.
查看更多
爷、活的狠高调
4楼-- · 2020-05-12 05:37

yes, there is way to do this. That is, as long as your terminal supports ANSI escape sequences. This is most terminals that exist.

I think I don't need explain how to grep, sed etc. point is the color right?

see below, this will make

WARN yellow
ERROR red
foo   green

here is example:

kent$ echo "WARN
ERROR
foo"|sed 's#WARN#\x1b[33m&#; s#ERROR#\x1b[31m&#; s#foo#\x1b[32m&#'

Note: \x1b is hexadecimal for the ESC character (^VEsc).

to see the result:

enter image description here

查看更多
beautiful°
5楼-- · 2020-05-12 05:46

I use a version of this that I hacked: python log watcher

查看更多
Anthone
6楼-- · 2020-05-12 05:48

You can create a colored log instead of using a complex command.

enter image description here

For php is like this:

echo "^[[30;43m".$ip."^[[0m";

The key point is to use Ctrl-v ctrl-[ to input a green ^[ under insert mode in vim, direct input ^[ does not work.

enter image description here

More info here

查看更多
登录 后发表回答