Linode Forum
Linode Community Forums
 FAQFAQ    SearchSearch    MembersMembers      Register Register 
 LoginLogin [ Anonymous ] 
Forum locked  This topic is locked, you cannot edit posts or make further replies.
Author Message
PostPosted: Sun Oct 23, 2005 10:55 pm 
Offline
Linode Staff
User avatar

Joined: Fri Oct 17, 2003 12:38 am
Posts: 287
Location: Dr Wierd's Lab, South Jersey Shore
Network traffic graphs are now availible from the Member's site. Two graphs are displayed, one covering the last 24 hours and another covering the last 30 days. In the near future we will add the ability to view graphs for prior months. Longer term, we hope to add graphs for additional datapoints to help users better manage their Linode.

These graphs are generated in real time but the data they are based on is updated every five minutes. Endless refreshing won't increase the amount of data on the graph.

https://www.linode.com/members/graphs/network.cfm


Top
   
 Post subject:
PostPosted: Mon Oct 24, 2005 1:54 am 
Offline
Junior Member

Joined: Wed Jul 21, 2004 4:45 am
Posts: 21
Website: http://www.percederberg.net
Location: Stockholm, Sweden
Looks great! This is really great information to have easily accessible like this. Good thing that I was too lazy to implement it myself... Now you've just saved all the work for me! :-)

Thanks!


Top
   
 Post subject:
PostPosted: Mon Oct 24, 2005 7:33 am 
Offline
Junior Member

Joined: Tue Mar 22, 2005 1:20 pm
Posts: 43
Website: http://darkcoding.net
Location: Vancouver, Canada
Very useful. I was also thinking of doing this myself, thanks for saving us the work.


Top
   
 Post subject: data point?
PostPosted: Mon Oct 24, 2005 10:37 am 
Offline
Senior Member
User avatar

Joined: Mon Sep 08, 2003 4:49 pm
Posts: 62
Location: Bucharest
What data point am I looking at here?


Top
   
 Post subject:
PostPosted: Mon Oct 24, 2005 11:05 am 
Offline
Senior Member

Joined: Sun Mar 14, 2004 9:18 pm
Posts: 116
Website: http://michael.susens-schurter.com/
WLM: mschurter@yahoo.com
Yahoo Messenger: mschurter
Location: Peoria, IL
Beautiful graphs! Thanks Mike & Caker! Any chance of an io_token graph anytime soon? Since thats always been the main bottleneck for my linode, it'd be handy.


Top
   
 Post subject:
PostPosted: Mon Oct 24, 2005 8:13 pm 
Offline
Senior Member
User avatar

Joined: Fri Aug 15, 2003 2:15 pm
Posts: 111
Website: http://fubegra.net/
If you use MRTG, you can make a graph of I/O token usage, or anything else graphable.

Here's a Perl script for collecting the token count:
Code:
#!/usr/bin/perl

$line = `/usr/bin/uptime`;
($uptime) = ($line =~ m/^.*up (.*),\s+\d+\s+users*,\s+load average:.*$/o);

$host = `/bin/hostname`;

open IOSTATUS, "/proc/io_status";
$line = <IOSTATUS>;
close IOSTATUS;

($count) = ($line =~ m/^io_count=(\d+) .*$/o);

print "$count\n0\n$uptime\n$host\n";



And here is the stanza for mrtg.cfg:

Code:
Title[io_rate]: I/O Rate for Linode VPS
Target[io_rate]: `/usr/local/bin/tokenrate.pl`
PageTop[io_rate]: <H1>I/O Token Usage Rate</H1>
Options[io_rate]: logscale
MaxBytes[io_rate]: 400000
YLegend[io_rate]: Tokens/sec
ShortLegend[io_rate]: Tokens/sec
LegendI[io_rate]: &nbsp;Tokens/sec:
LegendO[io_rate]: &nbsp;
Legend1[io_rate]: I/O Token Usage Rate
Legend2[io_rate]: &nbsp;



I use the logscale option to plot the graphs with a logarithmic scale, so that low rates don't get lost among large peaks.

_________________
Bus error (passengers dumped)


Top
   
PostPosted: Fri Oct 28, 2005 7:11 pm 
Offline
Newbie

Joined: Sun Jun 19, 2005 5:25 pm
Posts: 4
Beautiful graphs, thank you. An RSS feed containing the textual data under the graphs might be useful too.

(I've reconsidered the utility of the GM script that was previously posted here, and removed it.)


Top
   
 Post subject:
PostPosted: Sun Oct 30, 2005 1:21 pm 
Offline

Joined: Sat Apr 09, 2005 10:24 pm
Posts: 1
Thank-you! :D The graphs are beautiful and very handy when checking my member account. I appreciate this added feature very much.


Top
   
Display posts from previous:  Sort by  
Forum locked  This topic is locked, you cannot edit posts or make further replies.


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
RSS

Powered by phpBB® Forum Software © phpBB Group