I've seem to have hit a problem which does not generate any error logs
as the manage dashboard gets generated dynamically on the fly.
I have 3 different Dashboards, lets call them "A, B, and C". my 1st
Dashboard functions properly in regards to configuring active graphs to
be displayed on the left/right side of the page.
The two other Dashboard will not allow me to add active flowmonitor to
them and i've been unable to determine why.
I noticed in the "FlowViewer_Configuration.pm" it notes:
@dashboard_titles = ("A","B","C"); # titles must be in the same
order as the directories
$dashboard_directory = "/var/www/html/FlowViewer_Dashboard";
@other_dashboards = ("/var/www/html/SOC","/var/www/html/NetOps");
@dashboard_titles = ("Performance","SOC","NetOps"); # titles must be in the same order as the directories
Dashboard directories include the $dashboard_directory, and each of the @other_dashboards.
The first dashboard_title (i.e., "Performance") is aligned with the $dashboard_directory.
The remaining dashboard titles align respectively with the ordered list of @other dashboards. Hence "SOC" will align with "var/www/html/SOC" and "NetOps" aligns with "var/www/html/NetOps".
All dashboard_directories (i.e., $dashboard_directory, and each of @other_dashboards) should be created first.
This slightly awkward method is used to preserve the dashboard capability for users who set things up prior to the newer multiple dashboard capability.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi Everyone,
I've seem to have hit a problem which does not generate any error logs
as the manage dashboard gets generated dynamically on the fly.
I have 3 different Dashboards, lets call them "A, B, and C". my 1st
Dashboard functions properly in regards to configuring active graphs to
be displayed on the left/right side of the page.
The two other Dashboard will not allow me to add active flowmonitor to
them and i've been unable to determine why.
I noticed in the "FlowViewer_Configuration.pm" it notes:
@dashboard_titles = ("A","B","C"); # titles must be in the same
order as the directories
What directories is this referring to?
Thanks again,
Payam
Here are the relevant Configuration parameters:
$dashboard_directory = "/var/www/html/FlowViewer_Dashboard";
@other_dashboards = ("/var/www/html/SOC","/var/www/html/NetOps");
@dashboard_titles = ("Performance","SOC","NetOps"); # titles must be in the same order as the directories
Dashboard directories include the $dashboard_directory, and each of the @other_dashboards.
The first dashboard_title (i.e., "Performance") is aligned with the $dashboard_directory.
The remaining dashboard titles align respectively with the ordered list of @other dashboards. Hence "SOC" will align with "var/www/html/SOC" and "NetOps" aligns with "var/www/html/NetOps".
All dashboard_directories (i.e., $dashboard_directory, and each of @other_dashboards) should be created first.
This slightly awkward method is used to preserve the dashboard capability for users who set things up prior to the newer multiple dashboard capability.