I'm trying to create a single graph that shows the aggregate of all of our internet feeds on one chart. I've set up a standard sensor factory sensor with the following definition:
#1:Traffic in [mb] ((Channel(2693,0) + Channel(2799,1))) #2:Traffic Out [mb] ((Channel(2693,1) + Channel(2799,1)))
However, the numbers produced by the summs do not match the numbers I get when I manually add the individual channels. The problem seems to be that the standard sensor works both in bytes (total traffic) and bits (traffic per second) but only reports bytes total to the factory sensor. This means that no matter what kind of arithmetic gymnastics I perform, on of the summed numbers (either total or bps) will be incorrect by a factor of 8.
Is there a way to add traffic sensors properly so both numbers are accurate?
Add comment