[bug-notifications] [orca_web 0004546]: network interface with greater than 1 Gbit of bandwidth does plot correctly
Mantis Bug Tracker
noreply at opencsw.org
Mon Sep 13 21:00:18 CEST 2010
A NOTE has been added to this issue.
======================================================================
https://www.opencsw.org/mantis/view.php?id=4546
======================================================================
Reported By: GlenG
Assigned To:
======================================================================
Project: orca_web
Issue ID: 4546
Category: regular use
Reproducibility: always
Severity: major
Priority: normal
Status: new
======================================================================
Date Submitted: 2010-09-08 16:59 CEST
Last Modified: 2010-09-13 21:00 CEST
======================================================================
Summary: network interface with greater than 1 Gbit of
bandwidth does plot correctly
Description:
(This is a copy of my post to 'orca-users at orcaware.com')
I'm trying to add a plot for a network interface with greater than 1 Gbit
of bandwidth. I'm getting a plot but the y axis tops out at 1000Mb/s and
when the interface is receiving > 1000Mb/s that variable is not plotted
(the text portion Max. does not report the larger values either). Here's my
plot configuration. I copied a working 1Gbit plot and changed data_max
from 1000000000 to 2000000000. Also, tried deleting data_max.
# Interface bits per second for > 1 Gbit interfaces.
plot {
title %g Interface Bits Per Second: $1
source orcallator
data 1024 * 8 * ((?:(?:aggr))\d+)InKB/s
data 1024 * 8 * $1OuKB/s
line_type area
line_type line1
legend Input
legend Output
y_legend Bits/s
data_min 0
data_max 2000000000
plot_width 800
href
http://www.orcaware.com/orca/docs/orcallator.html#interface_bits_per_second
}
======================================================================
----------------------------------------------------------------------
(0008286) GlenG (reporter) - 2010-09-13 21:00
https://www.opencsw.org/mantis/view.php?id=4546#c8286
----------------------------------------------------------------------
I got the plot to work by:
1. removing data_max from orcallator.cfg
# Interface bits per second for > 1 Gbit interfaces.
# data_max 2000000000
plot {
title %g Interface Bits Per Second: $1
source orcallator
data 1024 * 8 * ((?:(?:aggr))\d+)InKB/s
data 1024 * 8 * $1OuKB/s
line_type area
line_type line1
legend Input
legend Output
y_legend Bits/s
data_min 0
plot_width 800
href
http://www.orcaware.com/orca/docs/orcallator.html#interface_bits_per_second
}
2. killing Orca master:
pkill orca
3. deleting rrd files:
ls -ltrh /var/opt/csw/orca/rrd/orcallator/o_beaker | grep aggr
-rw-r--r-- 1 root root 49K Sep 2 14:43
gauge_1024_X_18_X_aggr1OuKB_per_s.rrd
-rw-r--r-- 1 root root 49K Sep 2 14:43
gauge_1024_X_18_X_aggr1InKB_per_s.rrd
-rw-r--r-- 1 root root 49K Sep 13 11:23
gauge_1024_X_8_X_aggr1InKB_per_s.rrd
-rw-r--r-- 1 root root 49K Sep 13 11:23
gauge_1024_X_8_X_aggr1OuKB_per_s.rrd
-rw-r--r-- 1 root root 49K Sep 13 11:50
gauge_aggr1Coll_pct.rrd
-rw-r--r-- 1 root root 49K Sep 13 11:50
gauge_aggr1Defr_per_s.rrd
-rw-r--r-- 1 root root 49K Sep 13 11:50
gauge_aggr1IErr_per_s.rrd
-rw-r--r-- 1 root root 49K Sep 13 11:50
gauge_aggr1InDtSz_per_p.rrd
-rw-r--r-- 1 root root 49K Sep 13 11:50
gauge_aggr1InOvH_pct_per_p.rrd
-rw-r--r-- 1 root root 49K Sep 13 11:50
gauge_aggr1Ipkt_per_s.rrd
-rw-r--r-- 1 root root 49K Sep 13 11:50
gauge_aggr1NoCP_per_s.rrd
-rw-r--r-- 1 root root 49K Sep 13 11:50
gauge_aggr1OErr_per_s.rrd
-rw-r--r-- 1 root root 49K Sep 13 11:50
gauge_aggr1Opkt_per_s.rrd
-rw-r--r-- 1 root root 49K Sep 13 11:50
gauge_aggr1OuDtSz_per_p.rrd
-rw-r--r-- 1 root root 49K Sep 13 11:50
gauge_aggr1OuOvH_pct_per_p.rrd
cd /var/opt/csw/orca/rrd/orcallator/o_beaker
rm gauge_1024_X_18_X_aggr1OuKB_per_s.rrd
gauge_1024_X_18_X_aggr1InKB_per_s.rrd gauge_1024_X_8_X_aggr1InKB_per_s.rrd
gauge_1024_X_8_X_aggr1OuKB_per_s.rrd
4. restarting master
/opt/csw/bin/orca -d /opt/csw/etc/orcallator.cfg
I attached an "after" plot file.
If I should have done something else please let me know.
More information about the bug-notifications
mailing list