Announcements concerning Plugins for Cacti
Moderators: Moderators, Developers
-
Howie
- Cacti Guru User
- Posts: 5348
- Joined: Thu Sep 16, 2004 5:53 am
- Location: United Kingdom
-
Contact:
#16
Post
by Howie » Wed Aug 26, 2009 9:56 am
TheWitness wrote:Make it easy
Larry
No need to work too hard, is there?

-
phalek
- Cacti Guru User
- Posts: 2725
- Joined: Thu Jan 31, 2008 6:39 am
- Location: Kressbronn, Germany
-
Contact:
#17
Post
by phalek » Wed Aug 26, 2009 10:04 am
I wonder if this could be used to create even more "Management" like reports with fabolous colors and charts to view for them ...

-
browniebraun
- Developer
- Posts: 788
- Joined: Tue Jun 13, 2006 1:17 am
- Location: Cologne, Germany
#18
Post
by browniebraun » Wed Aug 26, 2009 10:49 am
From my point of view it offers the opportunity to increase ReportIt's set of features to provide TopN reports people are requesting.
Best regards
-Andreas-
-
Howie
- Cacti Guru User
- Posts: 5348
- Joined: Thu Sep 16, 2004 5:53 am
- Location: United Kingdom
-
Contact:
#19
Post
by Howie » Wed Aug 26, 2009 12:00 pm
and it will (very soon - testing this afternoon) allow weathermap to do aggregate statistics much more quickly and reliably (but less flexibly) than by calling rrdtool for each.
-
Howie
- Cacti Guru User
- Posts: 5348
- Joined: Thu Sep 16, 2004 5:53 am
- Location: United Kingdom
-
Contact:
#20
Post
by Howie » Mon Aug 31, 2009 7:00 am
I just found another small change for that patch - the second pair of sql_executes further down need to a small change:
Around line 500,
Code: Select all
db_execute($sql_last_prefix . $lastbuf . $sql_suffix);
should be
Code: Select all
db_execute($sql_last_prefix . $lastbuf . $sql_suffix_last);
otherwise the last bunch of DS won't get their calculated value updated.
-
TheWitness
- Developer
- Posts: 14834
- Joined: Tue May 14, 2002 5:08 pm
- Location: MI, USA
-
Contact:
#21
Post
by TheWitness » Mon Aug 31, 2009 7:35 am
I'll attempt to push a new release sometime today (my time).
TheWitness
-
TheWitness
- Developer
- Posts: 14834
- Joined: Tue May 14, 2002 5:08 pm
- Location: MI, USA
-
Contact:
#22
Post
by TheWitness » Tue Sep 01, 2009 8:01 pm
DSStats 1.1 is now on the docs site at the following link:
DSStats 1.1-1
Regards,
TheWitness
-
Howie
- Cacti Guru User
- Posts: 5348
- Joined: Thu Sep 16, 2004 5:53 am
- Location: United Kingdom
-
Contact:
#23
Post
by Howie » Wed Nov 04, 2009 9:27 am
I'm getting strange results for my monthly peak numbers. 100M links are showing as much as 200M as peak traffic, and more than one, on more than one different router...
-
TheWitness
- Developer
- Posts: 14834
- Joined: Tue May 14, 2002 5:08 pm
- Location: MI, USA
-
Contact:
#24
Post
by TheWitness » Thu Nov 05, 2009 11:08 am
I pull those numbers from the rrd. So maybe the function has issues. Can you take a peek? I'm OOO.
-
iggi
- Cacti User
- Posts: 61
- Joined: Sat Feb 23, 2008 10:41 am
- Location: Flint, Michigan
-
Contact:
#25
Post
by iggi » Fri Feb 05, 2010 12:19 pm
Has anyone looked into possibly passing the data through a 95th% calculation and storing it in the DB? Maybe some sort of a dynamic database that allows it to pull data after it has gone through a template?
-
meralias
- Posts: 46
- Joined: Tue Nov 14, 2006 7:07 am
#26
Post
by meralias » Thu Mar 04, 2010 11:20 am
Has anyone already implemented tracking the number of NaN values for a given time period? It would be useful when you want to validate that all the data sources are gathering information correctly?
-
Howie
- Cacti Guru User
- Posts: 5348
- Joined: Thu Sep 16, 2004 5:53 am
- Location: United Kingdom
-
Contact:
#27
Post
by Howie » Fri Mar 05, 2010 5:33 am
DSStats presently requires PHP 5.2 (I think). I just turned off my 'dump to /dev/null' in the poller cron job, to debug something else, and I found 17000 of these per poller cycle(!):
PHP Notice: Use of undefined constant E_RECOVERABLE_ERROR - assumed 'E_RECOVERABLE_ERROR' in /var/www/docs/cacti/plugins/dsstats/setup.php on line 262
There was a similar problem in Boost it seems,
and here's the simple solution.
PHP 5.1.6 (with backported patches) is the current version for CentOS/RHEL 5.
-
TheWitness
- Developer
- Posts: 14834
- Joined: Tue May 14, 2002 5:08 pm
- Location: MI, USA
-
Contact:
#28
Post
by TheWitness » Fri Mar 05, 2010 8:56 am
I'll fix that right away.
TheWitness
-
TheWitness
- Developer
- Posts: 14834
- Joined: Tue May 14, 2002 5:08 pm
- Location: MI, USA
-
Contact:
#29
Post
by TheWitness » Thu Apr 15, 2010 7:53 am
I have released 1.2. It has a few additional fixes.
TheWitness