Skip to content
Snippets Groups Projects
Commit cc666821 authored by Robert Latta's avatar Robert Latta
Browse files

added calculated-speed to circuit info

parent d0dd3cc2
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,7 @@ import functools ...@@ -3,6 +3,7 @@ import functools
import json import json
import logging import logging
import os import os
import re
import subprocess import subprocess
import tempfile import tempfile
import threading import threading
...@@ -481,6 +482,36 @@ def update_circuit_hierarchy_and_port_id_services(self, use_current=False): ...@@ -481,6 +482,36 @@ def update_circuit_hierarchy_and_port_id_services(self, use_current=False):
port_id_services = defaultdict(list) port_id_services = defaultdict(list)
interface_services = defaultdict(list) interface_services = defaultdict(list)
def _convert_to_bits(value, unit):
unit = unit.lower()
conversions = {
'm': 1000000,
'mb': 1000000,
'g': 1000000000,
'gbe': 1000000000,
}
return int(value) * conversions[unit]
def _get_speed(circuit_id):
c = hierarchy[circuit_id]
pattern = re.compile(r'^(\d+)([a-zA-z]+)$')
m = pattern.match(c['speed'])
if m:
try:
return _convert_to_bits(m[1], m[2])
except KeyError as e:
logger.debug(f'Could not find key: {e} '
f'for circuit: {circuit_id}')
return 0
else:
if c['circuit-type'] == 'service' \
or c['product'].lower() == 'ethernet':
return sum(
(_get_speed(x) for x in c['carrier-circuits'])
)
else:
return 0
def _populate_hierarchy(): def _populate_hierarchy():
nonlocal hierarchy nonlocal hierarchy
hierarchy = {d['id']: d for d in ims_data.get_circuit_hierarchy(ds1)} hierarchy = {d['id']: d for d in ims_data.get_circuit_hierarchy(ds1)}
...@@ -591,7 +622,6 @@ def update_circuit_hierarchy_and_port_id_services(self, use_current=False): ...@@ -591,7 +622,6 @@ def update_circuit_hierarchy_and_port_id_services(self, use_current=False):
f"{details['interface_name']}" f"{details['interface_name']}"
circuits = port_id_services.get(details['port_id'], []) circuits = port_id_services.get(details['port_id'], [])
# add fibre-routes to circuits
for circ in circuits: for circ in circuits:
circ['fibre-routes'] = \ circ['fibre-routes'] = \
[{ [{
...@@ -601,6 +631,7 @@ def update_circuit_hierarchy_and_port_id_services(self, use_current=False): ...@@ -601,6 +631,7 @@ def update_circuit_hierarchy_and_port_id_services(self, use_current=False):
} for x in set(_get_fibre_routes(circ['id']))] } for x in set(_get_fibre_routes(circ['id']))]
circ['top-level-services'] = \ circ['top-level-services'] = \
get_top_level_services(circ['id']) get_top_level_services(circ['id'])
circ['calculated-speed'] = _get_speed(circ['id'])
_format_service(circ) _format_service(circ)
interface_services[k].extend(circuits) interface_services[k].extend(circuits)
...@@ -610,14 +641,16 @@ def update_circuit_hierarchy_and_port_id_services(self, use_current=False): ...@@ -610,14 +641,16 @@ def update_circuit_hierarchy_and_port_id_services(self, use_current=False):
else: else:
r = get_next_redis(InventoryTask.config) r = get_next_redis(InventoryTask.config)
rp = r.pipeline() rp = r.pipeline()
for k in r.scan_iter('ims:circuit_hierarchy:*', count=2000): for k in r.scan_iter('ims:circuit_hierarchy:*', count=1000):
rp.delete(k) rp.delete(k)
for k in r.scan_iter('ims:interface_services:*', count=2000): for k in r.scan_iter('ims:interface_services:*', count=1000):
rp.delete(k) rp.delete(k)
rp.execute() rp.execute()
rp = r.pipeline() rp = r.pipeline()
for circ in hierarchy.values(): for circ in hierarchy.values():
rp.set(f'ims:circuit_hierarchy:{circ["id"]}', json.dumps([circ])) rp.set(f'ims:circuit_hierarchy:{circ["id"]}', json.dumps([circ]))
rp.execute()
rp = r.pipeline()
for k, v in interface_services.items(): for k, v in interface_services.items():
rp.set( rp.set(
f'ims:interface_services:{k}', f'ims:interface_services:{k}',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment