Networking Forums

Networking Forums > Computer Networking > Linux Networking > performance monitoring

Reply
Thread Tools Display Modes

performance monitoring

 
 
Peter
Guest
Posts: n/a

 
      05-08-2008, 04:45 AM
hello,
is there a graphical tool that can show the usage of CPU, memory for the
past week? most tools I used are command line utilities. not sure if
there is a graphical tool that I can see online. or is there a script
that I can write the performance data to a file and then display in GUI
in another linux box?
thanks.
'
 
Reply With Quote
 
 
 
 
David Schwartz
Guest
Posts: n/a

 
      05-08-2008, 05:26 AM
On May 7, 9:45*pm, Peter <one2001...@yahoo.com> wrote:
> hello,
> is there a graphical tool that can show the usage of CPU, memory for the
> past week? most tools I used are command line utilities. not sure if
> there is a graphical tool that I can see online. or is there a script
> that I can write the performance data to a file and then display in GUI
> * in another linux box?
> thanks.
> '


Nagios is probably the most commonly recommended free tool for doing
this. It can monitor anything that can be expressed as a number -- CPU
usage, free disk space, network traffic, number of processes running,
page faults, whatever.

DS
 
Reply With Quote
 
Burkhard Ott
Guest
Posts: n/a

 
      05-08-2008, 06:07 AM
Am Wed, 07 May 2008 21:45:18 -0700 schrieb Peter:

> hello,
> is there a graphical tool that can show the usage of CPU, memory for the
> past week? most tools I used are command line utilities. not sure if
> there is a graphical tool that I can see online. or is there a script
> that I can write the performance data to a file and then display in GUI
> in another linux box?
> thanks.
> '


cricket.sourceforge.net
 
Reply With Quote
 
Björn Keil
Guest
Posts: n/a

 
      05-08-2008, 11:00 AM
David Schwartz schrieb:
> On May 7, 9:45 pm, Peter <one2001...@yahoo.com> wrote:
>> hello,
>> is there a graphical tool that can show the usage of CPU, memory for the
>> past week? most tools I used are command line utilities. not sure if
>> there is a graphical tool that I can see online. or is there a script
>> that I can write the performance data to a file and then display in GUI
>> in another linux box?
>> thanks.
>> '

>
> Nagios is probably the most commonly recommended free tool for doing
> this. It can monitor anything that can be expressed as a number -- CPU
> usage, free disk space, network traffic, number of processes running,
> page faults, whatever.
>
> DS


Nagios is for monitoring the current state, it doesn't provide history
curves.

Personally I use cacti for graphs and stuff, but that might be a little
too heavy if you just wanna monitor a single one host. It requires you
to have a webserver and a database on one host (though not necessarily
the same) and SNMP installed on the machines you wanna supervise.
http://www.cacti.net/

Greetings,
Björn
 
Reply With Quote
 
Douglas O'Neal
Guest
Posts: n/a

 
      05-08-2008, 12:49 PM
On 05/08/08 07:00, Björn Keil wrote:
> David Schwartz schrieb:
>> On May 7, 9:45 pm, Peter <one2001...@yahoo.com> wrote:
>>> hello,
>>> is there a graphical tool that can show the usage of CPU, memory for the
>>> past week? most tools I used are command line utilities. not sure if
>>> there is a graphical tool that I can see online. or is there a script
>>> that I can write the performance data to a file and then display in GUI
>>> in another linux box?
>>> thanks.
>>> '

>>
>> Nagios is probably the most commonly recommended free tool for doing
>> this. It can monitor anything that can be expressed as a number -- CPU
>> usage, free disk space, network traffic, number of processes running,
>> page faults, whatever.
>>
>> DS

>
> Nagios is for monitoring the current state, it doesn't provide history
> curves.
>
> Personally I use cacti for graphs and stuff, but that might be a little
> too heavy if you just wanna monitor a single one host. It requires you
> to have a webserver and a database on one host (though not necessarily
> the same) and SNMP installed on the machines you wanna supervise.
> http://www.cacti.net/
>
> Greetings,
> Björn


