diff options
author | Richard Wall <richard@largo> | 2011-08-08 00:15:45 +0100 |
---|---|---|
committer | Richard Wall <richard@largo> | 2011-08-08 00:15:45 +0100 |
commit | 0cf0e24e5239f6e973419f3d7b82ee62f7db343d (patch) | |
tree | 7329be22da6d906e2d1736e3f535f7144f6528c9 /docs | |
parent | 8a80c676ce5c531755a4185d6367363f58431e8f (diff) |
fix network throughput units
Diffstat (limited to 'docs')
-rw-r--r-- | docs/examples/jarmon_example_recipes.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/jarmon_example_recipes.js b/docs/examples/jarmon_example_recipes.js index 98cd8a7..a2e822e 100644 --- a/docs/examples/jarmon_example_recipes.js +++ b/docs/examples/jarmon_example_recipes.js @@ -54,8 +54,8 @@ jarmon.CHART_RECIPES_COLLECTD = { 'interface': { title: 'Wlan0 Throughput', data: [ - ['data/interface/if_octets-wlan0.rrd', 'tx', 'Transmit', 'b/s'], - ['data/interface/if_octets-wlan0.rrd', 'rx', 'Receive', 'b/s'] + ['data/interface/if_octets-wlan0.rrd', 'tx', 'Transmit', 'B/s'], + ['data/interface/if_octets-wlan0.rrd', 'rx', 'Receive', 'B/s'] ], options: jQuery.extend(true, {}, jarmon.Chart.BASE_OPTIONS) } |