Search found 7 matches

by Poslik
Wed Jan 17, 2018 3:28 am
Forum: Plugin: (Threshold)
Topic: [Error] Threshold 100G Interface
Replies: 9
Views: 6787

Re: [Error] Threshold 100G Interface

Hello netniV, you are right. The mentioned function is below. (We use thold in version 1.0.3.) function thold_get_currentval(&$thold_data, &$rrd_reindexed, &$rrd_time_reindexed, &$item, &$currenttime) { /* adjust the polling interval by the last read, if applicable */ $currenttim...
by Poslik
Mon Jan 15, 2018 5:23 am
Forum: Plugin: (Threshold)
Topic: [Error] Threshold 100G Interface
Replies: 9
Views: 6787

Re: [Error] Threshold 100G Interface

I have had similar problem. The main issue was, that the condition in elsif >> }elseif ($thold_data['rrd_maximum'] == 0 && $currentval > 4.25E+9) { << was resolved like true >> }elseif (|query_ifSpeed| == 0 && 4264205114.9701 > 4.25E+9) { <<. Yes, condition >> |query_ifSpeed| == 0 <<...
by Poslik
Wed Dec 13, 2017 10:58 am
Forum: Help: General
Topic: Aggregate graph-in/out traffic stacked to negative/positive
Replies: 1
Views: 567

Re: Aggregate graph-in/out traffic stacked to negative/posit

... not the best solution, but at least something ...

Attached result and configuration in Console > Management > Aggregates
by Poslik
Fri Nov 10, 2017 7:33 am
Forum: Help: General
Topic: Graph Details - Turn off "Summary Details + Data" option
Replies: 2
Views: 568

Re: Graph Details - Turn off "Summary Details + Data" option

I actually decide to set the variable "graph_data_on" default to false. Data table will be globally shown only on demand via clicking on the icon "Graph Data" on the right side of graph. The system is so more fluent when analyzing a big time range.
by Poslik
Thu Nov 09, 2017 10:41 am
Forum: Help: General
Topic: Graph Details - Turn off "Summary Details + Data" option
Replies: 2
Views: 568

Re: Graph Details - Turn off "Summary Details + Data" option

Simple solution: * change /cacti/graph.php * comment line >> var graph_data_on=true; << * insert line >> var graph_data_on=<?php if ($_GET["summary_details"]) {print 'false' . ";\n";} else {print 'true' . ";\n";} ?>; << Now calling page with "summary_details" ...
by Poslik
Tue Oct 31, 2017 9:44 am
Forum: Help: General
Topic: Graph Details - Turn off "Summary Details + Data" option
Replies: 2
Views: 568

Graph Details - Turn off "Summary Details + Data" option

Hello,

is there any possibility, how to prevent to show Summary Detail and measured data in graph details? In html block '<tr class="odd"> ... </tr>'. Thank you
by Poslik
Tue Oct 31, 2017 8:44 am
Forum: Help: General
Topic: Aggregate graph-in/out traffic stacked to negative/positive
Replies: 1
Views: 567

Aggregate graph-in/out traffic stacked to negative/positive

Hello, is there any possibility, how to make aggregate graph as shown on the attached picture? Inbound traffic stacked on the negative Y-axis and outbound traffic to positive Y-axis. It was a very powerful feature which we used in Cacti 0.8.7c, now I cant find out, how to configure it in 1.1.23. Tha...