[Nfsen-discuss] No graphs in Details
Netflow visualisation and investigation tool
Brought to you by:
phaag
|
From: Matt M. <0x...@gm...> - 2006-06-23 22:23:29
|
All,
I've searched through the nfsen mailing list archives for any
indication as to why I am not getting graphs under the Details tab.
All graphs including TCP, UDP, ICMP, Other, and main-graph are
empty.The statistics at the bottom of the page work fine. All other
graphs work fine as well with the exception of those found under the
Details tab.
Deployment information:
nfdump version 1.5
nfsen version 1.2.4
rrdtool version 1.2.10
Persmissions look fine. nfsen is run as 'nfsen' which is part of the
'www' group. All files and directories are are owned by either 'nfsen'
or 'www', all of which are part of the 'www' group.
Here is the nfsen.conf file:
##############################
#
# NfSen default layout:
# Any scripts, modules or profiles are installed by default under $BASEDIR.
# However, you may change any of these settings to fit your requested layout.
#
# Required for default layout
$BASEDIR = "/usr/local/nfsen";
#
# Where to install the NfSen binaries
$BINDIR="${BASEDIR}/bin";
#
# Where to install the NfSen Perl modules
$LIBEXECDIR="${BASEDIR}/libexec";
#
# Where to install the config files
$CONFDIR="${BASEDIR}/etc";
#
# NfSen html pages directory:
# All php scripts will be installed here.
# URL: Entry point for nfsen: http://<webserver>/nfsen/nfsen.php
$HTMLDIR = "/var/www/html/nfsen/";
#
# Where to install the docs
$DOCDIR="${HTMLDIR}/doc";
#
# Var space for NfSen
$VARDIR="${BASEDIR}/var";
#
# The Profiles stat directory, where all profile information
# RRD DBs and gif pictures of the profile are stored
$PROFILESTATDIR="${BASEDIR}/profiles";
#
# The Profiles directory, where all netflow data is stored
$PROFILEDATADIR="/var/profiles";
#
# Where go all the backend plugins
$BACKEND_PLUGINDIR="${BASEDIR}/plugins";
#
# Where go all the frontend plugins
$FRONTEND_PLUGINDIR="${HTMLDIR}/plugins";
#
# nfdump tools path
$PREFIX = '/usr/local/bin';
#
# BASEDIR unrelated vars:
#
# Run nfcapd as this user
# This may be a different or the same uid than your web server.
# Note: This user must be in group $WWWGROUP, otherwise nfcapd
# is not able to write data files!
$USER = "nfsen";
# user and group of the web server process
# All netflow processing will be done with this user
$WWWUSER = "www";
$WWWGROUP = "www";
# Receive buffer size for nfcapd - see man page nfcapd(1)
$BUFFLEN = 200000;
# Netflow sources
# Define an ident string, port and colour per netflow source
# ident identifies this netflow source. e.g. the router name,
# Upstream provider name etc.
# port nfcapd listens on this port for netflow data for this source
# col colour in nfsen graphs for this source
#
# Syntax:
# 'ident' => { 'port' => '<portnum>', 'col' => '<colour>' }
# Ident strings must be 1 to 19 characters long only, containing
characters [a-zA-Z0-9_].
%sources = (
'nbr1' => { 'port' => '3000', 'col' => '#0000ff' },
'nbr2' => { 'port' => '3001', 'col' => '#33CCFF' },
'cr1' => { 'port' => '3002', 'col' => '#33FF00' },
'r1' => { 'port' => '3003', 'col' => '#FF3333' },
);
#
# Low water mark: When expiring files, delete files until
# size = max size * low water mark
# typically 0.9
$low_water = 0.9;
#
# syslog facility for periodic jobs
# nfsen uses level 'debug', 'info', 'warning' and 'err'
# Note: nfsen is very chatty for level 'debug' and 'info'
# For normal operation, you may set the logging level in syslog.conf
# to warning or error unless you want to debug NfSen
$syslog_facility = 'local3';
Another interesting issue I am having is the Profiles drop-down menu
is blank and displays <no profiles available>. I do not have the
option of creating additional profiles.
nfdump works fine.
Any help is greatly appreciated.
TIA,
-m2
|