Skip to content
Snippets Groups Projects
Commit ce714724 authored by Pelle Koster's avatar Pelle Koster
Browse files

cleanup

parent 98e531f2
Branches
Tags
No related merge requests found
......@@ -138,7 +138,7 @@ ERROR_POINT_FIELDS_SCHEMA = {
}
def counters_to_point(
def _counters_to_point(
interface, router_fqdn, timestamp, measurement, counters_name, required=False
):
"""
......@@ -175,7 +175,7 @@ def brian_points(router_fqdn, interfaces, timestamp, measurement_name):
:return:
"""
point_creator = partial(
counters_to_point,
_counters_to_point,
router_fqdn=router_fqdn,
timestamp=timestamp,
measurement=measurement_name,
......@@ -197,7 +197,7 @@ def error_points(router_fqdn, interfaces, timestamp, measurement_name):
:return:
"""
point_creator = partial(
counters_to_point,
_counters_to_point,
router_fqdn=router_fqdn,
timestamp=timestamp,
measurement=measurement_name,
......
def physical_interface_counters(ifc_doc):
...
def logical_interface_counters(ifc_doc):
...
def brian_points(router_fqdn, netconf_doc, timestamp, measurement_name):
...
def error_points(router_fqdn, netconf_doc, timestamp, measurement_name):
...
def physical_interface_counters(ifc_doc): ...
def logical_interface_counters(ifc_doc): ...
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment