<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Script to monitor the syslog.log in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-monitor-the-syslog-log/m-p/5179516#M459743</link>
    <description>Hi:&lt;BR /&gt;&lt;BR /&gt;You could simply do:&lt;BR /&gt;&lt;BR /&gt;# grep -iE "error|warn|crit" /var/adm/syslog/syslog.log&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
    <pubDate>Fri, 05 Jun 2009 11:24:37 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2009-06-05T11:24:37Z</dc:date>
    <item>
      <title>Script to monitor the syslog.log</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-monitor-the-syslog-log/m-p/5179513#M459740</link>
      <description>Hi,&lt;BR /&gt;Is there anyone having the script to monitor the syslog.log&lt;BR /&gt;&lt;BR /&gt;I want to have a script to monitor the syslog for any error, warning and critical message.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Narendra</description>
      <pubDate>Fri, 05 Jun 2009 05:46:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-monitor-the-syslog-log/m-p/5179513#M459740</guid>
      <dc:creator>Narendra Uttekar</dc:creator>
      <dc:date>2009-06-05T05:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Script to monitor the syslog.log</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-monitor-the-syslog-log/m-p/5179514#M459741</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;I write a script that greps for keywords like lbolt which normally indicates a disk failure.&lt;BR /&gt;&lt;BR /&gt;A complete script for the job can be found here.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums13.itrc.hp.com/service/forums/questionanswer.do?threadId=178514" target="_blank"&gt;http://forums13.itrc.hp.com/service/forums/questionanswer.do?threadId=178514&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Its a great script resource.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 05 Jun 2009 06:21:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-monitor-the-syslog-log/m-p/5179514#M459741</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2009-06-05T06:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: Script to monitor the syslog.log</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-monitor-the-syslog-log/m-p/5179515#M459742</link>
      <description>Hi Narendra,&lt;BR /&gt;&lt;BR /&gt;Find the script..&lt;BR /&gt;&lt;BR /&gt;grep -i full  /var/adm/syslog/syslog.log  &lt;BR /&gt;grep -i fail  /var/adm/syslog/syslog.log  &lt;BR /&gt;grep -i fault  /var/adm/syslog/syslog.log &lt;BR /&gt;grep -i error  /var/adm/syslog/syslog.log &lt;BR /&gt;grep -i scsi  /var/adm/syslog/syslog.log &lt;BR /&gt;grep -i lbolt  /var/adm/syslog/syslog.log&lt;BR /&gt;grep -i ems  /var/adm/syslog/syslog.log &lt;BR /&gt;grep -i lpmc  /var/adm/syslog/syslog.log&lt;BR /&gt;grep -i critical  /var/adm/syslog/syslog.log&lt;BR /&gt;grep -i Recovered  /var/adm/syslog/syslog.log&lt;BR /&gt;grep -i Restored  /var/adm/syslog/syslog.log &lt;BR /&gt;grep -i incorr  /var/adm/syslog/syslog.log &lt;BR /&gt;grep -i su:  /var/adm/syslog/syslog.log &lt;BR /&gt;grep -i cmcld /var/adm/syslog/syslog.log&lt;BR /&gt;grep -i lvm /var/adm/syslog/syslog.log&lt;BR /&gt;tail -30 /var/adm/sulog &lt;BR /&gt;cat /var/adm/syslog/syslog.log |grep -i "connection logging"&lt;BR /&gt;ll /var/opt/resmon/log</description>
      <pubDate>Fri, 05 Jun 2009 06:26:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-monitor-the-syslog-log/m-p/5179515#M459742</guid>
      <dc:creator>SUDHAKAR_18</dc:creator>
      <dc:date>2009-06-05T06:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: Script to monitor the syslog.log</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-monitor-the-syslog-log/m-p/5179516#M459743</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;You could simply do:&lt;BR /&gt;&lt;BR /&gt;# grep -iE "error|warn|crit" /var/adm/syslog/syslog.log&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 05 Jun 2009 11:24:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-monitor-the-syslog-log/m-p/5179516#M459743</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-06-05T11:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: Script to monitor the syslog.log</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-to-monitor-the-syslog-log/m-p/5179517#M459744</link>
      <description>Thanks for the soultion.</description>
      <pubDate>Wed, 19 Aug 2009 05:58:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-to-monitor-the-syslog-log/m-p/5179517#M459744</guid>
      <dc:creator>Narendra Uttekar</dc:creator>
      <dc:date>2009-08-19T05:58:39Z</dc:date>
    </item>
  </channel>
</rss>

