Project

General

Profile

Actions

Bug #9072

closed

RRD graph mouseover information shows up as Mb when unit size is set to MB

Added by Luka Rojnica over 5 years ago. Updated over 3 years ago.

Status:
Resolved
Priority:
Very Low
Assignee:
Jared Dillard
Category:
Dashboard
Target version:
Start date:
10/26/2018
Due date:
% Done:

100%

Estimated time:
Plus Target Version:
Release Notes:
Affected Version:
2.4.4
Affected Architecture:

Description

The dashboard traffic graph widget shows mouse over information in Mb when the unit size is set to MB


Files

capture_001_26102018_173939.jpg (29 KB) capture_001_26102018_173939.jpg Luka Rojnica, 10/26/2018 10:40 AM
Actions #2

Updated by Joshua Sign about 5 years ago

i can confirm
the problem comes when you change from bytes to bits and then bits to bytes.

one temporary workaround :
change /usr/local/www/widgets/widgets/traffic_graphs.widget.php on line 280 :

    window.size = <?=json_encode($tg_size)?>;

by
    window.size = <?=json_encode($tg_size)?>*1;

This is because https://github.com/pfsense/pfsense/blob/master/src/usr/local/www/js/traffic-graphs.js#L203 strict check an integer.
And the values comning from post are strings.
Should be casted at first stage, but need more changes to be clean.

Actions #3

Updated by Jim Thompson about 5 years ago

  • Assignee set to Jared Dillard
Actions #4

Updated by Jared Dillard about 5 years ago

It looks like it was introduced in this commit (not that the code before it was perfect): https://github.com/pfsense/pfsense/commit/52229047e723241046a2641efc477a8b48b24dc8

I fixed it in this commit: https://github.com/pfsense/pfsense/commit/e5b43cf8b86586486d951ab1da35b6c45ad6edf6

You can test by toggling the Unit Size from Bits to Bytes and back again, or you can open the console and enter:

console.log(window.size);
and you will see it shows up in a blue color, versus the previous black color. You can also do the same for the following:
  • window.graph_backgroundupdate
  • window.interval
  • window.size
  • window.smoothing
Actions #5

Updated by Jared Dillard about 5 years ago

  • Status changed from New to Feedback
Actions #6

Updated by Jared Dillard about 5 years ago

  • % Done changed from 0 to 100
Actions #7

Updated by Joshua Sign about 5 years ago

It Works! ;)

tested on :
2.4.4-RELEASE-p2 (amd64)
built on Wed Dec 12 07:40:18 EST 2018
FreeBSD 11.2-RELEASE-p6

Actions #8

Updated by Jared Dillard about 5 years ago

  • Status changed from Feedback to Resolved
Actions #9

Updated by Jared Dillard about 5 years ago

Thanks for digging into the problem and for testing the fix!

Actions #10

Updated by Axel Taferner over 4 years ago

Jared Dillard wrote:

Thanks for digging into the problem and for testing the fix!

I'm running 2.4.4-RELEASE-p3 (amd64) and just noticed this same issue is still happening on my install. Do I need to do anything to fix it?

Actions #11

Updated by Jim Pingle over 3 years ago

  • Target version set to 2.5.0
Actions #12

Updated by Jared Dillard over 3 years ago

I can't reproduce, did you toggle the Unit Size from Bits to Bytes and back again (hitting Save each time) on the Traffic Graphs widget and the units not match up?

Actions

Also available in: Atom PDF