<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: HowTo: Create sar Graphs With kSar [ Identifying Linux Bottlenecks ]</title> <atom:link href="http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html/feed" rel="self" type="application/rss+xml" /><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html</link> <description>This is a Linux sys admin journal by Vivek about sys admin work, Linux tips &#38; tricks, hacks, news and more.</description> <lastBuildDate>Fri, 10 Feb 2012 20:37:43 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: sid</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-175900</link> <dc:creator>sid</dc:creator> <pubDate>Mon, 21 Nov 2011 22:59:13 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-175900</guid> <description>One of the biggest flaws with this tool is that we need to run our servers using X session which is not a good idea.
Is there a way to get the reports through web pages using Apache or pull reports off to another server and do the same thing ?</description> <content:encoded><![CDATA[<p>One of the biggest flaws with this tool is that we need to run our servers using X session which is not a good idea.</p><p>Is there a way to get the reports through web pages using Apache or pull reports off to another server and do the same thing ?</p> ]]></content:encoded> </item> <item><title>By: Bijohn Vincent</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-174263</link> <dc:creator>Bijohn Vincent</dc:creator> <pubDate>Fri, 23 Sep 2011 04:51:38 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-174263</guid> <description>Great !!!!!!!!!!!!! Very useful article....
But there is some issues with LC_ALL=C sar -A &gt; 1234.txt.
The -A option..............  It is throwing java exceptions.
java.lang.NumberFormatException: For input string: &quot;kbhugfree&quot;
at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:1242)
at java.lang.Float.valueOf(Float.java:405)
at java.lang.Float.(Float.java:506)
at net.atomique.ksar.Linux.Parser.parse(Parser.java:992)
at net.atomique.ksar.kSar.parse(kSar.java:750)
at net.atomique.ksar.FileRead.run(FileRead.java:62)
If I use ,
bijohn@lucid:~$ LC_ALL=C sar -H &gt; 1234.txt
It is not generating java exceptions. But not plotting output.
Other options are Working fine :
bijohn@lucid:~$ LC_ALL=C sar -bqr &gt; 1234.txt
Any suggestion ????</description> <content:encoded><![CDATA[<p>Great !!!!!!!!!!!!! Very useful article&#8230;.</p><p>But there is some issues with LC_ALL=C sar -A &gt; 1234.txt.<br
/> The -A option&#8230;&#8230;&#8230;&#8230;..  It is throwing java exceptions.</p><p>java.lang.NumberFormatException: For input string: &#8220;kbhugfree&#8221;<br
/> at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:1242)<br
/> at java.lang.Float.valueOf(Float.java:405)<br
/> at java.lang.Float.(Float.java:506)<br
/> at net.atomique.ksar.Linux.Parser.parse(Parser.java:992)<br
/> at net.atomique.ksar.kSar.parse(kSar.java:750)<br
/> at net.atomique.ksar.FileRead.run(FileRead.java:62)</p><p>If I use ,<br
/> bijohn@lucid:~$ LC_ALL=C sar -H &gt; 1234.txt<br
/> It is not generating java exceptions. But not plotting output.</p><p>Other options are Working fine :<br
/> bijohn@lucid:~$ LC_ALL=C sar -bqr &gt; 1234.txt</p><p>Any suggestion ????</p> ]]></content:encoded> </item> <item><title>By: Jacobo</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-174206</link> <dc:creator>Jacobo</dc:creator> <pubDate>Wed, 21 Sep 2011 20:12:34 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-174206</guid> <description>Hi, I took the liberty to create a script to get the sar statistics, please feel free to modify it if you like it
Thank you.
Jacobo.
&lt;pre lang=&quot;bash&quot;&gt;
#!/bin/bash
#
# Script to get sar statistics#
## sar_stats.sh ##
echo &quot;Enter the number of intervals (seconds) for the sar statistics:&quot;
read int
echo &quot;enter the number of output lines (count) to process:&quot;
read cnt
while :
do
clear
echo &quot;*******************************&quot;
echo &quot;* Choose from the following: *&quot;
echo &quot;*******************************&quot;
echo &quot;* [1] To view process creation statistics *&quot;
echo &quot;* [2] To view I/O and transfer rate statistics *&quot;
echo &quot;* [3] To view paging statistics *&quot;
echo &quot;* [4] To view block device statistics *&quot;
echo &quot;* [5] To view statistics for all interrupt statistics *&quot;
echo &quot;* [6] To view device specific network statistics *&quot;
echo &quot;* [7] To view extended network statistics *&quot;
echo &quot;* [8] To view CPU specific statistics *&quot;
echo &quot;* [9] To view Only 1st CPU stats *&quot;
echo &quot;* [10] To view queue length and load averages statistics *&quot;
echo &quot;* [11] To view memory and swap space utilization statistics *&quot;
echo &quot;* [12] To view inode, file and other kernel tables statistics*&quot;
echo &quot;* [13] To view system switching activity statistics *&quot;
echo &quot;* [14] To view swapping statistics *&quot;
echo &quot;* [15] To view statistics for a given process ( Example: a process called Apache with PID # 3256) *&quot;
echo &quot;* [0] Exit *&quot;
echo &quot;************************&quot;
echo -n &quot;Enter your menu choice [0-15]: &quot;
D=`/bin/date &#039;+%B.%d&#039;`
INT=$int
CNT=$cnt
read mychoice
case $mychoice in
1) echo &quot;process creation statistics&quot;;
sar -c $INT $CNT &#124;tee /tmp/sar_proc_stat_$D
echo &quot;This file will be saved to /tmp/sar_pc_stat_$D&quot;
sleep 3 ;;
2) echo &quot;I/O and transfer rate statistics&quot;
sar -b $INT $CNT &#124;tee /tmp/sar_IO_TR_stat_$D
echo &quot;This file will be saved to /tmp/sar_IO_TR_stat_$D&quot;
sleep 3 ;;
3) echo &quot;paging statistics&quot;
sar -B $INT $CNT &#124;tee /tmp/sar_pag_stat_$D
echo &quot;This file will be saved to /tmp/sar_pag_stat_$D&quot;
sleep 3 ;;
4) echo &quot;block device statistics&quot;
sar -d $INT $CNT &#124;tee /tmp/sar_block_stat_$D
echo &quot;This file will be saved to /tmp/sar_block_stat_$D&quot;
sleep 3 ;;
5) echo &quot;all interrupt statistics statistics&quot;
sar -I XALL $INT $CNT &#124;tee /tmp/sar_Intr_stat_$D
echo &quot;This file will be saved to /tmp/sar_Intr_stat_$D&quot;
sleep 3 ;;
6) echo &quot;specific network statistics&quot;
sar -n DEV $INT $CNT &#124;tee /tmp/sar_Net_stat_$D
echo &quot;This file will be saved to /tmp/sar_Net_stat_$D&quot;
sleep 3 ;;
7) echo &quot;Extended network statistics&quot;
sar -n EDEV $INT $CNT &#124;tee /tmp/sar_ENet_stat_$D
echo &quot;This file will be saved to /tmp/sar_ENet_stat_$D&quot;
sleep 3 ;;
8) echo &quot;CPU specific statistics&quot;
sar -P ALL $INT $CNT &#124;tee /tmp/sar_CPU_stat_$D
echo &quot;This file will be saved to /tmp/sar_CPU_stat_$D&quot;
sleep 3 ;;
9) echo &quot;1st CPU statistics&quot;
sar -P 1 $INT $CNT &#124;tee /tmp/sar_1CPU_stat_$D
echo &quot;This file will be saved to /tmp/sar_1CPU_stat_$D&quot;
sleep 3 ;;
10) echo &quot;queue length and load averages statistics&quot;
sar -q $INT $CNT &#124;tee /tmp/sar_queue_stat_$D
echo &quot;This file will be saved to /tmp/sar_queue_stat_$D&quot;
sleep 3 ;;
11) echo &quot;memory and swap space utilization statistics&quot;
sar -r $INT $CNT &#124;tee /tmp/sar_mem-swap_stat_$D
echo &quot;This file will be saved to /tmp/sar_mem-swap_stat_$D&quot;
sleep 3 ;;
12) echo &quot;inode, file and other kernel tables statistics&quot;
sar -v $INT $CNT &#124;tee /tmp/sar_kern_stat_$D
echo &quot;This file will be saved to /tmp/sar_kern_stat_$D&quot;
sleep 3 ;;
13) echo &quot;system switching activity statistics&quot;
sar -w $INT $CNT &#124;tee /tmp/sar_switch_stat_$D
echo &quot;This file will be saved to /tmp/sar_switch_stat_$D&quot;
sleep 3 ;;
14) echo &quot;swapping statistics&quot;
sar -W $INT $CNT &#124;tee /tmp/sar_swap_stat_$D
echo &quot;This file will be saved to /tmp/sar_swap_stat_$D&quot;
sleep 3 ;;
15) echo &quot;statistics for a given process (Example: PID # 3256)&quot;
echo &quot;Enter the proccess number you want to check:&quot;
read PROC
sar -x $PROC $INT $CNT &#124;tee /tmp/sar_proc_stat_$D
echo &quot;This file will be saved to /tmp/sar_proc_stat_$D&quot;
sleep 3 ;;
0) exit 0;;
*) echo &quot;BAD CHOICE!!! Please select choice 1,2,3,4,5,6 ........ &quot;;
echo &quot;Press Enter to continue. . .&quot; ; read ;;
esac
done
&lt;/pre&gt;</description> <content:encoded><![CDATA[<p>Hi, I took the liberty to create a script to get the sar statistics, please feel free to modify it if you like it</p><p>Thank you.<br
/> Jacobo.</p><pre lang="bash">
#!/bin/bash
#
# Script to get sar statistics#
## sar_stats.sh ##
echo "Enter the number of intervals (seconds) for the sar statistics:"
read int
echo "enter the number of output lines (count) to process:"
read cnt
while :
do
clear
echo "*******************************"
echo "* Choose from the following: *"
echo "*******************************"
echo "* [1] To view process creation statistics *"
echo "* [2] To view I/O and transfer rate statistics *"
echo "* [3] To view paging statistics *"
echo "* [4] To view block device statistics *"
echo "* [5] To view statistics for all interrupt statistics *"
echo "* [6] To view device specific network statistics *"
echo "* [7] To view extended network statistics *"
echo "* [8] To view CPU specific statistics *"
echo "* [9] To view Only 1st CPU stats *"
echo "* [10] To view queue length and load averages statistics *"
echo "* [11] To view memory and swap space utilization statistics *"
echo "* [12] To view inode, file and other kernel tables statistics*"
echo "* [13] To view system switching activity statistics *"
echo "* [14] To view swapping statistics *"
echo "* [15] To view statistics for a given process ( Example: a process called Apache with PID # 3256) *"
echo "* [0] Exit *"
echo "************************"
echo -n "Enter your menu choice [0-15]: "
D=`/bin/date '+%B.%d'`
INT=$int
CNT=$cnt
read mychoice
case $mychoice in
1) echo "process creation statistics";
sar -c $INT $CNT |tee /tmp/sar_proc_stat_$D
echo "This file will be saved to /tmp/sar_pc_stat_$D"
sleep 3 ;;
2) echo "I/O and transfer rate statistics"
sar -b $INT $CNT |tee /tmp/sar_IO_TR_stat_$D
echo "This file will be saved to /tmp/sar_IO_TR_stat_$D"
sleep 3 ;;
3) echo "paging statistics"
sar -B $INT $CNT |tee /tmp/sar_pag_stat_$D
echo "This file will be saved to /tmp/sar_pag_stat_$D"
sleep 3 ;;
4) echo "block device statistics"
sar -d $INT $CNT |tee /tmp/sar_block_stat_$D
echo "This file will be saved to /tmp/sar_block_stat_$D"
sleep 3 ;;
5) echo "all interrupt statistics statistics"
sar -I XALL $INT $CNT |tee /tmp/sar_Intr_stat_$D
echo "This file will be saved to /tmp/sar_Intr_stat_$D"
sleep 3 ;;
6) echo "specific network statistics"
sar -n DEV $INT $CNT |tee /tmp/sar_Net_stat_$D
echo "This file will be saved to /tmp/sar_Net_stat_$D"
sleep 3 ;;
7) echo "Extended network statistics"
sar -n EDEV $INT $CNT |tee /tmp/sar_ENet_stat_$D
echo "This file will be saved to /tmp/sar_ENet_stat_$D"
sleep 3 ;;
8) echo "CPU specific statistics"
sar -P ALL $INT $CNT |tee /tmp/sar_CPU_stat_$D
echo "This file will be saved to /tmp/sar_CPU_stat_$D"
sleep 3 ;;
9) echo "1st CPU statistics"
sar -P 1 $INT $CNT |tee /tmp/sar_1CPU_stat_$D
echo "This file will be saved to /tmp/sar_1CPU_stat_$D"
sleep 3 ;;
10) echo "queue length and load averages statistics"
sar -q $INT $CNT |tee /tmp/sar_queue_stat_$D
echo "This file will be saved to /tmp/sar_queue_stat_$D"
sleep 3 ;;
11) echo "memory and swap space utilization statistics"
sar -r $INT $CNT |tee /tmp/sar_mem-swap_stat_$D
echo "This file will be saved to /tmp/sar_mem-swap_stat_$D"
sleep 3 ;;
12) echo "inode, file and other kernel tables statistics"
sar -v $INT $CNT |tee /tmp/sar_kern_stat_$D
echo "This file will be saved to /tmp/sar_kern_stat_$D"
sleep 3 ;;
13) echo "system switching activity statistics"
sar -w $INT $CNT |tee /tmp/sar_switch_stat_$D
echo "This file will be saved to /tmp/sar_switch_stat_$D"
sleep 3 ;;
14) echo "swapping statistics"
sar -W $INT $CNT |tee /tmp/sar_swap_stat_$D
echo "This file will be saved to /tmp/sar_swap_stat_$D"
sleep 3 ;;
15) echo "statistics for a given process (Example: PID # 3256)"
echo "Enter the proccess number you want to check:"
read PROC
sar -x $PROC $INT $CNT |tee /tmp/sar_proc_stat_$D
echo "This file will be saved to /tmp/sar_proc_stat_$D"
sleep 3 ;;
0) exit 0;;
*) echo "BAD CHOICE!!! Please select choice 1,2,3,4,5,6 ........ ";
echo "Press Enter to continue. . ." ; read ;;
esac
done
</pre>]]></content:encoded> </item> <item><title>By: tangosara1</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-174022</link> <dc:creator>tangosara1</dc:creator> <pubDate>Fri, 16 Sep 2011 21:12:53 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-174022</guid> <description>Excellent information and very nicely explained. Much appreciate all the effort in doing so. Cheers, Tangosara1</description> <content:encoded><![CDATA[<p>Excellent information and very nicely explained. Much appreciate all the effort in doing so. Cheers, Tangosara1</p> ]]></content:encoded> </item> <item><title>By: Kester RIley</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-168359</link> <dc:creator>Kester RIley</dc:creator> <pubDate>Wed, 19 Jan 2011 10:03:20 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-168359</guid> <description>Why when I did &quot;sar -A 5 0&quot; yesterday did it work fine
today after a nw install on a new machine it always opens the file since midnight, and does not update every 5 seconds. Infact nothing I do can make it update &quot;Live&quot; it always opens from midnight to now????</description> <content:encoded><![CDATA[<p>Why when I did &#8220;sar -A 5 0&#8243; yesterday did it work fine</p><p>today after a nw install on a new machine it always opens the file since midnight, and does not update every 5 seconds. Infact nothing I do can make it update &#8220;Live&#8221; it always opens from midnight to now????</p> ]]></content:encoded> </item> <item><title>By: john</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-156769</link> <dc:creator>john</dc:creator> <pubDate>Tue, 22 Jun 2010 15:26:43 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-156769</guid> <description>What if you did not generate SAR file using the locale LC_ALL=C prefix?
I have a sar output in text (without using the locale prefix), but kSar doesn&#039;t parse it. It only knows first timestamp and that&#039;s it.
Any options? Can I tweak the file to see the output?</description> <content:encoded><![CDATA[<p>What if you did not generate SAR file using the locale LC_ALL=C prefix?</p><p>I have a sar output in text (without using the locale prefix), but kSar doesn&#8217;t parse it. It only knows first timestamp and that&#8217;s it.</p><p>Any options? Can I tweak the file to see the output?</p> ]]></content:encoded> </item> <item><title>By: Tarique</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-153556</link> <dc:creator>Tarique</dc:creator> <pubDate>Tue, 16 Feb 2010 11:01:31 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-153556</guid> <description>Useful link!! Thanks</description> <content:encoded><![CDATA[<p>Useful link!! Thanks</p> ]]></content:encoded> </item> <item><title>By: nima0102</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-153540</link> <dc:creator>nima0102</dc:creator> <pubDate>Mon, 15 Feb 2010 15:03:26 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-153540</guid> <description>Hi
First of all thanks for your good article.
I am using munin as monitoring system resources and I think you try it.
Thanks</description> <content:encoded><![CDATA[<p>Hi<br
/> First of all thanks for your good article.<br
/> I am using munin as monitoring system resources and I think you try it.</p><p>Thanks</p> ]]></content:encoded> </item> <item><title>By: Jalal Hajigholamali</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-152843</link> <dc:creator>Jalal Hajigholamali</dc:creator> <pubDate>Mon, 11 Jan 2010 04:00:45 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-152843</guid> <description>Hi,
Useful package, thanks a lot</description> <content:encoded><![CDATA[<p>Hi,<br
/> Useful package, thanks a lot</p> ]]></content:encoded> </item> <item><title>By: Liju</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-152368</link> <dc:creator>Liju</dc:creator> <pubDate>Sat, 19 Dec 2009 04:37:28 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-152368</guid> <description>Great info !!!!!
Really help me lots to get a portable output. Earlier I was used cacti to do this. It&#039;s a online tool and required huge SNMP traffic to analyze. But it&#039;s simple, easy to configure but rich in output.
Thanks,
Liju</description> <content:encoded><![CDATA[<p>Great info !!!!!</p><p>Really help me lots to get a portable output. Earlier I was used cacti to do this. It&#8217;s a online tool and required huge SNMP traffic to analyze. But it&#8217;s simple, easy to configure but rich in output.</p><p>Thanks,<br
/> Liju</p> ]]></content:encoded> </item> <item><title>By: hemanth.hm</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-152359</link> <dc:creator>hemanth.hm</dc:creator> <pubDate>Fri, 18 Dec 2009 17:32:16 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-152359</guid> <description>Similar efforts with dstat : http://h3manth.com/content/plotting-performance-graph-gnulinux-box</description> <content:encoded><![CDATA[<p>Similar efforts with dstat : <a
href="http://h3manth.com/content/plotting-performance-graph-gnulinux-box" rel="nofollow">http://h3manth.com/content/plotting-performance-graph-gnulinux-box</a></p> ]]></content:encoded> </item> <item><title>By: Vivek Gite</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-152334</link> <dc:creator>Vivek Gite</dc:creator> <pubDate>Thu, 17 Dec 2009 17:03:39 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-152334</guid> <description>@Tapas,
I&#039;ve tweaked code a little bit. Try again. This time it should work!</description> <content:encoded><![CDATA[<p>@Tapas,</p><p>I&#8217;ve tweaked code a little bit. Try again. This time it should work!</p> ]]></content:encoded> </item> <item><title>By: Tapas Mallick</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-152329</link> <dc:creator>Tapas Mallick</dc:creator> <pubDate>Thu, 17 Dec 2009 06:30:09 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-152329</guid> <description>Hi,
&quot;Download PDF&quot; lisk is not working, showing &quot;410 Gone&quot;.
Regards,
Tapas</description> <content:encoded><![CDATA[<p>Hi,<br
/> &#8220;Download PDF&#8221; lisk is not working, showing &#8220;410 Gone&#8221;.<br
/> Regards,<br
/> Tapas</p> ]]></content:encoded> </item> <item><title>By: Vivek Gite</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-152325</link> <dc:creator>Vivek Gite</dc:creator> <pubDate>Wed, 16 Dec 2009 15:04:02 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-152325</guid> <description>@Mario,
Thanks for the feedback. However, RHEL / CentOS got older stable version. I already found some good stuff in latest version.</description> <content:encoded><![CDATA[<p>@Mario,</p><p>Thanks for the feedback. However, RHEL / CentOS got older stable version. I already found some good stuff in latest version.</p> ]]></content:encoded> </item> <item><title>By: Mario Vanoni</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-152324</link> <dc:creator>Mario Vanoni</dc:creator> <pubDate>Wed, 16 Dec 2009 14:15:42 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-152324</guid> <description>sysstat-7.0.2-3.el5.x86_64.rpm
very old version, see
http://pagesperso-orange.fr/sebastien.godard/
Wednesday November 11th, 2009
Sysstat 9.0.6 released (stable version).
feedback only</description> <content:encoded><![CDATA[<p>sysstat-7.0.2-3.el5.x86_64.rpm<br
/> very old version, see<br
/> <a
href="http://pagesperso-orange.fr/sebastien.godard/" rel="nofollow">http://pagesperso-orange.fr/sebastien.godard/</a><br
/> Wednesday November 11th, 2009<br
/> Sysstat 9.0.6 released (stable version).<br
/> feedback only</p> ]]></content:encoded> </item> <item><title>By: Vivek Gite</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-152317</link> <dc:creator>Vivek Gite</dc:creator> <pubDate>Wed, 16 Dec 2009 06:04:04 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-152317</guid> <description>@Jaysunn,
Yes those graphs makes more sense with management folks.
@mark / sims - thanks for comment.</description> <content:encoded><![CDATA[<p>@Jaysunn,</p><p>Yes those graphs makes more sense with management folks.</p><p>@mark / sims &#8211; thanks for comment.</p> ]]></content:encoded> </item> <item><title>By: sims</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-152314</link> <dc:creator>sims</dc:creator> <pubDate>Wed, 16 Dec 2009 00:21:19 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-152314</guid> <description>Very very very interesting. I haven&#039;t heard of sar or ksar. Good info! Thanks!</description> <content:encoded><![CDATA[<p>Very very very interesting. I haven&#8217;t heard of sar or ksar. Good info! Thanks!</p> ]]></content:encoded> </item> <item><title>By: Mark Stoecker</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-152312</link> <dc:creator>Mark Stoecker</dc:creator> <pubDate>Tue, 15 Dec 2009 20:21:45 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-152312</guid> <description>Thank you very much for the post.  I enjoy reading your blog.  I am a MySQL DBA and this will help me tremendously in my job.  Thanks again!!</description> <content:encoded><![CDATA[<p>Thank you very much for the post.  I enjoy reading your blog.  I am a MySQL DBA and this will help me tremendously in my job.  Thanks again!!</p> ]]></content:encoded> </item> <item><title>By: Jaysunn</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-152301</link> <dc:creator>Jaysunn</dc:creator> <pubDate>Tue, 15 Dec 2009 13:38:05 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-152301</guid> <description>I have used KSAR many times to provide quality graphs for management.  What A great tutorial.
Excellent.
Jaysunn</description> <content:encoded><![CDATA[<p>I have used KSAR many times to provide quality graphs for management.  What A great tutorial.</p><p>Excellent.</p><p>Jaysunn</p> ]]></content:encoded> </item> <item><title>By: Vivek Gite</title><link>http://www.cyberciti.biz/tips/identifying-linux-bottlenecks-sar-graphs-with-ksar.html#comment-152299</link> <dc:creator>Vivek Gite</dc:creator> <pubDate>Tue, 15 Dec 2009 10:31:09 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/?p=6165#comment-152299</guid> <description>@Bhavya,
They are loading fine here. I do not see any problem.
&lt;code&gt;wget http://files.cyberciti.biz/uploads/tips/2009/12/memory-ksar.png&lt;/code&gt;
O/p
&lt;pre&gt;--2009-12-15 16:00:35--  http://files.cyberciti.biz/uploads/tips/2009/12/memory-ksar.png
Resolving files.cyberciti.biz... 203.190.126.132
Connecting to files.cyberciti.biz&#124;203.190.126.132&#124;:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 100548 (98K) [image/png]
Saving to: `memory-ksar.png&#039;
100%[====================================================================================================================&gt;] 1,00,548    68.5K/s   in 1.4s
2009-12-15 16:00:37 (68.5 KB/s) - `memory-ksar.png&#039; saved [100548/100548]&lt;/pre&gt;</description> <content:encoded><![CDATA[<p>@Bhavya,</p><p>They are loading fine here. I do not see any problem.</p><p><code>wget <a
href="http://files.cyberciti.biz/uploads/tips/2009/12/memory-ksar.png" rel="nofollow">http://files.cyberciti.biz/uploads/tips/2009/12/memory-ksar.png</a></code><br
/> O/p</p><pre>--2009-12-15 16:00:35--  <a href="http://files.cyberciti.biz/uploads/tips/2009/12/memory-ksar.png" rel="nofollow">http://files.cyberciti.biz/uploads/tips/2009/12/memory-ksar.png</a>
Resolving files.cyberciti.biz... 203.190.126.132
Connecting to files.cyberciti.biz|203.190.126.132|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 100548 (98K) [image/png]
Saving to: `memory-ksar.png'
100%[====================================================================================================================>] 1,00,548    68.5K/s   in 1.4s
2009-12-15 16:00:37 (68.5 KB/s) - `memory-ksar.png' saved [100548/100548]</pre>]]></content:encoded> </item> </channel> </rss>
