<?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: How can I gather performance history for redhat linux in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371916#M35462</link>
    <description>Just to add a different perspective, and part of the reasons I wrote collectl, is I'm a firm believer in collecting a lot of data and collecting it often.  The problem I find with sar is most people set it up using the default monitoring interval of one sample every 10 minutes.  I suppose this is fine if you're looking for very coarse averages, but if you want to actually try and figure out what your system is doing that's not nearly frequent enough.  collectl takes 10 second samples by default when run as a daemon and depending on the types of analysis I'm doing, I'll sometimes crank the sampling interval down to 1 second.  Even at that level of granularity you're using less than 1% of the cpu and this will rarely effect the rest of what the system is doing.  Of course your mileage may vary.&lt;BR /&gt;&lt;BR /&gt;The other problem I have with sar is its output format. I want to be able to see everything that's happening each monitoring interval on the same line and that's why by default collectl displays its output in brief format.  It you make your window wide enough you can see almost everything.  Sar on the other hand chooses to include 2 decimal points of precision for virtually everything, wasting 3 columns per field.  Do you really care how many MB/sec you're getting from your disk at that granularity?&lt;BR /&gt;&lt;BR /&gt;On the other hand if you run sar at a monitoring frequency of 5-10 samples, you'll get useful data out of it.  But then you still have to figure out how to visually parse it.&lt;BR /&gt;&lt;BR /&gt;Have other played with collectl at all yet?  One of my goals was to eliminate the need for all the *stat tools and others and I'd like to know if I succeeded or not.&lt;BR /&gt;&lt;BR /&gt;Just a few comments to stimulate some discussion.  ;-)&lt;BR /&gt;&lt;BR /&gt;-mark&lt;BR /&gt;</description>
    <pubDate>Thu, 05 Mar 2009 22:00:00 GMT</pubDate>
    <dc:creator>MarkSeger</dc:creator>
    <dc:date>2009-03-05T22:00:00Z</dc:date>
    <item>
      <title>How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371911#M35457</link>
      <description>Greetings fellow admins;&lt;BR /&gt;&lt;BR /&gt;Wondering how to gather and keep performance stats for our linux blades.  On hpux we can use glance and ovpa (measureware) software to extract data from ovpa logfiles (logappl, etc) to spreadsheets.   How can this be done on linux, see there is glance and ovpa available for linux, is anyone using glance/ovpa?  We have HP-SIM but have not used it much wondering if that is a option or is there (no doubt) another option.&lt;BR /&gt;&lt;BR /&gt;Thank you for your responses, and will do my best to assign points.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Norm&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Mar 2009 22:27:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371911#M35457</guid>
      <dc:creator>wvsa</dc:creator>
      <dc:date>2009-03-04T22:27:02Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371912#M35458</link>
      <description>You can use the sar command and schedule via cron. This is all done if you install the sysstat package.&lt;BR /&gt;&lt;BR /&gt;Another, my preferred option, is to use collectl (collect for linux).&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://collectl.sourceforge.net/" target="_blank"&gt;http://collectl.sourceforge.net/&lt;/A&gt;</description>
      <pubDate>Wed, 04 Mar 2009 22:51:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371912#M35458</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2009-03-04T22:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371913#M35459</link>
      <description>I've installed OPVA on Linux servers and it seems to work like the HP version.  I'm able to collect similar information.&lt;BR /&gt;&lt;BR /&gt;I use it primarily with OVO so I have never done exports or anything but I would imagine it would work the same. &lt;BR /&gt;&lt;BR /&gt;Easiest way is to download the Linux version and check it out.</description>
      <pubDate>Thu, 05 Mar 2009 01:16:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371913#M35459</guid>
      <dc:creator>Glenn S. Davidson</dc:creator>
      <dc:date>2009-03-05T01:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371914#M35460</link>
      <description>I've thrown together a "quick n dirty" script for us here (until we purchase the license for Measureware):&lt;BR /&gt;&lt;BR /&gt;----------------------------------------------------&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;&lt;BR /&gt;date=`date +%Y/%m/%d\ %H:%M:%S`&lt;BR /&gt;date=": $date "&lt;BR /&gt;loadavg=`uptime |awk {'print $11'}|cut -d ',' -f1`&lt;BR /&gt;cpuidle=`top -b -H -n 1|grep Cpu|awk {'print $5'}|cut -d '%' -f1`&lt;BR /&gt;cpuload=$(echo 100 - $cpuidle| bc -l)&lt;BR /&gt;io=`vmstat |grep -v -e io -e bi|awk {'print $9, $10'}`&lt;BR /&gt;#perc=`sar -r 1 1|grep Average|awk {'print $4'}`&lt;BR /&gt;mem_output=`free -m|grep Mem|awk {'print $2,$3,$7'}`&lt;BR /&gt;mem_total=`echo $mem_output|cut -d ' ' -f1`&lt;BR /&gt;mem_used=`echo $mem_output|cut -d ' ' -f2`&lt;BR /&gt;mem_cached=`echo $mem_output|cut -d ' ' -f3`&lt;BR /&gt;mem_actual=$(( $mem_used - $mem_cached ))&lt;BR /&gt;mem_perc=$(echo "scale=2; $mem_total / $mem_actual" | bc -l)&lt;BR /&gt;swap=`vmstat |grep -v -e io -e bi|awk {'print $8, $9'}`&lt;BR /&gt;&lt;BR /&gt;echo "$date: $loadavg" &amp;gt;&amp;gt; /rdisk01/stat/load-stat.log&lt;BR /&gt;echo "$date: $cpuload" &amp;gt;&amp;gt; /rdisk01/stat/cpu-stat.log&lt;BR /&gt;echo "$date: $io" &amp;gt;&amp;gt; /rdisk01/stat/disk-stat.log&lt;BR /&gt;echo "$date: ${mem_perc}" &amp;gt;&amp;gt; /rdisk01/stat/mem-perc-stat.log&lt;BR /&gt;#echo "$date: ${actual}MB" &amp;gt;&amp;gt; /rdisk01/stat/mem-used-stat.log&lt;BR /&gt;echo "$date: $swap" &amp;gt;&amp;gt; /rdisk01/stat/swap-stat.log&lt;BR /&gt;----------------------------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Mar 2009 14:25:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371914#M35460</guid>
      <dc:creator>Steven McCoy</dc:creator>
      <dc:date>2009-03-05T14:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371915#M35461</link>
      <description>I use sar and it's great. It actually installs 2 cron jobs that sample the system:&lt;BR /&gt;&lt;BR /&gt;*/10 * * * * root /usr/lib/sa/sa1 1 1&lt;BR /&gt;53 23 * * * root /usr/lib/sa/sa2 -A&lt;BR /&gt;&lt;BR /&gt;But if you want to show the stats to the boss - better use graphs:  mrtg,cacti or even gnuplot.</description>
      <pubDate>Thu, 05 Mar 2009 15:07:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371915#M35461</guid>
      <dc:creator>Alexander Chuzhoy</dc:creator>
      <dc:date>2009-03-05T15:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371916#M35462</link>
      <description>Just to add a different perspective, and part of the reasons I wrote collectl, is I'm a firm believer in collecting a lot of data and collecting it often.  The problem I find with sar is most people set it up using the default monitoring interval of one sample every 10 minutes.  I suppose this is fine if you're looking for very coarse averages, but if you want to actually try and figure out what your system is doing that's not nearly frequent enough.  collectl takes 10 second samples by default when run as a daemon and depending on the types of analysis I'm doing, I'll sometimes crank the sampling interval down to 1 second.  Even at that level of granularity you're using less than 1% of the cpu and this will rarely effect the rest of what the system is doing.  Of course your mileage may vary.&lt;BR /&gt;&lt;BR /&gt;The other problem I have with sar is its output format. I want to be able to see everything that's happening each monitoring interval on the same line and that's why by default collectl displays its output in brief format.  It you make your window wide enough you can see almost everything.  Sar on the other hand chooses to include 2 decimal points of precision for virtually everything, wasting 3 columns per field.  Do you really care how many MB/sec you're getting from your disk at that granularity?&lt;BR /&gt;&lt;BR /&gt;On the other hand if you run sar at a monitoring frequency of 5-10 samples, you'll get useful data out of it.  But then you still have to figure out how to visually parse it.&lt;BR /&gt;&lt;BR /&gt;Have other played with collectl at all yet?  One of my goals was to eliminate the need for all the *stat tools and others and I'd like to know if I succeeded or not.&lt;BR /&gt;&lt;BR /&gt;Just a few comments to stimulate some discussion.  ;-)&lt;BR /&gt;&lt;BR /&gt;-mark&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Mar 2009 22:00:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371916#M35462</guid>
      <dc:creator>MarkSeger</dc:creator>
      <dc:date>2009-03-05T22:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371917#M35463</link>
      <description>Just to add a different perspective, and part of the reasons I wrote collectl, is I'm a firm believer in collecting a lot of data and collecting it often.  The problem I find with sar is most people set it up using the default monitoring interval of one sample every 10 minutes.  I suppose this is fine if you're looking for very coarse averages, but if you want to actually try and figure out what your system is doing that's not nearly frequent enough.  collectl takes 10 second samples by default when run as a daemon and depending on the types of analysis I'm doing, I'll sometimes crank the sampling interval down to 1 second.  Even at that level of granularity you're using less than 1% of the cpu and this will rarely effect the rest of what the system is doing.  Of course your mileage may vary.&lt;BR /&gt;&lt;BR /&gt;The other problem I have with sar is its output format. I want to be able to see everything that's happening each monitoring interval on the same line and that's why by default collectl displays its output in brief format.  It you make your window wide enough you can see almost everything.  Sar on the other hand chooses to include 2 decimal points of precision for virtually everything, wasting 3 columns per field.  Do you really care how many MB/sec you're getting from your disk at that granularity?&lt;BR /&gt;&lt;BR /&gt;On the other hand if you run sar at a monitoring frequency of 5-10 seconds, you'll get useful data out of it.  But then you still have to figure out how to visually parse its output.&lt;BR /&gt;&lt;BR /&gt;Have other played with collectl at all yet?  One of my goals was to eliminate the need for all the *stat tools and others and I'd like to know if I succeeded or not.&lt;BR /&gt;&lt;BR /&gt;Just a few comments to stimulate some discussion.  ;-)&lt;BR /&gt;&lt;BR /&gt;-mark&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Mar 2009 22:00:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371917#M35463</guid>
      <dc:creator>MarkSeger</dc:creator>
      <dc:date>2009-03-05T22:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371918#M35464</link>
      <description>sar _is_ great, if you know how to use it. it's probably not as user friendly as glance.&lt;BR /&gt;&lt;BR /&gt;ovpa works just as it does on hpux and solaris.&lt;BR /&gt;&lt;BR /&gt;a wonderfull open source tool is collectd (&lt;A href="http://collectd.org/index.shtml)" target="_blank"&gt;http://collectd.org/index.shtml)&lt;/A&gt; and to a lesser extend cacti (&lt;A href="http://www.cacti.net/screenshots.php)." target="_blank"&gt;http://www.cacti.net/screenshots.php).&lt;/A&gt;</description>
      <pubDate>Fri, 06 Mar 2009 07:56:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371918#M35464</guid>
      <dc:creator>dirk dierickx</dc:creator>
      <dc:date>2009-03-06T07:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371919#M35465</link>
      <description>2 comments about sar:&lt;BR /&gt;&lt;BR /&gt;If you do use it, set your monitoring interval to something that will actually show you what's really happening on your system.  Using an interval of 10 minutes results in mush since you can't see any abnormalities.&lt;BR /&gt;&lt;BR /&gt;One of the biggest problem I have with sar is its output format which does not make very efficient use of screen real estate.  I want to see a bunch of columns of the same data, one line/sample, almost like a spreasdheet.  This makes it much easier to see when something changes. It also makes it real easy to scrape that data and load it into other tools.&lt;BR /&gt;&lt;BR /&gt;-mark</description>
      <pubDate>Fri, 06 Mar 2009 12:32:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371919#M35465</guid>
      <dc:creator>MarkSeger</dc:creator>
      <dc:date>2009-03-06T12:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371920#M35466</link>
      <description>Does collectl handle disks named like xvda, xvdb etc. (xen guest disks) or the dm-1 type of disks ?</description>
      <pubDate>Fri, 06 Mar 2009 12:56:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371920#M35466</guid>
      <dc:creator>westb</dc:creator>
      <dc:date>2009-03-06T12:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371921#M35467</link>
      <description>disk types - collectl gets all its data from /proc/diskinfo, as do most tools including sar.  For now, all I look at are types of: cciss, hd, sd and dm.  It would be fairly easy to extend that list.&lt;BR /&gt;&lt;BR /&gt;As for dm, there is a slight trick in that when I display total disk usage not to include the dm numbers.&lt;BR /&gt;&lt;BR /&gt;I have played a tad with virtual environments such as netware, to at least make sure collectl will run in them and it does.  But I haven't done anything with virtual disks, at least not yet.  If you care to shoot me an email with an extract from /proc/diskstats I might be able to add support and let you try it out for me.  ;-)&lt;BR /&gt;&lt;BR /&gt;-mark&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Mar 2009 13:04:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371921#M35467</guid>
      <dc:creator>MarkSeger</dc:creator>
      <dc:date>2009-03-06T13:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371922#M35468</link>
      <description>There are a few tools that read sar output and generate better reports for you. One I've used a couple of times is ksar ( &lt;A href="http://ksar.atomique.net/" target="_blank"&gt;http://ksar.atomique.net/&lt;/A&gt; ). Even though it's written in Java and I'm seriously anti-Java, I have to admit that I think it generates pretty graphs.&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Mar 2009 16:06:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371922#M35468</guid>
      <dc:creator>Heironimus</dc:creator>
      <dc:date>2009-03-06T16:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371923#M35469</link>
      <description>Actually I just became familiar with ksar and have to agree, it is pretty slick.  I even wrote a quick script to make collectl data look like sar data and was then able to plot it.  The only problem is ksar is to heavily ties into sar data you can only display sar data with it.&lt;BR /&gt;&lt;BR /&gt;On the other hand have you heard of tlviz?  It's actually a visual basic tool designed for plotting VMS data but is general enough that with a couple of minor tweaks I was able to convert collectl output to the format it prefers.  For those heavily committed to sar I'd suggest converting its output to something tlviz can read and you won't be sorry.  It can overlay data from multiple systems on the same plot, generate trend lines and all other kinds of fancy features I haven't seen anywhere else.  And yes, it is freeware.  Just google it.&lt;BR /&gt;&lt;BR /&gt;-mark</description>
      <pubDate>Fri, 06 Mar 2009 16:13:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371923#M35469</guid>
      <dc:creator>MarkSeger</dc:creator>
      <dc:date>2009-03-06T16:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371924#M35470</link>
      <description>I'm happy to report collectl now DOES support xen virtual disks, thanks to some email exchanges and testing with brian.  Look for it in the next release which I'm hoping to get out in the next week or two OR if you really want to get your hands on it sooner drop me a line and you can help test it.&lt;BR /&gt;-mark</description>
      <pubDate>Fri, 06 Mar 2009 20:59:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371924#M35470</guid>
      <dc:creator>MarkSeger</dc:creator>
      <dc:date>2009-03-06T20:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371925#M35471</link>
      <description>Congrats, that feature may come in handy for us.&lt;BR /&gt;&lt;BR /&gt;I am really enjoying working with collectl, thanks for the tips. I especially love the plot flag (-P) when using gnuplot.&lt;BR /&gt;&lt;BR /&gt;Great tool!</description>
      <pubDate>Fri, 06 Mar 2009 22:52:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371925#M35471</guid>
      <dc:creator>Steven McCoy</dc:creator>
      <dc:date>2009-03-06T22:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371926#M35472</link>
      <description>Mark;  &lt;BR /&gt;&lt;BR /&gt;Thank you for your input.  In reading the thread and being a new user to collectl (looks like a great tool now have it running 20 blade servers) do have a few questions:&lt;BR /&gt;&lt;BR /&gt;1. How can I modify the collectl output to read by tlviz.  We use tlviz to read performance info from our EVA's so I'm familar with the tool.&lt;BR /&gt;&lt;BR /&gt;2.  How would you use gnuplot to view collectl output?&lt;BR /&gt;&lt;BR /&gt;3.  What options would you recomend to use to run collectl.  Here is snippet of the config file&lt;BR /&gt;DaemonCommands = -f /var/log/collectl -r00:01,14 -m -F60 -s+CDFNYZ.  Believe this line tells collectl what to collect.&lt;BR /&gt;&lt;BR /&gt;Thank you for your response&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Norm&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Mar 2009 17:57:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371926#M35472</guid>
      <dc:creator>wvsa</dc:creator>
      <dc:date>2009-03-10T17:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371927#M35473</link>
      <description>All;&lt;BR /&gt;&lt;BR /&gt;Thank you for input, looks like the thread was helpful for several of us.  Thanks for the ksar post.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Mar 2009 18:03:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371927#M35473</guid>
      <dc:creator>wvsa</dc:creator>
      <dc:date>2009-03-10T18:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371928#M35474</link>
      <description>to answer your questions:&lt;BR /&gt;&lt;BR /&gt;- I wrote a utility to convert collectl plot data to tlviz readable data, but it's not open source!  Send me an email and an HP customer I'll give you a copy.&lt;BR /&gt;&lt;BR /&gt;- Using gnuplot for plotting is a little more complicated but it can be done.  If you're not a gnuplot user you may have a lot of reading to do OR you could read the data into something like Excel and use its plotting facility,  OR I have another non-open source tool I can share that calls gnuplot for you.&lt;BR /&gt;&lt;BR /&gt;- when I run collectl I don't change anything in collectl.conf and just run it as is. &lt;BR /&gt;&lt;BR /&gt;The whole thing about -s can be confusing in that it controls both the collection as well as display, noting collectl collects the same data whether you specific a lower or upper case letter!  If you use lowercase c, on playback you only set CPU summary data which is typically enough.  You can always play it back again with -sC if you really think you need details.  Same goes for all the -sdfn.  Make sense?  Try this:&lt;BR /&gt;&lt;BR /&gt;collectl -c5 -scdn -f/tmp&lt;BR /&gt;&lt;BR /&gt;and you'll get a file with 5 samples.  Now play it back with&lt;BR /&gt;&lt;BR /&gt;collectl -p /tmp/xxx&lt;BR /&gt;&lt;BR /&gt;and you'll see summary data for cdn.  Now play it back with&lt;BR /&gt;&lt;BR /&gt;collectl -p /tmp/xxx -sCDN&lt;BR /&gt;&lt;BR /&gt;and you'll see detail.  You can even mix 'n match OR try -scdnCDN and get everything.&lt;BR /&gt;&lt;BR /&gt;enjoy&lt;BR /&gt;-mark</description>
      <pubDate>Tue, 10 Mar 2009 19:23:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371928#M35474</guid>
      <dc:creator>MarkSeger</dc:creator>
      <dc:date>2009-03-10T19:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371929#M35475</link>
      <description>Hi Mark, &lt;BR /&gt;&lt;BR /&gt;Just sent you a email, not knowing your email address I'm hoping I'm sending it to the right place.&lt;BR /&gt;&lt;BR /&gt;Norm&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Mar 2009 17:08:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371929#M35475</guid>
      <dc:creator>wvsa</dc:creator>
      <dc:date>2009-03-11T17:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: How can I gather performance history for redhat linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371930#M35476</link>
      <description>Just thought I'd let you and anyone else watching this note that I just released a new version of collectl on sourceforg.  Big news here is I finally cleaned up the NFS reporting section and added NFS V4 support.  Also new, but perhaps less interesting is I added support for /proc/buddyinfo which tells you how your memory is fragmented.&lt;BR /&gt;-mark&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Mar 2009 13:44:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-can-i-gather-performance-history-for-redhat-linux/m-p/4371930#M35476</guid>
      <dc:creator>MarkSeger</dc:creator>
      <dc:date>2009-03-12T13:44:55Z</dc:date>
    </item>
  </channel>
</rss>

