Correct bandwidth usage calculation
[bwmon.git] / runaggregator.py
blobe29118a4517301f91eb092ccc56bdf5401714813
1 #!/usr/bin/python
2 # -*- coding: utf-8 -*-
4 from __future__ import absolute_import
6 import os
7 import sys
9 sys.path.insert(0, os.path.dirname(__file__) or '.')
11 if __name__ == '__main__':
12 from bwmon import aggregator
14 aggregator = aggregator.Aggregator(['python runmonitor.py'])
15 aggregator.run()