Unable to Create Aggregate Graph
Moderators: Developers, Moderators
Unable to Create Aggregate Graph
I'm unable to get Aggregate Graphs to work. Are there some logs of something I can look through.
Thanks GB,
Thanks GB,
- Attachments
-
- Selecting graphs
- Select graphs to aggregate.gif (39.79 KiB) Viewed 1961 times
-
- After selecting the graphs I wanted to combine.
- nothing there.gif (15.63 KiB) Viewed 1961 times
- TheWitness
- Developer
- Posts: 17064
- Joined: Tue May 14, 2002 5:08 pm
- Location: MI, USA
- Contact:
Likely THold needs to be patched, or you have another plugin that is not behaving properly. THold has been the culprit till now.
TheWitness
TheWitness
True understanding begins only when we realize how little we truly understand...
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
- gandalf
- Developer
- Posts: 22383
- Joined: Thu Dec 02, 2004 2:46 am
- Location: Muenster, Germany
- Contact:
In plugins/thold/setup.php, make sure that code looks like
The "return $save;" is the one!
R.
Code: Select all
function thold_graphs_action_prepare($save) {
global $colors, $config;
if ($save["drp_action"] == "plugin_thold_create") {
...
}else{
return $save;
}
}
R.
That is different from what I have.
My version of THOLD is 0.4.1
Code: Select all
function thold_device_action_prepare ($save) {
global $colors, $host_list;
if ($save['drp_action'] != 'thold')
return $save;
THOLD is was the issue
I Disable able THOLD under PLUGin Manager and was able to create the graph I needed.
thanks, i'll play around was the THOLD setup file to see if I can fix the issue.
thanks, i'll play around was the THOLD setup file to see if I can fix the issue.
- gandalf
- Developer
- Posts: 22383
- Joined: Thu Dec 02, 2004 2:46 am
- Location: Muenster, Germany
- Contact:
My code was from current SVN. I suppose that the string 'thold' should read differently. This may have changed; you might find the correct string in that same setup.php file:gebster wrote:That is different from what I have.My version of THOLD is 0.4.1Code: Select all
function thold_device_action_prepare ($save) { global $colors, $host_list; if ($save['drp_action'] != 'thold') return $save;
Code: Select all
function thold_graphs_action_array($action) {
$action['plugin_thold_create'] = 'Create Threshold from Template';
return $action;
}
R.
Who is online
Users browsing this forum: No registered users and 2 guests