<?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: Load calculation in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/load-calculation/m-p/2434038#M768075</link>
    <description>Try sar, top, glance(paid product), uptime, w,vmstat etc.</description>
    <pubDate>Wed, 02 Aug 2000 06:58:33 GMT</pubDate>
    <dc:creator>Vincente Fernandes</dc:creator>
    <dc:date>2000-08-02T06:58:33Z</dc:date>
    <item>
      <title>Load calculation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/load-calculation/m-p/2434032#M768069</link>
      <description>Is their any formula to calculate the system critcal load?</description>
      <pubDate>Tue, 01 Aug 2000 17:27:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/load-calculation/m-p/2434032#M768069</guid>
      <dc:creator>Prakash Nair</dc:creator>
      <dc:date>2000-08-01T17:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Load calculation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/load-calculation/m-p/2434033#M768070</link>
      <description>There are tools available. top command seems to do a very good job. You can try glance (you have to pay for it but available for 60 days as a trial). vmstat (see man vmstat) and others (iostat, netstat, etc, see the other posts in the same issue).</description>
      <pubDate>Tue, 01 Aug 2000 17:33:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/load-calculation/m-p/2434033#M768070</guid>
      <dc:creator>Antoanetta Naghiu</dc:creator>
      <dc:date>2000-08-01T17:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: Load calculation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/load-calculation/m-p/2434034#M768071</link>
      <description>Prakash:&lt;BR /&gt;&lt;BR /&gt;uptime gives the average number of tasks in the run queue over the last 1,5 and 15 minutes.  This is a useful "quick" look.&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Tue, 01 Aug 2000 17:46:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/load-calculation/m-p/2434034#M768071</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2000-08-01T17:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: Load calculation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/load-calculation/m-p/2434035#M768072</link>
      <description>All of the above plus sar.&lt;BR /&gt;&lt;BR /&gt;And measurewear/perfView for a historic perspective (non-free)</description>
      <pubDate>Tue, 01 Aug 2000 17:49:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/load-calculation/m-p/2434035#M768072</guid>
      <dc:creator>Alan Riggs</dc:creator>
      <dc:date>2000-08-01T17:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Load calculation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/load-calculation/m-p/2434036#M768073</link>
      <description>sar (system activity reporter) can be setup through cron to capture a large range of performance data i.e. cpu, buffer, block device, tty activity, system calls, swapping, and many other statistics.&lt;BR /&gt;&lt;BR /&gt;To set it up:&lt;BR /&gt;1) mkdir /var/adm/sa&lt;BR /&gt;2) chown adm:adm /var/adm/sa&lt;BR /&gt;3) create the following root cron entry:&lt;BR /&gt;0 6-18 * * * su adm -c "/usr/lib/sa/sa1 900 4"&lt;BR /&gt;This will run the collection progran every day between 06:00 &amp;amp; 18:00 every 900 seconds (15 minutes"&lt;BR /&gt;&lt;BR /&gt;To view information use:&lt;BR /&gt;sar -? -f /var/adm/sa/sa??&lt;BR /&gt;&lt;BR /&gt;where -? is sar option man sar&lt;BR /&gt;where sa?? is the date of the month i.e. sa01&lt;BR /&gt;&lt;BR /&gt;Brian&lt;BR /&gt;&amp;lt;*(((&amp;gt;&amp;lt; er</description>
      <pubDate>Tue, 01 Aug 2000 18:29:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/load-calculation/m-p/2434036#M768073</guid>
      <dc:creator>Brian M. Fisher</dc:creator>
      <dc:date>2000-08-01T18:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: Load calculation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/load-calculation/m-p/2434037#M768074</link>
      <description>Every five seconds, the kernel walks the proc  table and counts how many runnable and imminently runnable processes there are at that specific time.  The load average is an average of the last 12 totals.&lt;BR /&gt;&lt;BR /&gt;The actual formula is statistical, so the kernel doesn't have to&lt;BR /&gt;remember each of the last 12 values.  The formula is:&lt;BR /&gt;&lt;BR /&gt;new average = [previous average * e^(-1/12)] + (new value * [1 - e^(-1/12)])&lt;BR /&gt;&lt;BR /&gt;There is a more comprehensive explanation in  Document Id  W3564348</description>
      <pubDate>Wed, 02 Aug 2000 01:31:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/load-calculation/m-p/2434037#M768074</guid>
      <dc:creator>Anthony Goonetilleke</dc:creator>
      <dc:date>2000-08-02T01:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Load calculation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/load-calculation/m-p/2434038#M768075</link>
      <description>Try sar, top, glance(paid product), uptime, w,vmstat etc.</description>
      <pubDate>Wed, 02 Aug 2000 06:58:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/load-calculation/m-p/2434038#M768075</guid>
      <dc:creator>Vincente Fernandes</dc:creator>
      <dc:date>2000-08-02T06:58:33Z</dc:date>
    </item>
  </channel>
</rss>

