|
|
| Author |
Message |
tierpel
Joined: 19 Feb 2006 Posts: 7 Location: FR -- Sophia-antipolis - Valence
|
|
| Back to top |
|
 |
Howie Cacti Guru User
Joined: 16 Sep 2004 Posts: 2135 Location: United Kingdom
|
|
| Back to top |
|
 |
KyRoo
Joined: 19 Oct 2007 Posts: 46
|
|
| Back to top |
|
 |
wwwdrich Cacti User
Joined: 03 Feb 2005 Posts: 59 Location: San Jose, CA
|
Posted: Thu Mar 27, 2008 4:01 pm Post subject: |
|
|
Here are a couple of my new maps created with 0.9.5b and the new screenshot_mode. Sorry about the white background, I had to pull the normal background image as it has the company logo, and I have to keep the company name anonymous.
The first is a view of the WAN connections (not quite complete yet), the network from the core routers at one site to the second a server farm switches (the farm is rather quiet at the moment).
| Description: |
|
| Filesize: |
63.22 KB |
| Viewed: |
4229 Time(s) |

|
| Description: |
|
| Filesize: |
65.51 KB |
| Viewed: |
4229 Time(s) |

|
|
|
| Back to top |
|
 |
wwwdrich Cacti User
Joined: 03 Feb 2005 Posts: 59 Location: San Jose, CA
|
Posted: Tue Apr 01, 2008 11:29 am Post subject: |
|
|
Attached is another of my weathermaps, this one of my home network. It's rather boring at the moment, I was hoping to catch one with TimeMachine on my laptop running a backup across the WiFi to the server, but it's just too quick.
I did spend quite a bit of time on this one tweaking the positions of things, especially the link comment positions.
You know, that "too quick" comment above made me think of something that might be fun -- I'm going to see if I can whip something together to archive the weathermaps after they are generated and create a 24 hour movie of them. If nothing else, the archive would be useful for tracking network spikes....
| Description: |
|
| Filesize: |
120.95 KB |
| Viewed: |
4150 Time(s) |

|
|
|
| Back to top |
|
 |
Howie Cacti Guru User
Joined: 16 Sep 2004 Posts: 2135 Location: United Kingdom
|
Posted: Tue Apr 01, 2008 11:59 am Post subject: |
|
|
| wwwdrich wrote: | Attached is another of my weathermaps, this one of my home network. It's rather boring at the moment, I was hoping to catch one with TimeMachine on my laptop running a backup across the WiFi to the server, but it's just too quick.
I did spend quite a bit of time on this one tweaking the positions of things, especially the link comment positions.
You know, that "too quick" comment above made me think of something that might be fun -- I'm going to see if I can whip something together to archive the weathermaps after they are generated and create a 24 hour movie of them. If nothing else, the archive would be useful for tracking network spikes.... |
Try this, as a starting point
Actually, time machine is something I've been thinking about stealing the UI from for a weathermap feature Maybe without the stars... but that's for another thread.
|
|
| Back to top |
|
 |
