I am pulling wireless signal strength for every wireless client using a custom poller that returns a table similar to this:
-35
-40
-60
-34
-50
etc, etc.
I then use a transform to take the average of the column: columnavg({poller}). It gives the right average, but it still returns a long table and puts the average in for each value. If I had 5 rows in the table from the poller, then I get 5 rows of the same number (the column average)from the transform:
-46
-46
-46
-46
-46
Is there a way I can only have one of the rows from the transform be displayed?