在维护Linux服务器时,经常需要查看系统中各种服务的日志,以检查服务器的运行状态,如登陆历史、邮件、软件安装等日志。作为运维人员,我们一个个去检查会十分不方便;且大多时候,这会是一种被动的检查,即只有在发现系统运行异常时才会想到去查看日志以获取异常的信息。那么如何主动、集中的分析这些日志,并产生报告,定时发送给管理员就会显得十分重要。对于运维人员来说,发现一款能把原始的日志文件转换成更人性化的记录摘要的工具,将会受益无穷。
logwatch介绍:
1)logwatch是一款用Perl 语言编写的开源日志解析分析器。它能对原始的日志文件进行解析并转换成结构化格式的文档,也能根据您的使用情况和需求来定制报告。logwatch的主要目的是生成更易于使用的日志摘要,并不是用来对日志进行实时的处理和监控的。正因为如此,logwatch通常被设定好时间和频率的自动定时任务来调度运行或者是有需要日志处理的时候从命令行里手动运行。一旦日志报告生成,logwatch 可以通过电子邮件把这报告发送给您,您可以把它保存成文件或者直接显示在屏幕上。
2)Logwatch报告的详细程度和报告覆盖范围是完全可定制化的。Logwatch 的日志处理引擎也是可扩展的,从某种意义上来说,如果您想在一个新的应用程序中使用 logwatch 功能的话,只需要为这个应用程序的日志文件编写一个日志处理脚本(使用 Perl 语言),然后挂接到 logwatch 上就行。
3)logwatch的缺点就在于:在它生成的报告中没有详细的时间戳信息,而原来的日志文件中是存在的。只能知道被记录下来的一段时间之内的特定事件,如果想要知道精确的时间点的信息,就不得不去查看原日志文件了。
logwatch安装
Logwatch能够对Linux 日志文件进行分析,并自动发送mail给相关处理人员,可定制需求。Logwatch的mail功能是借助宿主系统自带的mail server发邮件的,所以系统需安装mail server(如sendmail,postfix等)
1
<code>[root@xqsj-beta ~]</code><code># yum install -y logwatch </code>
查看logwatch帮助
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<code>[root@xqsj-beta ~]</code><code># logwatch --help</code>
<code>Usage: </code><code>/usr/sbin/logwatch</code> <code>[--detail <level>] [--logfile <name>]</code>
<code> </code><code>[--print] [--mailto <addr>] [--archives] [--range <range>] [--debug <level>]</code>
<code> </code><code>[--save <filename>] [--help] [--version] [--service <name>]</code>
<code> </code><code>[--numeric] [--output <output_type>]</code>
<code> </code><code>[--splithosts] [--multiemail] [--no-oldfiles-log]</code>
<code>--detail <level>: Report Detail Level - High, Med, Low or any </code><code>#.</code>
<code>--logfile <name>: *Name of a logfile definition to report on.</code>
<code>--logdir <name>: Name of default directory where logs are stored.</code>
<code>--service <name>: *Name of a service definition to report on.</code>
<code>--print: Display report to stdout.</code>
<code>--mailto <addr>: Mail report to <addr>.</code>
<code>--archives: Use archived log files too.</code>
<code>--save <filename>: Save to <filename>.</code>
<code>--range <range>: Date range: Yesterday, Today, All, Help</code>
<code> </code><code>where help will describe additional options</code>
<code>--numeric: Display addresses numerically rather than symbolically and numerically</code>
<code> </code><code>(saves a nameserver address-to-name lookup).</code>
<code>--debug <level>: Debug Level - High, Med, Low or any </code><code>#.</code>
<code>--splithosts: Create a report </code><code>for</code> <code>each host </code><code>in</code> <code>syslog.</code>
<code>--multiemail: Send each host report </code><code>in</code> <code>a separate email. Ignored </code><code>if</code>
<code> </code><code>not using --splithosts.</code>
<code>--output <output </code><code>type</code><code>>: Report Format - mail, html or unformatted</code><code>#.</code>
<code>--encode: Use </code><code>base64</code> <code>encoding on output mail.</code>
<code>--no-oldfiles-log: Suppress the logwatch log, </code><code>which</code> <code>informs about the</code>
<code> </code><code>old files </code><code>in</code> <code>logwatch tmpdir.</code>
<code>--version: Displays current version.</code>
<code>--help: This message.</code>
<code>* = Switch can be specified multiple </code><code>times</code><code>...</code>
常用参数选项的解释:
<code>--detail < level>: 报告的详细度,可选项: High, Med, Low , 数字 0-10</code>
<code>--logfile < name>: 指日志文件名</code>
<code>--service < name>: 服务名,有对应的解析脚本,可以在 </code><code>/usr/share/logwatch/scripts/services</code><code>中找到</code>
<code>--print: 打印打标准输出</code>
<code>--mailto < addr>: 收件人地址</code>
<code>--archives: 以归档格式发送。使用压缩的文件, 轮转的文件, 例如 messages.1、messages.1.gz</code>
<code>--save < filename>: 保存到文件</code>
<code>--range < range>: 日期范围, Yesterday, Today, All</code>
<code>--debug < level>: 调试级别: High, Med, Low</code>
<code>--splithosts: 为每个主机创建一份报告</code>
<code>--multiemail: 将报告发送给多个邮件地址,没有使用--splithosts参数时,这个选项自动忽略</code>
<code>--output: 配置指令定义了一份 logwatch 报告的格式。有mail邮箱格式和html格式</code>
安装后的目录文件说明:
配置文件在/etc/logwatch目录下:
<code>[root@xqsj-beta ~]</code><code># ll /etc/logwatch/</code>
<code>total 8</code>
<code>drwxr-xr-x 4 root root 4096 Mar 8 11:16 conf</code>
<code>drwxr-xr-x 3 root root 4096 Mar 8 11:16 scripts</code>
<code>[root@xqsj-beta ~]</code><code># ll /etc/logwatch/conf/</code>
<code>total 20</code>
<code>-rw-r--r-- 1 root root 81 Jan 11 2016 ignore.conf</code>
<code>drwxr-xr-x 2 root root 4096 Jan 11 2016 logfiles</code>
<code>-rw-r--r-- 1 root root 103 Jan 11 2016 logwatch.conf</code>
<code>-rw-r--r-- 1 root root 77 Jan 11 2016 override.conf</code>
<code>drwxr-xr-x 2 root root 4096 Jan 11 2016 services</code>
<code>[root@xqsj-beta ~]</code><code># cat /etc/logwatch/conf/logwatch.conf</code>
<code># Local configuration options go here (defaults are in /usr/share/logwatch/default.conf/logwatch.conf)</code>
相关配置模板文件是/usr/share/logwatch/default.conf/logwatch.conf
<code>/usr/share/logwatch</code><code>这个目录下的文件结果如下:</code>
<code> </code><code>default.conf/ </code><code># 配置目录</code>
<code> </code><code>logwatch.conf </code><code># 主配置文件,收件人,级别等</code>
<code> </code><code>logfiles/ </code><code># 定义待分析服务的日志文件组路径,相对于/var/log(*.conf)</code>
<code> </code><code>services/ </code><code># 自定义需分析日志的Service目录(*.conf)</code>
<code> </code><code>scripts/ </code><code># 可执行脚本</code>
<code> </code><code>logwatch.pl </code><code># 启动分析的perl脚本,/usr/sbin/logwatch的源链接</code>
<code> </code><code>logfiles/ </code><code># 可包含多个logwatch日志文件组的子目录,对应的日志服务运行的时候,子目录下的脚本会自动被调用</code>
<code> </code><code>services/ </code><code># logwatch日志服务的过滤脚本,一一对应</code>
<code> </code><code>shared/ </code><code># 可被多个logwatch日志服务引用的脚本</code>
<code> </code><code>dist.conf/</code>
<code> </code><code>logfiles/</code>
<code> </code><code>services/</code>
<code> </code><code>lib/</code>
默认情况下使用的是/usr/share/logwatch/default.conf/logwatch.conf作为主配置文件,但在/etc/logwatch/conf/logwatch.conf中的存在配置选项会覆盖前一个(/usr/share/logwatch下的logwatch.conf还是会起作用,比如在/etc/logwatch的logwatch.conf中没有的选项)。但优先级最高的是在执行命令行中指定的选项。
也就是说:如果不配置/etc/logwatch/conf/logwatch.conf,即它是一个空文件,那么默认配置会使用 /usr/share/logwatch/default.conf/logwatch.conf
在/etc/logwatch下也存在一个与/usr/share/logwatch类似的目录结构,可以在这里添加自定义的监控日志信息。
比如说:logwatch监控时的选项--service后面跟的是server name,默认情况下/etc/logwatch/scripts/services/目录下为空,可以将/usr/share/logwatch/scripts/services下的服务监控脚本拷贝到/etc/logwatch/scripts/services/下
logwatch应用
首先要确保服务器的自带邮箱服务启动了(这里我的是postfix).默认报告的邮件是从logwatch本机发出的,即邮件发件人是“logwatch@$hostname”
<code>[root@xqsj-beta ~]</code><code># /etc/init.d/postfix status</code>
<code>master (pid 6594) is running...</code>
接着进行下面安装操作
<code>[root@xqsj-beta ~]</code><code># wget http://www.cpan.org/authors/id/M/MS/MSTROUT/YAML-0.84.tar.gz</code>
<code>[root@xqsj-beta ~]</code><code># tar -zvxf YAML-0.84.tar.gz</code>
<code>[root@xqsj-beta ~]</code><code># # cd YAML-0.84</code>
<code>[root@xqsj-beta YAML-0.84]</code><code># perl Makefile.PL</code>
<code>[root@xqsj-beta YAML-0.84]</code><code># make</code>
<code>[root@xqsj-beta YAML-0.84]</code><code># make install</code>
<code>[root@xqsj-beta ~]</code><code># wget http://www.cpan.org/authors/id/A/AN/ANDK/CPAN-2.16.tar.gz</code>
<code>[root@xqsj-beta ~]</code><code># tar -zvxf CPAN-2.16.tar.gz</code>
<code>[root@xqsj-beta ~]</code><code># cd CPAN-2.16</code>
<code>[root@xqsj-beta CPAN-2.16]</code><code># perl Makefile.PL</code>
<code>[root@xqsj-beta CPAN-2.16]</code><code># make</code>
<code>[root@xqsj-beta CPAN-2.16]</code><code># make install</code>
<code>[root@xqsj-beta ~]</code><code># perl -MCPAN -e 'install HTML::Template'</code>
<code> </code>
<code>[root@xqsj-beta ~]</code><code># perl -MCPAN -e 'install Sys::CPU'</code>
<code>[root@xqsj-beta ~]</code><code># perl -MCPAN -e 'install Sys::MemInfo'</code>
1)直接命令行手动监控
<code>[root@xqsj-beta ~]</code><code># logwatch --detail 10 --mailto [email protected] --range all --service all --output mail</code>
<code>[root@xqsj-beta ~]</code><code>#</code>
上面命令中采用的是邮箱格式的报告输出,如下:
下面采用html格式的报告输出,通常情况下,我都会使用这个格式:
<code>[root@xqsj-beta ~]</code><code># logwatch --detail 10 --mailto [email protected] --range all --service all --output html</code>
<code>若是想发送给多个邮箱,中间需要用逗号隔开</code>
<code>[root@xqsj-beta ~]</code><code># logwatch --detail 10 --mailto [email protected],wang_shibo***@163.com --range all --service all --output html</code>
收到的邮件中的监控报告如下:
注意一个细节:
如上在邮箱里发现报告里的内容太多,有一些无关紧要的服务的监控结果不想打印在报告里,那么就可以在监控时过滤掉这些服务项。
可以对比邮件里出现的监控列表里的服务去过滤,服务名最后以/etc/logwatch/scripts/services下的名称为准,服务名不正确,会报错说不识别。如下:
<code>[root@xqsj-beta services]</code><code># logwatch --detail 10 --mailto [email protected] --range all --service All --service -XNTPD --service -Kernel --service -http --service -Postfix --service -pam_unix --service -XNTPD --output html</code>
<code>[root@xqsj-beta services]</code><code>#</code>
再次查看邮件,发现被过滤掉的服务的监控结果就不会出现在报告里了
这种方式不需要logwatch的配置文件,比较简单,可以将执行命令放到shell脚本中,结合crontab每天定时执行!
----------------------------------------------------------------------------------------------
发送邮件的时候报错如下:
You have old files in your logwatch tmpdir (/var/cache/logwatch):
logwatch.A3V8WQ6_
The directories listed above were most likely created by a
logwatch run that failed to complete successfully. If so, you
may delete these directories.
解决办法:
# rm -rf /var/cache/logwatch/*
-------------------------------------------------------------------------------------------
2)采用配置文件的方式
需要编辑的文件是/etc/logwatch/conf/logwatch.conf,以下是对配置选项的解释:
32
33
34
35
36
37
38
39
<code>1)LogDir = </code><code>/var/log</code>
<code>定义的日志文件存放路径</code>
<code>2)TmpDir = </code><code>/var/cache/logwatch</code>
<code>定义的缓存路径</code>
<code>3)Save = </code><code>/tmp/logwatch</code>
<code>开启此项, 会将处理结果保存到本地文件里,如</code><code>/tmp/logwatch</code><code>文件, 不会邮寄或显示输出。一般会注释掉此行或不配置此行</code>
<code>4)MailTo = [email protected]</code>
<code>发送监控报告的收件人地址,发送给多个邮箱,需要在多个邮箱地址之间用逗号隔开。但是需要在logwatch运行的服务器上配置好本地邮件传输代理(MTA)如sendmail、 Postfix等,这个配置指令项才能起作用。</code>
<code>5)MailFrom = Logwatch</code>
<code>当你收到邮件时, 显示是谁发给你的。默认是Logwatch</code>
<code>6)Range = <Yesterday|Today|All></code>
<code>处理什么时候的日志 , 可选项 All , Yesterday , Today , 即所有, 昨天的 , 今天的。</code>
<code>7)Detail = High</code>
<code>日志详细度, 可选项 Low , Med , High , 或是 0-10数字</code>
<code>8)Print = No</code>
<code>可选项, Yes会被打印到系统标准输出, 并且不会以邮件的形式发送到MailTo设定的邮箱里 , No选项则会发到邮箱中。</code>
<code>9)Server = All</code>
<code>监控的服务项,all表示所有的服务。这个可以到</code><code>/etc/logwatch/scripts/services/</code><code>下面去找要监控的服务名称,默认是空的,可以从</code><code>/usr/share/logwatch/scripts/services</code><code>下面将服务监控脚本拷贝过来。</code>
<code>Service选项指定想要监控的一个或多个服务。在 </code><code>/usr/share/logwatch/scripts/services</code> <code>目录下列出的服务都能被监控,它们已经涵盖了重要的系统服务(例如:pam,secure,iptables,syslogd 等),也涵盖了一些像 </code><code>sudo</code><code>、sshd、http、fail2ban、samba等主流的应用服务。如果您想添加新的服务到列表中,得编写一个相应的日志处理 Perl 脚本,并把它放在这个目录中。</code>
<code>如果这个选项要用来选择特定的服务话,您需要把文件中的 </code><code>"Service = All "</code> <code>这一行注释掉。</code>
<code>另外注意一点:</code>
<code>可以在不监控的服务前面加 </code><code>"-"</code> <code>, 如</code><code>"-httpd"</code><code>即表示不监控httpd服务,可以写多条。</code>
<code>一般我们建议的配置是:先监控所有服务,然后在排除不需要监控的服务,比如:</code>
<code>Service = All</code>
<code>Service = </code><code>"-zz-network"</code>
<code>Service = </code><code>"-zz-sys"</code>
<code>Service = </code><code>"-eximstats"</code>
<code>10)output = <html|mail></code>
<code>配置指令定义了一份 logwatch 报告的格式。有mail邮箱格式和html格式。</code>
下面是自己线上服务器上使用过的一个配置示例:
<code>LogDir = </code><code>/var/log</code>
<code>TmpDir = </code><code>/var/cache/logwatch</code>
<code>#Save = /tmp/logwatch</code>
<code>MailTo = [email protected],[email protected]</code>
<code>MailFrom = Logwatch</code>
<code>Range = Yesterday</code>
<code>Detail = High</code>
<code>Print = No</code>
<code>Service = </code><code>"-XNTPD"</code>
<code>Service = </code><code>"-Kernel"</code>
<code>Service = </code><code>"-http"</code>
<code>Service = </code><code>"-Postfix"</code>
<code>Service = </code><code>"-pam_unix"</code>
<code>output = html</code>
<code>然后手动执行下命令:</code>
<code>[root@xqsj-beta ~]</code><code># /usr/sbin/logwatch</code>
<code>然后去对应的邮箱里查看,发现已有报告邮件。</code>
另外注意:
logwatch的工作不是监控日志异常后及时报警的工具,并不具有及时性,logwatch默认每天定时发送一封整合的邮件:
logwatch默认在crontab定时任务设定目录下存在/etc/cron.daily/0logwatch脚本:
<code>[root@xqsj-beta ~]</code><code># cat /etc/cron.daily/0logwatch</code>
<code>#!/bin/bash</code>
<code>DailyReport=`</code><code>grep</code> <code>-e </code><code>"^[[:space:]]*DailyReport[[:space:]]*=[[:space:]]*"</code> <code>/usr/share/logwatch/default</code><code>.conf</code><code>/logwatch</code><code>.conf | </code><code>head</code> <code>-n1 | </code><code>sed</code> <code>-e </code><code>"s|^\s*DailyReport\s*=\s*||"</code><code>`</code>
<code>if</code> <code>[ </code><code>"$DailyReport"</code> <code>!= </code><code>"No"</code> <code>] && [ </code><code>"$DailyReport"</code> <code>!= </code><code>"no"</code> <code>]</code>
<code>then</code>
<code> </code><code>logwatch</code>
<code>fi</code>
正是因为这个默认的定时脚本,所以只要如上配置好logwatch.conf文件后,每天都会自动收取一封整合的报告邮件
如果在logwatch.conf中显式设置了选项DailyReport = No,则会取消logwatch每日执行任务。
如果要修改logwatch在cron.daily的执行时间,可以删掉/etc/cron.daily/0logwatch这个文件,然后添加到/etc/crontab里去定义执行时间。即:
<code>[root@xqsj-beta ~]</code><code># mv /etc/cron.daily/0logwatch /root/logwatch.sh</code>
<code>比如设定每天早上5点发送邮件</code>
<code>[root@xqsj-beta ~]</code><code># crontab -e</code>
<code>0 5 * * * </code><code>/bin/bash</code> <code>-x </code><code>/root/logwatch</code><code>.sh</code>
又或者是删除/etc/cron.daily/0logwatch文件,然后自己在crontab里自定义发送:
<code>每周1-5的早上8点发送邮件</code>
<code>0 8 * * 1,2,3,4,5 </code><code>/usr/sbin/logwatch</code>
***************当你发现自己的才华撑不起野心时,就请安静下来学习吧***************
本文转自散尽浮华博客园博客,原文链接:http://www.cnblogs.com/kevingrace/p/6519504.html,如需转载请自行联系原作者