wwwdrich Cacti User
Joined: 03 Feb 2005 Posts: 59 Location: San Jose, CA
|
Posted: Tue Apr 01, 2008 12:33 pm Post subject: |
|
|
Ok, so the script I wrote looks an awful lot like yours... gmta, I guess? I'm using perl instead of shell and mine will walk all of the plugin-generated maps in output/, but other than that they are about the same.
| Code: |
#!/usr/local/bin/perl
# Archive weathermaps, building a movie of the last 24 hours worth
#
use strict;
use POSIX qw(strftime);
use File::Find;
# Location of the maps
my $MapDir = "/usr/local/share/cacti/plugins/weathermap/output";
# for the convenience of &wanted calls, including -eval statements:
use vars qw/*name *dir *prune/;
*name = *File::Find::name;
*dir = *File::Find::dir;
*prune = *File::Find::prune;
sub wanted;
chdir($MapDir);
# Loop through maps, copying to archive/map-date.png
my $datestamp = strftime("%Y-%m-%d-%H%M%S",localtime);
foreach my $map (glob("*.png")) {
# Assume we are running as a cacti plugin
next unless ($map =~ /^([a-f0-9]{20}).png$/);
my $mapbase = $1;
my $amap = "$mapbase-$datestamp.png";
`cp $map archive/$amap`;
`convert -quiet -delay 30 archive/$mapbase\*.png archive/$mapbase.mpg > /dev/null`
}
# Clean up anything older that 48 hours
File::Find::find({wanted => \&wanted}, 'archive');
sub wanted {
my ($dev,$ino,$mode,$nlink,$uid,$gid);
/^.*\.png\z/s &&
(($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_)) &&
(int(-M _) > 2) &&
unlink($name);
}
|
I just dropped that into cacti_path/plugins/weathermap/output, and added a call to it to the cron that runs poller. That way it runs every polling cycle after the maps have been created.
| Code: |
*/5 * * * * cacti /usr/local/bin/php /usr/local/share/cacti/poller.php > /dev/null 2>&1 && /usr/local/share/cacti/plugins/weathermap/output/archivemaps.pl > /dev/null 2>&1
|
|
|
| Back to top |
|
 |
totosh
Joined: 10 Mar 2008 Posts: 11
|
Posted: Wed Apr 09, 2008 9:43 am Post subject: |
|
|
first Map , still got a lot to do on it, latency counters with node color changes and work on Labelpos/labeloffset.
| Description: |
|
| Filesize: |
354.13 KB |
| Viewed: |
3945 Time(s) |

|
|
|
| Back to top |
|
 |
wysun
Joined: 07 Apr 2008 Posts: 8
|
Posted: Mon Apr 14, 2008 4:33 am Post subject: |
|
|
Hi, all, where can I download the configure file what you uploaded.
Thanks.
|
|
| Back to top |
|
 |
Howie Cacti Guru User
Joined: 16 Sep 2004 Posts: 2135 Location: United Kingdom
|
Posted: Mon Apr 14, 2008 4:44 am Post subject: |
|
|
| wysun wrote: | Hi, all, where can I download the configure file what you uploaded.
Thanks. |
Most people's config files contain too much customer information to be posted...
|
|
| Back to top |
|
 |
StarLog Cacti User
Joined: 02 Jun 2007 Posts: 128
|
Posted: Mon Apr 14, 2008 2:33 pm Post subject: |
|
|
|
|
| Back to top |
|
 |
rujipars
Joined: 02 Nov 2007 Posts: 15
|
Posted: Thu May 08, 2008 8:46 am Post subject: |
|
|
My network at work.
Since our NOC staff is monitoring 5-6 screens including the DWDM, ATM, SDH, DSLAMS, priority customers.
So I try to keep all necessary monitoring in one screen including traffic, temperature, CPU.
Each information use different SCALE to present it's conditions.
red = too little traffic (indicate that link or protocol fail), too high temperature, too high CPU
yellow to green = normal range
blue = 90-100% bandwidth utilization (transoceanic link with QoS policy applied), quite normal for my case
I use this with a small frame of Monitor plugin and another small frame to browse necessary graphs quickly.
| Description: |
|
| Filesize: |
22.13 KB |
| Viewed: |
3358 Time(s) |

|
|
|
| Back to top |
|
 |
cyrill Cacti User
Joined: 25 Jan 2008 Posts: 268 Location: California - USA
|
Posted: Mon Jun 02, 2008 8:03 am Post subject: |
|
|
Hello ! how can I display multiples informations near à node ???
For example, I've a node called "serv1" and I want to display a lot of informations about it.
thanks
|
|
| Back to top |
|
 |
totosh
Joined: 10 Mar 2008 Posts: 11
|
|
| Back to top |
|
 |
koolaidrocks
Joined: 24 Sep 2007 Posts: 11
|
Posted: Thu Jul 03, 2008 11:24 am Post subject: |
|
|
| totosh wrote: | | first Map , still got a lot to do on it, latency counters with node color changes and work on Labelpos/labeloffset. |
You must tell me where you got those icons!
|
|
| Back to top |
|
 |
|