It is trivial to have nagios log performance data to a flat file or a
database. That data can then be fed to your graphing tool of choice.

Doug
 
Reply With Quote
 
Peter
Guest
Posts: n/a

 
      05-08-2008, 02:53 PM
Douglas O'Neal wrote:
> It is trivial to have nagios log performance data to a flat file or a
> database. That data can then be fed to your graphing tool of choice.
>


checked the nagios doc and cannot quickly find the information about how
to get it done. any suggestions about how to get it done or the chapters
in nagios's doc that you can think it will be helpful?

thanks.
 
Reply With Quote
 
Douglas O'Neal
Guest
Posts: n/a

 
      05-08-2008, 03:10 PM
On 05/08/08 10:53, Peter wrote:
> Douglas O'Neal wrote:
>> It is trivial to have nagios log performance data to a flat file or a
>> database. That data can then be fed to your graphing tool of choice.
>>

>
> checked the nagios doc and cannot quickly find the information about how
> to get it done. any suggestions about how to get it done or the chapters
> in nagios's doc that you can think it will be helpful?
>
> thanks.


http://nagios.sourceforge.net/docs/3_0/perfdata.html will get you
you started on saving the data. Their examples save formatted data
to text files but can be modified to output sql insert statements
fairly easily.

Doug
 
Reply With Quote
 
Peter
Guest
Posts: n/a

 
      05-08-2008, 03:19 PM
Douglas O'Neal wrote:

>
> http://nagios.sourceforge.net/docs/3_0/perfdata.html will get you
> you started on saving the data. Their examples save formatted data
> to text files but can be modified to output sql insert statements
> fairly easily.


Yes, I can see how to get the data to write to a file. how to read those
data file in graphically from nagios?

Thanks.
 
Reply With Quote
 
Douglas O'Neal
Guest
Posts: n/a

 
      05-08-2008, 03:49 PM
On 05/08/08 11:19, Peter wrote:
> Douglas O'Neal wrote:
>
>>
>> http://nagios.sourceforge.net/docs/3_0/perfdata.html will get you
>> you started on saving the data. Their examples save formatted data
>> to text files but can be modified to output sql insert statements
>> fairly easily.

>
> Yes, I can see how to get the data to write to a file. how to read those
> data file in graphically from nagios?
>
> Thanks.


nagios cannot easily read in back in. Hence, my statement in the
earlier post: That data can then be fed to your graphing tool of choice.

Format your cpu usage with a timestamp and datapoints and have gnuplot
generate your graphs.

Doug
 
Reply With Quote
 
John Murtari
Guest
Posts: n/a

 
      05-08-2008, 05:11 PM
Peter <(E-Mail Removed)> writes:

> hello,
> is there a graphical tool that can show the usage of CPU, memory for
> the past week? most tools I used are command line utilities. not sure
> if there is a graphical tool that I can see online. or is there a
> script that I can write the performance data to a file and then
> display in GUI in another linux box?
> thanks.


You may want to check out 'mrtg', it does all the
graphing you want write out of the box. It was first normally
used for router traffic reports, but has been configured to
plot any number and show historic graphs -- for more info check:
http://oss.oetiker.ch/mrtg/

--
John
__________________________________________________ _________________
John Murtari Software Workshop Inc.
jmurtari@following domain 315.635-1968(x-211) "TheBook.Com" (TM)
http://thebook.com/
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Monitoring Nachen Network Routers 1 02-07-2008 09:25 PM
raw monitoring bob@coolgroups.com Wireless Internet 4 11-06-2006 12:20 AM
802.11 monitoring Rich Wireless Internet 2 04-14-2006 11:31 PM
Performance Monitoring - Pages/Sec Jack Al Bob Windows Networking 0 10-05-2004 08:14 PM
Monitoring Performance of Groups of Machines on Windows and UNIX CHANGE username to westes Windows Networking 2 11-05-2003 09:01 AM



1 2 3 4 5 6 7 8 9 10 11