Mismatch in the minimum and maximum values displayed in the interface Tx/Rx traffic reports and interface traffic graph (in the Interface snapshot page).
The min/max values displayed in the graphs and reports are fetched from two different tables - SUM and RATE.
OpManager displays the exact minimum and maximum values (fetched from RATE table) for reports under Reports -> Health and Performance reports (Interfaces by Rx Traffic, Interfaces by Tx Traffic). Whereas, the values displayed in the graphs under Interface snapshot -> Graphs are fetched from the SUM table, which is nothing but an average of a set of values collected over that time frame.
For Example, let the monitoring interval be 15 minutes (default) and the data points for Rx traffic be as the value in the below table.
| Time | DELTA_TIME (ms) | INOCTETS | Rx Traffic = (INOCTETS*8*1000)/DELTA_TIME |
| 12:00:00 PM | 15 mins = 900 s = 900000 ms | 11250 | 100 bps |
| 12:15:00 PM | 900000 ms | 22500 | 200 bps |
| 12:30:00 PM | 900000 ms | 33750 | 300 bps |
| 12:45:00 PM | 900000 ms | 45000 | 400 bps |
Here, the
During archive, OpManager sums up all the DELTA_TIME and INOCTETS values and displays it in the SUM table. The SUM table reads the following information:
| Time | DELTA_TIME (ms) | INOCTETS | Rx Traffic = (INOCTETS*8*1000)/DELTA_TIME |
| 12:59:00 PM | 3,600,000 | 112500 | 250 bps |
Here, the
OpManager will only have one entry for an hour. So the minimum, maximum and average values will have the same value, i.e the average value. In a day, this table will have 24 entries and the Min/Max values out of those 24 entries will be displayed.
If you want to have the exact minimum and maximum values displayed across all reports and graph's legend (table values shown in the interface graph), do the following changes.