<?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 Help-System Peformance in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947007#M103124</link>
    <description>Change 90 to 60. It will show user name and processes name also. What hostname is going to be difficult, beacuse it depends upon what king of a process it is. Like sql, oracle listener processes come from network, while some are started on host itself.&lt;BR /&gt;&lt;BR /&gt;May be if you can exaplain what you are trying to do, we may be able to help you better.</description>
    <pubDate>Thu, 15 Dec 2005 02:18:58 GMT</pubDate>
    <dc:creator>RAC_1</dc:creator>
    <dc:date>2005-12-15T02:18:58Z</dc:date>
    <item>
      <title>Script Help-System Peformance</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947004#M103121</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt; Need Help for Script&lt;BR /&gt;&lt;BR /&gt; What my script will do &lt;BR /&gt;&lt;BR /&gt;Script will collect CPU Performance for every one minute(Thro'Schedule) if the CPU Perf. will go above 40%,it will send username,pid and hostname details to admin mail id &lt;BR /&gt;&lt;BR /&gt;Pleas anyone help for this</description>
      <pubDate>Thu, 15 Dec 2005 01:07:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947004#M103121</guid>
      <dc:creator>Karthick K S</dc:creator>
      <dc:date>2005-12-15T01:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help-System Peformance</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947005#M103122</link>
      <description>Crude and dirty.&lt;BR /&gt;&lt;BR /&gt;Put following in cron. Run it as you want.&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -ef -o pid,ruser,pcpu,args|tr -d "%" |awk '{if($4&amp;gt;=90) print $0}' | mailx -s "processes takig more than 90% cpu in last scheduling interval" abc@xyz.com&lt;BR /&gt;&lt;BR /&gt;The better method would be configuring a correct alarm in /var/opt/perf/alarmdef file. This would email you when thresholds are crossed. Check the examples in /opt/perf/examples/adviser directory.</description>
      <pubDate>Thu, 15 Dec 2005 02:04:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947005#M103122</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-12-15T02:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help-System Peformance</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947006#M103123</link>
      <description>Thanks a lot,&lt;BR /&gt;&lt;BR /&gt;If any script to send alert mail like which user using more cpu util...above 60% and from which IP or Hostname</description>
      <pubDate>Thu, 15 Dec 2005 02:14:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947006#M103123</guid>
      <dc:creator>Karthick K S</dc:creator>
      <dc:date>2005-12-15T02:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help-System Peformance</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947007#M103124</link>
      <description>Change 90 to 60. It will show user name and processes name also. What hostname is going to be difficult, beacuse it depends upon what king of a process it is. Like sql, oracle listener processes come from network, while some are started on host itself.&lt;BR /&gt;&lt;BR /&gt;May be if you can exaplain what you are trying to do, we may be able to help you better.</description>
      <pubDate>Thu, 15 Dec 2005 02:18:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947007#M103124</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-12-15T02:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help-System Peformance</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947008#M103125</link>
      <description>Sometimes CPU Utilzation is going 100% ,and we dont have any alert mail for this so&lt;BR /&gt;i think thro' script by schedule every minutes to check the cpu perf.. &lt;BR /&gt;and if cpu utilization going beyond 40% send a mail alert to adminid with username and hostname details(which user using more&lt;BR /&gt;cpu utilization)&lt;BR /&gt;&lt;BR /&gt;pls....</description>
      <pubDate>Thu, 15 Dec 2005 02:46:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947008#M103125</guid>
      <dc:creator>Karthick K S</dc:creator>
      <dc:date>2005-12-15T02:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help-System Peformance</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947009#M103126</link>
      <description>I have been using this for some time now to take a quick galnce at what is happening.&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -ef -o pcpu="CPU %" -o ruser=USER -o pid,args|awk '{if($1&amp;gt;=40)print $0}'|sort -rk1|head -16</description>
      <pubDate>Thu, 15 Dec 2005 03:02:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947009#M103126</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-12-15T03:02:35Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help-System Peformance</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947010#M103127</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Question what's the problem that a system has sometimes 100% CPU utilisation.&lt;BR /&gt;It's better to have a cpu runninig between the 70 en 90% then lower. If it hit sometimes the 100% it's only working. When also the swapspace en threads are filling up it's usefull to get an alert.&lt;BR /&gt;In the mean time with glance you can look wich process had needed the 100 % cpu.&lt;BR /&gt;&lt;BR /&gt;grtz. Mark</description>
      <pubDate>Thu, 15 Dec 2005 03:32:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947010#M103127</guid>
      <dc:creator>Mark Nieuwboer</dc:creator>
      <dc:date>2005-12-15T03:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help-System Peformance</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947011#M103128</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Question what's the problem that a system has sometimes 100% CPU utilisation.&lt;BR /&gt;It's better to have a cpu runninig between the 70 en 90% then lower. If it hit sometimes the 100% it's only working. When also the swapspace and threads are filling up it's usefull to get an alert.&lt;BR /&gt;In the mean time with glance you can look wich process had needed the 100 % cpu.&lt;BR /&gt;&lt;BR /&gt;grtz. Mark</description>
      <pubDate>Thu, 15 Dec 2005 03:33:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947011#M103128</guid>
      <dc:creator>Mark Nieuwboer</dc:creator>
      <dc:date>2005-12-15T03:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help-System Peformance</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947012#M103129</link>
      <description>Shalom KArthick,&lt;BR /&gt;&lt;BR /&gt;Background:&lt;BR /&gt;&lt;A href="http://www.hpux.ws/system.perf.sh" target="_blank"&gt;http://www.hpux.ws/system.perf.sh&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 15 Dec 2005 07:21:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947012#M103129</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-12-15T07:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help-System Peformance</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947013#M103130</link>
      <description>Hi,&lt;BR /&gt;I've a script that by Glance collects the % of use for CPU, DISK, MEM and SWAP and notify me when 2 of them are over a threshold.&lt;BR /&gt;Let me know if you are interested in this and I'll provide you. (I'd like to avoid to post unnecessary script).&lt;BR /&gt;HTH,&lt;BR /&gt;Art</description>
      <pubDate>Fri, 16 Dec 2005 04:37:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947013#M103130</guid>
      <dc:creator>Arturo Galbiati</dc:creator>
      <dc:date>2005-12-16T04:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help-System Peformance</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947014#M103131</link>
      <description>Hi Aruturio,&lt;BR /&gt;&lt;BR /&gt;If u dont hv any objection pls send it to me</description>
      <pubDate>Fri, 16 Dec 2005 04:58:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947014#M103131</guid>
      <dc:creator>Karthick K S</dc:creator>
      <dc:date>2005-12-16T04:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help-System Peformance</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947015#M103132</link>
      <description>Hi, this is the script.&lt;BR /&gt;It uses a glance syntax file: gln_syntax_file&lt;BR /&gt;in the same directory. It contains:&lt;BR /&gt;print "-- ", &lt;BR /&gt;      gbl_statdate, &lt;BR /&gt;      " ", &lt;BR /&gt;      gbl_stattime, &lt;BR /&gt;      " ", &lt;BR /&gt;      gbl_cpu_total_util|3|0, &lt;BR /&gt;      " ", &lt;BR /&gt;      gbl_disk_util_peak|3|0, &lt;BR /&gt;      " ", &lt;BR /&gt;      gbl_mem_util|3|0, &lt;BR /&gt;      " ", &lt;BR /&gt;      gbl_swap_space_util|3|0 &lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Art&lt;BR /&gt;&lt;BR /&gt;N.B. You have to adapt a bit teh script to your environment.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Dec 2005 11:22:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947015#M103132</guid>
      <dc:creator>Arturo Galbiati</dc:creator>
      <dc:date>2005-12-16T11:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help-System Peformance</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947016#M103133</link>
      <description>Hi, this is tre script.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Art</description>
      <pubDate>Fri, 16 Dec 2005 11:23:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947016#M103133</guid>
      <dc:creator>Arturo Galbiati</dc:creator>
      <dc:date>2005-12-16T11:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help-System Peformance</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947017#M103134</link>
      <description>Thanks a lot</description>
      <pubDate>Mon, 19 Dec 2005 03:02:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help-system-peformance/m-p/4947017#M103134</guid>
      <dc:creator>Karthick K S</dc:creator>
      <dc:date>2005-12-19T03:02:15Z</dc:date>
    </item>
  </channel>
</rss>

