add --rrd-path option

dev
Nils Schneider 2015-08-22 23:54:03 +02:00
parent c2e21b4f5b
commit 3b8308722f
1 changed files with 3 additions and 3 deletions

View File

@ -152,9 +152,7 @@ def main(params):
# optional rrd graphs (trigger with --rrd) # optional rrd graphs (trigger with --rrd)
if params['rrd']: if params['rrd']:
script_directory = os.path.dirname(os.path.realpath(__file__)) rrd = RRD(params['rrd_path'], os.path.join(params['dest_dir'], 'nodes'))
rrd = RRD(os.path.join(script_directory, 'nodedb'),
os.path.join(params['dest_dir'], 'nodes'))
rrd.update_database(nodedb['nodes']) rrd.update_database(nodedb['nodes'])
rrd.update_images() rrd.update_images()
@ -177,6 +175,8 @@ if __name__ == '__main__':
help='Assume MAC addresses are part of vpn') help='Assume MAC addresses are part of vpn')
parser.add_argument('-p', '--prune', metavar='DAYS', type=int, parser.add_argument('-p', '--prune', metavar='DAYS', type=int,
help='forget nodes offline for at least DAYS') help='forget nodes offline for at least DAYS')
parser.add_argument('--rrd-path', default=os.path.join(os.path.dirname(os.path.realpath(__file__)), 'nodedb'),
help='path to RRD files')
parser.add_argument('--with-rrd', dest='rrd', action='store_true', parser.add_argument('--with-rrd', dest='rrd', action='store_true',
default=False, default=False,
help='enable the rendering of RRD graphs (cpu ' help='enable the rendering of RRD graphs (cpu '