Search found 6 matches

by ursal
Tue Aug 11, 2015 12:06 pm
Forum: Scripts and Templates
Topic: Speedtest graph/data template available
Replies: 29
Views: 30188

Re: Speedtest graph/data template available

You can use this modified script and specify custom update interval #!/bin/bash RESFILE="/var/tmp/speedtestresults" INTERVAL=1200 if ((`stat -c %Y /var/tmp/speedtestresults`+$INTERVAL<$(date +%s))); then # get fresh data RES=`/usr/local/bin/speedtest-cli --simple | cut -d" " -f1,...
by ursal
Mon Jun 06, 2011 8:31 am
Forum: Plugin General
Topic: routerconfigs automatic backup not running?
Replies: 17
Views: 12191

Re: routerconfigs automatic backup not running?

When plugin is used by poller - it prevents parallel executing of instances by setting value in "settings" table in mysql. For some reason it is enabled by default after install, so plugin is never used by poller. To activate nightly backups you should just tell to poller that plugin is re...
by ursal
Sun Mar 06, 2011 5:31 pm
Forum: Plugin General
Topic: FlowView errors.
Replies: 1
Views: 1416

[Solved] FlowView errors.

You should change mysql table type, HEAP tables are fast but dosnt support auto_increment and TEXT columns
mysql table for old PA had MyISAM type. To change type of table with PA 2.0++ you should edit setup.php

File: setup.php
$data['type'] = 'MyISAM';
by ursal
Sat Aug 29, 2009 10:44 am
Forum: Scripts and Templates
Topic: BIND 9 Statistics for Cacti
Replies: 235
Views: 421731

For those who has

Code: Select all

+ No SNMP data returned 
Just increase maximum OID number for snmp-walk. Globaly or in host settings
by ursal
Thu Aug 27, 2009 3:59 pm
Forum: Plugin Announcements
Topic: GPS Maps for Cacti
Replies: 326
Views: 223394

@ursal That is a good fix, I don't know if that is the proper way to fix, but it works. Thanks Wellcome) I don't know php well, but can force to work almost everything. top_header.php generates page with console on the left, top_graph_header.php - without it. I'm not sure about changes in cacti fil...
by ursal
Thu Aug 20, 2009 7:12 am
Forum: Plugin Announcements
Topic: GPS Maps for Cacti
Replies: 326
Views: 223394

But one bug which is annoying me, is that I have to activate the 'console' menu for my users who wants to get the 'GPS map' link. I have noticed though that if I click on any tab other than Console, the GPS Map tab disappears, and the only way I can bring it back is clicking on the Console tab agai...